@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.2.19 | MIT License | https://tailwindcss.com
 */

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

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

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

/*
Forms
=====
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

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

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

fieldset {
  margin: 0;
  padding: 0;
}

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

/**
 * Tailwind custom reset styles
 */

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

html {
  font-family: 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::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

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

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

:-moz-focusring {
  outline: auto;
}

table {
  border-collapse: collapse;
}

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

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

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

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

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

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

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

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

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

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

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

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  border-color: currentColor;
}

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

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

@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: 1280px){
  .u-container{
    max-width: 1280px;
  }
}

.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-pointer-events-none{
  pointer-events: none !important;
}

.u-pointer-events-auto{
  pointer-events: auto !important;
}

.u-visible{
  visibility: visible !important;
}

.u-invisible{
  visibility: hidden !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-x-0{
  left: 0px !important;
  right: 0px !important;
}

.u-inset-x-1{
  left: 0.25rem !important;
  right: 0.25rem !important;
}

.u-inset-x-2{
  left: 0.5rem !important;
  right: 0.5rem !important;
}

.u-inset-x-3{
  left: 0.75rem !important;
  right: 0.75rem !important;
}

.u-inset-x-4{
  left: 1rem !important;
  right: 1rem !important;
}

.u-inset-x-5{
  left: 1.25rem !important;
  right: 1.25rem !important;
}

.u-inset-x-6{
  left: 1.5rem !important;
  right: 1.5rem !important;
}

.u-inset-x-7{
  left: 1.75rem !important;
  right: 1.75rem !important;
}

.u-inset-x-8{
  left: 2rem !important;
  right: 2rem !important;
}

.u-inset-x-9{
  left: 2.25rem !important;
  right: 2.25rem !important;
}

.u-inset-x-10{
  left: 2.5rem !important;
  right: 2.5rem !important;
}

.u-inset-x-11{
  left: 2.75rem !important;
  right: 2.75rem !important;
}

.u-inset-x-12{
  left: 3rem !important;
  right: 3rem !important;
}

.u-inset-x-14{
  left: 3.5rem !important;
  right: 3.5rem !important;
}

.u-inset-x-16{
  left: 4rem !important;
  right: 4rem !important;
}

.u-inset-x-20{
  left: 5rem !important;
  right: 5rem !important;
}

.u-inset-x-24{
  left: 6rem !important;
  right: 6rem !important;
}

.u-inset-x-28{
  left: 7rem !important;
  right: 7rem !important;
}

.u-inset-x-32{
  left: 8rem !important;
  right: 8rem !important;
}

.u-inset-x-36{
  left: 9rem !important;
  right: 9rem !important;
}

.u-inset-x-40{
  left: 10rem !important;
  right: 10rem !important;
}

.u-inset-x-44{
  left: 11rem !important;
  right: 11rem !important;
}

.u-inset-x-48{
  left: 12rem !important;
  right: 12rem !important;
}

.u-inset-x-52{
  left: 13rem !important;
  right: 13rem !important;
}

.u-inset-x-56{
  left: 14rem !important;
  right: 14rem !important;
}

.u-inset-x-60{
  left: 15rem !important;
  right: 15rem !important;
}

.u-inset-x-64{
  left: 16rem !important;
  right: 16rem !important;
}

.u-inset-x-72{
  left: 18rem !important;
  right: 18rem !important;
}

.u-inset-x-80{
  left: 20rem !important;
  right: 20rem !important;
}

.u-inset-x-96{
  left: 24rem !important;
  right: 24rem !important;
}

.u-inset-x-auto{
  left: auto !important;
  right: auto !important;
}

.u-inset-x-px{
  left: 1px !important;
  right: 1px !important;
}

.u-inset-x-0\.5{
  left: 0.125rem !important;
  right: 0.125rem !important;
}

.u-inset-x-1\.5{
  left: 0.375rem !important;
  right: 0.375rem !important;
}

.u-inset-x-2\.5{
  left: 0.625rem !important;
  right: 0.625rem !important;
}

.u-inset-x-3\.5{
  left: 0.875rem !important;
  right: 0.875rem !important;
}

.u--inset-x-0{
  left: 0px !important;
  right: 0px !important;
}

.u--inset-x-1{
  left: -0.25rem !important;
  right: -0.25rem !important;
}

.u--inset-x-2{
  left: -0.5rem !important;
  right: -0.5rem !important;
}

.u--inset-x-3{
  left: -0.75rem !important;
  right: -0.75rem !important;
}

.u--inset-x-4{
  left: -1rem !important;
  right: -1rem !important;
}

.u--inset-x-5{
  left: -1.25rem !important;
  right: -1.25rem !important;
}

.u--inset-x-6{
  left: -1.5rem !important;
  right: -1.5rem !important;
}

.u--inset-x-7{
  left: -1.75rem !important;
  right: -1.75rem !important;
}

.u--inset-x-8{
  left: -2rem !important;
  right: -2rem !important;
}

.u--inset-x-9{
  left: -2.25rem !important;
  right: -2.25rem !important;
}

.u--inset-x-10{
  left: -2.5rem !important;
  right: -2.5rem !important;
}

.u--inset-x-11{
  left: -2.75rem !important;
  right: -2.75rem !important;
}

.u--inset-x-12{
  left: -3rem !important;
  right: -3rem !important;
}

.u--inset-x-14{
  left: -3.5rem !important;
  right: -3.5rem !important;
}

.u--inset-x-16{
  left: -4rem !important;
  right: -4rem !important;
}

.u--inset-x-20{
  left: -5rem !important;
  right: -5rem !important;
}

.u--inset-x-24{
  left: -6rem !important;
  right: -6rem !important;
}

.u--inset-x-28{
  left: -7rem !important;
  right: -7rem !important;
}

.u--inset-x-32{
  left: -8rem !important;
  right: -8rem !important;
}

.u--inset-x-36{
  left: -9rem !important;
  right: -9rem !important;
}

.u--inset-x-40{
  left: -10rem !important;
  right: -10rem !important;
}

.u--inset-x-44{
  left: -11rem !important;
  right: -11rem !important;
}

.u--inset-x-48{
  left: -12rem !important;
  right: -12rem !important;
}

.u--inset-x-52{
  left: -13rem !important;
  right: -13rem !important;
}

.u--inset-x-56{
  left: -14rem !important;
  right: -14rem !important;
}

.u--inset-x-60{
  left: -15rem !important;
  right: -15rem !important;
}

.u--inset-x-64{
  left: -16rem !important;
  right: -16rem !important;
}

.u--inset-x-72{
  left: -18rem !important;
  right: -18rem !important;
}

.u--inset-x-80{
  left: -20rem !important;
  right: -20rem !important;
}

.u--inset-x-96{
  left: -24rem !important;
  right: -24rem !important;
}

.u--inset-x-px{
  left: -1px !important;
  right: -1px !important;
}

.u--inset-x-0\.5{
  left: -0.125rem !important;
  right: -0.125rem !important;
}

.u--inset-x-1\.5{
  left: -0.375rem !important;
  right: -0.375rem !important;
}

.u--inset-x-2\.5{
  left: -0.625rem !important;
  right: -0.625rem !important;
}

.u--inset-x-3\.5{
  left: -0.875rem !important;
  right: -0.875rem !important;
}

.u-inset-x-1\/2{
  left: 50% !important;
  right: 50% !important;
}

.u-inset-x-1\/3{
  left: 33.333333% !important;
  right: 33.333333% !important;
}

.u-inset-x-2\/3{
  left: 66.666667% !important;
  right: 66.666667% !important;
}

.u-inset-x-1\/4{
  left: 25% !important;
  right: 25% !important;
}

.u-inset-x-2\/4{
  left: 50% !important;
  right: 50% !important;
}

.u-inset-x-3\/4{
  left: 75% !important;
  right: 75% !important;
}

.u-inset-x-full{
  left: 100% !important;
  right: 100% !important;
}

.u--inset-x-1\/2{
  left: -50% !important;
  right: -50% !important;
}

.u--inset-x-1\/3{
  left: -33.333333% !important;
  right: -33.333333% !important;
}

.u--inset-x-2\/3{
  left: -66.666667% !important;
  right: -66.666667% !important;
}

.u--inset-x-1\/4{
  left: -25% !important;
  right: -25% !important;
}

.u--inset-x-2\/4{
  left: -50% !important;
  right: -50% !important;
}

.u--inset-x-3\/4{
  left: -75% !important;
  right: -75% !important;
}

.u--inset-x-full{
  left: -100% !important;
  right: -100% !important;
}

.u-inset-y-0{
  top: 0px !important;
  bottom: 0px !important;
}

.u-inset-y-1{
  top: 0.25rem !important;
  bottom: 0.25rem !important;
}

.u-inset-y-2{
  top: 0.5rem !important;
  bottom: 0.5rem !important;
}

.u-inset-y-3{
  top: 0.75rem !important;
  bottom: 0.75rem !important;
}

.u-inset-y-4{
  top: 1rem !important;
  bottom: 1rem !important;
}

.u-inset-y-5{
  top: 1.25rem !important;
  bottom: 1.25rem !important;
}

.u-inset-y-6{
  top: 1.5rem !important;
  bottom: 1.5rem !important;
}

.u-inset-y-7{
  top: 1.75rem !important;
  bottom: 1.75rem !important;
}

.u-inset-y-8{
  top: 2rem !important;
  bottom: 2rem !important;
}

.u-inset-y-9{
  top: 2.25rem !important;
  bottom: 2.25rem !important;
}

.u-inset-y-10{
  top: 2.5rem !important;
  bottom: 2.5rem !important;
}

.u-inset-y-11{
  top: 2.75rem !important;
  bottom: 2.75rem !important;
}

.u-inset-y-12{
  top: 3rem !important;
  bottom: 3rem !important;
}

.u-inset-y-14{
  top: 3.5rem !important;
  bottom: 3.5rem !important;
}

.u-inset-y-16{
  top: 4rem !important;
  bottom: 4rem !important;
}

.u-inset-y-20{
  top: 5rem !important;
  bottom: 5rem !important;
}

.u-inset-y-24{
  top: 6rem !important;
  bottom: 6rem !important;
}

.u-inset-y-28{
  top: 7rem !important;
  bottom: 7rem !important;
}

.u-inset-y-32{
  top: 8rem !important;
  bottom: 8rem !important;
}

.u-inset-y-36{
  top: 9rem !important;
  bottom: 9rem !important;
}

.u-inset-y-40{
  top: 10rem !important;
  bottom: 10rem !important;
}

.u-inset-y-44{
  top: 11rem !important;
  bottom: 11rem !important;
}

.u-inset-y-48{
  top: 12rem !important;
  bottom: 12rem !important;
}

.u-inset-y-52{
  top: 13rem !important;
  bottom: 13rem !important;
}

.u-inset-y-56{
  top: 14rem !important;
  bottom: 14rem !important;
}

.u-inset-y-60{
  top: 15rem !important;
  bottom: 15rem !important;
}

.u-inset-y-64{
  top: 16rem !important;
  bottom: 16rem !important;
}

.u-inset-y-72{
  top: 18rem !important;
  bottom: 18rem !important;
}

.u-inset-y-80{
  top: 20rem !important;
  bottom: 20rem !important;
}

.u-inset-y-96{
  top: 24rem !important;
  bottom: 24rem !important;
}

.u-inset-y-auto{
  top: auto !important;
  bottom: auto !important;
}

.u-inset-y-px{
  top: 1px !important;
  bottom: 1px !important;
}

.u-inset-y-0\.5{
  top: 0.125rem !important;
  bottom: 0.125rem !important;
}

.u-inset-y-1\.5{
  top: 0.375rem !important;
  bottom: 0.375rem !important;
}

.u-inset-y-2\.5{
  top: 0.625rem !important;
  bottom: 0.625rem !important;
}

.u-inset-y-3\.5{
  top: 0.875rem !important;
  bottom: 0.875rem !important;
}

.u--inset-y-0{
  top: 0px !important;
  bottom: 0px !important;
}

.u--inset-y-1{
  top: -0.25rem !important;
  bottom: -0.25rem !important;
}

.u--inset-y-2{
  top: -0.5rem !important;
  bottom: -0.5rem !important;
}

.u--inset-y-3{
  top: -0.75rem !important;
  bottom: -0.75rem !important;
}

.u--inset-y-4{
  top: -1rem !important;
  bottom: -1rem !important;
}

.u--inset-y-5{
  top: -1.25rem !important;
  bottom: -1.25rem !important;
}

.u--inset-y-6{
  top: -1.5rem !important;
  bottom: -1.5rem !important;
}

.u--inset-y-7{
  top: -1.75rem !important;
  bottom: -1.75rem !important;
}

.u--inset-y-8{
  top: -2rem !important;
  bottom: -2rem !important;
}

.u--inset-y-9{
  top: -2.25rem !important;
  bottom: -2.25rem !important;
}

.u--inset-y-10{
  top: -2.5rem !important;
  bottom: -2.5rem !important;
}

.u--inset-y-11{
  top: -2.75rem !important;
  bottom: -2.75rem !important;
}

.u--inset-y-12{
  top: -3rem !important;
  bottom: -3rem !important;
}

.u--inset-y-14{
  top: -3.5rem !important;
  bottom: -3.5rem !important;
}

.u--inset-y-16{
  top: -4rem !important;
  bottom: -4rem !important;
}

.u--inset-y-20{
  top: -5rem !important;
  bottom: -5rem !important;
}

.u--inset-y-24{
  top: -6rem !important;
  bottom: -6rem !important;
}

.u--inset-y-28{
  top: -7rem !important;
  bottom: -7rem !important;
}

.u--inset-y-32{
  top: -8rem !important;
  bottom: -8rem !important;
}

.u--inset-y-36{
  top: -9rem !important;
  bottom: -9rem !important;
}

.u--inset-y-40{
  top: -10rem !important;
  bottom: -10rem !important;
}

.u--inset-y-44{
  top: -11rem !important;
  bottom: -11rem !important;
}

.u--inset-y-48{
  top: -12rem !important;
  bottom: -12rem !important;
}

.u--inset-y-52{
  top: -13rem !important;
  bottom: -13rem !important;
}

.u--inset-y-56{
  top: -14rem !important;
  bottom: -14rem !important;
}

.u--inset-y-60{
  top: -15rem !important;
  bottom: -15rem !important;
}

.u--inset-y-64{
  top: -16rem !important;
  bottom: -16rem !important;
}

.u--inset-y-72{
  top: -18rem !important;
  bottom: -18rem !important;
}

.u--inset-y-80{
  top: -20rem !important;
  bottom: -20rem !important;
}

.u--inset-y-96{
  top: -24rem !important;
  bottom: -24rem !important;
}

.u--inset-y-px{
  top: -1px !important;
  bottom: -1px !important;
}

.u--inset-y-0\.5{
  top: -0.125rem !important;
  bottom: -0.125rem !important;
}

.u--inset-y-1\.5{
  top: -0.375rem !important;
  bottom: -0.375rem !important;
}

.u--inset-y-2\.5{
  top: -0.625rem !important;
  bottom: -0.625rem !important;
}

.u--inset-y-3\.5{
  top: -0.875rem !important;
  bottom: -0.875rem !important;
}

.u-inset-y-1\/2{
  top: 50% !important;
  bottom: 50% !important;
}

.u-inset-y-1\/3{
  top: 33.333333% !important;
  bottom: 33.333333% !important;
}

.u-inset-y-2\/3{
  top: 66.666667% !important;
  bottom: 66.666667% !important;
}

.u-inset-y-1\/4{
  top: 25% !important;
  bottom: 25% !important;
}

.u-inset-y-2\/4{
  top: 50% !important;
  bottom: 50% !important;
}

.u-inset-y-3\/4{
  top: 75% !important;
  bottom: 75% !important;
}

.u-inset-y-full{
  top: 100% !important;
  bottom: 100% !important;
}

.u--inset-y-1\/2{
  top: -50% !important;
  bottom: -50% !important;
}

.u--inset-y-1\/3{
  top: -33.333333% !important;
  bottom: -33.333333% !important;
}

.u--inset-y-2\/3{
  top: -66.666667% !important;
  bottom: -66.666667% !important;
}

.u--inset-y-1\/4{
  top: -25% !important;
  bottom: -25% !important;
}

.u--inset-y-2\/4{
  top: -50% !important;
  bottom: -50% !important;
}

.u--inset-y-3\/4{
  top: -75% !important;
  bottom: -75% !important;
}

.u--inset-y-full{
  top: -100% !important;
  bottom: -100% !important;
}

.u-top-0{
  top: 0px !important;
}

.u-top-1{
  top: 0.25rem !important;
}

.u-top-2{
  top: 0.5rem !important;
}

.u-top-3{
  top: 0.75rem !important;
}

.u-top-4{
  top: 1rem !important;
}

.u-top-5{
  top: 1.25rem !important;
}

.u-top-6{
  top: 1.5rem !important;
}

.u-top-7{
  top: 1.75rem !important;
}

.u-top-8{
  top: 2rem !important;
}

.u-top-9{
  top: 2.25rem !important;
}

.u-top-10{
  top: 2.5rem !important;
}

.u-top-11{
  top: 2.75rem !important;
}

.u-top-12{
  top: 3rem !important;
}

.u-top-14{
  top: 3.5rem !important;
}

.u-top-16{
  top: 4rem !important;
}

.u-top-20{
  top: 5rem !important;
}

.u-top-24{
  top: 6rem !important;
}

.u-top-28{
  top: 7rem !important;
}

.u-top-32{
  top: 8rem !important;
}

.u-top-36{
  top: 9rem !important;
}

.u-top-40{
  top: 10rem !important;
}

.u-top-44{
  top: 11rem !important;
}

.u-top-48{
  top: 12rem !important;
}

.u-top-52{
  top: 13rem !important;
}

.u-top-56{
  top: 14rem !important;
}

.u-top-60{
  top: 15rem !important;
}

.u-top-64{
  top: 16rem !important;
}

.u-top-72{
  top: 18rem !important;
}

.u-top-80{
  top: 20rem !important;
}

.u-top-96{
  top: 24rem !important;
}

.u-top-auto{
  top: auto !important;
}

.u-top-px{
  top: 1px !important;
}

.u-top-0\.5{
  top: 0.125rem !important;
}

.u-top-1\.5{
  top: 0.375rem !important;
}

.u-top-2\.5{
  top: 0.625rem !important;
}

.u-top-3\.5{
  top: 0.875rem !important;
}

.u--top-0{
  top: 0px !important;
}

.u--top-1{
  top: -0.25rem !important;
}

.u--top-2{
  top: -0.5rem !important;
}

.u--top-3{
  top: -0.75rem !important;
}

.u--top-4{
  top: -1rem !important;
}

.u--top-5{
  top: -1.25rem !important;
}

.u--top-6{
  top: -1.5rem !important;
}

.u--top-7{
  top: -1.75rem !important;
}

.u--top-8{
  top: -2rem !important;
}

.u--top-9{
  top: -2.25rem !important;
}

.u--top-10{
  top: -2.5rem !important;
}

.u--top-11{
  top: -2.75rem !important;
}

.u--top-12{
  top: -3rem !important;
}

.u--top-14{
  top: -3.5rem !important;
}

.u--top-16{
  top: -4rem !important;
}

.u--top-20{
  top: -5rem !important;
}

.u--top-24{
  top: -6rem !important;
}

.u--top-28{
  top: -7rem !important;
}

.u--top-32{
  top: -8rem !important;
}

.u--top-36{
  top: -9rem !important;
}

.u--top-40{
  top: -10rem !important;
}

.u--top-44{
  top: -11rem !important;
}

.u--top-48{
  top: -12rem !important;
}

.u--top-52{
  top: -13rem !important;
}

.u--top-56{
  top: -14rem !important;
}

.u--top-60{
  top: -15rem !important;
}

.u--top-64{
  top: -16rem !important;
}

.u--top-72{
  top: -18rem !important;
}

.u--top-80{
  top: -20rem !important;
}

.u--top-96{
  top: -24rem !important;
}

.u--top-px{
  top: -1px !important;
}

.u--top-0\.5{
  top: -0.125rem !important;
}

.u--top-1\.5{
  top: -0.375rem !important;
}

.u--top-2\.5{
  top: -0.625rem !important;
}

.u--top-3\.5{
  top: -0.875rem !important;
}

.u-top-1\/2{
  top: 50% !important;
}

.u-top-1\/3{
  top: 33.333333% !important;
}

.u-top-2\/3{
  top: 66.666667% !important;
}

.u-top-1\/4{
  top: 25% !important;
}

.u-top-2\/4{
  top: 50% !important;
}

.u-top-3\/4{
  top: 75% !important;
}

.u-top-full{
  top: 100% !important;
}

.u--top-1\/2{
  top: -50% !important;
}

.u--top-1\/3{
  top: -33.333333% !important;
}

.u--top-2\/3{
  top: -66.666667% !important;
}

.u--top-1\/4{
  top: -25% !important;
}

.u--top-2\/4{
  top: -50% !important;
}

.u--top-3\/4{
  top: -75% !important;
}

.u--top-full{
  top: -100% !important;
}

.u-right-0{
  right: 0px !important;
}

.u-right-1{
  right: 0.25rem !important;
}

.u-right-2{
  right: 0.5rem !important;
}

.u-right-3{
  right: 0.75rem !important;
}

.u-right-4{
  right: 1rem !important;
}

.u-right-5{
  right: 1.25rem !important;
}

.u-right-6{
  right: 1.5rem !important;
}

.u-right-7{
  right: 1.75rem !important;
}

.u-right-8{
  right: 2rem !important;
}

.u-right-9{
  right: 2.25rem !important;
}

.u-right-10{
  right: 2.5rem !important;
}

.u-right-11{
  right: 2.75rem !important;
}

.u-right-12{
  right: 3rem !important;
}

.u-right-14{
  right: 3.5rem !important;
}

.u-right-16{
  right: 4rem !important;
}

.u-right-20{
  right: 5rem !important;
}

.u-right-24{
  right: 6rem !important;
}

.u-right-28{
  right: 7rem !important;
}

.u-right-32{
  right: 8rem !important;
}

.u-right-36{
  right: 9rem !important;
}

.u-right-40{
  right: 10rem !important;
}

.u-right-44{
  right: 11rem !important;
}

.u-right-48{
  right: 12rem !important;
}

.u-right-52{
  right: 13rem !important;
}

.u-right-56{
  right: 14rem !important;
}

.u-right-60{
  right: 15rem !important;
}

.u-right-64{
  right: 16rem !important;
}

.u-right-72{
  right: 18rem !important;
}

.u-right-80{
  right: 20rem !important;
}

.u-right-96{
  right: 24rem !important;
}

.u-right-auto{
  right: auto !important;
}

.u-right-px{
  right: 1px !important;
}

.u-right-0\.5{
  right: 0.125rem !important;
}

.u-right-1\.5{
  right: 0.375rem !important;
}

.u-right-2\.5{
  right: 0.625rem !important;
}

.u-right-3\.5{
  right: 0.875rem !important;
}

.u--right-0{
  right: 0px !important;
}

.u--right-1{
  right: -0.25rem !important;
}

.u--right-2{
  right: -0.5rem !important;
}

.u--right-3{
  right: -0.75rem !important;
}

.u--right-4{
  right: -1rem !important;
}

.u--right-5{
  right: -1.25rem !important;
}

.u--right-6{
  right: -1.5rem !important;
}

.u--right-7{
  right: -1.75rem !important;
}

.u--right-8{
  right: -2rem !important;
}

.u--right-9{
  right: -2.25rem !important;
}

.u--right-10{
  right: -2.5rem !important;
}

.u--right-11{
  right: -2.75rem !important;
}

.u--right-12{
  right: -3rem !important;
}

.u--right-14{
  right: -3.5rem !important;
}

.u--right-16{
  right: -4rem !important;
}

.u--right-20{
  right: -5rem !important;
}

.u--right-24{
  right: -6rem !important;
}

.u--right-28{
  right: -7rem !important;
}

.u--right-32{
  right: -8rem !important;
}

.u--right-36{
  right: -9rem !important;
}

.u--right-40{
  right: -10rem !important;
}

.u--right-44{
  right: -11rem !important;
}

.u--right-48{
  right: -12rem !important;
}

.u--right-52{
  right: -13rem !important;
}

.u--right-56{
  right: -14rem !important;
}

.u--right-60{
  right: -15rem !important;
}

.u--right-64{
  right: -16rem !important;
}

.u--right-72{
  right: -18rem !important;
}

.u--right-80{
  right: -20rem !important;
}

.u--right-96{
  right: -24rem !important;
}

.u--right-px{
  right: -1px !important;
}

.u--right-0\.5{
  right: -0.125rem !important;
}

.u--right-1\.5{
  right: -0.375rem !important;
}

.u--right-2\.5{
  right: -0.625rem !important;
}

.u--right-3\.5{
  right: -0.875rem !important;
}

.u-right-1\/2{
  right: 50% !important;
}

.u-right-1\/3{
  right: 33.333333% !important;
}

.u-right-2\/3{
  right: 66.666667% !important;
}

.u-right-1\/4{
  right: 25% !important;
}

.u-right-2\/4{
  right: 50% !important;
}

.u-right-3\/4{
  right: 75% !important;
}

.u-right-full{
  right: 100% !important;
}

.u--right-1\/2{
  right: -50% !important;
}

.u--right-1\/3{
  right: -33.333333% !important;
}

.u--right-2\/3{
  right: -66.666667% !important;
}

.u--right-1\/4{
  right: -25% !important;
}

.u--right-2\/4{
  right: -50% !important;
}

.u--right-3\/4{
  right: -75% !important;
}

.u--right-full{
  right: -100% !important;
}

.u-bottom-0{
  bottom: 0px !important;
}

.u-bottom-1{
  bottom: 0.25rem !important;
}

.u-bottom-2{
  bottom: 0.5rem !important;
}

.u-bottom-3{
  bottom: 0.75rem !important;
}

.u-bottom-4{
  bottom: 1rem !important;
}

.u-bottom-5{
  bottom: 1.25rem !important;
}

.u-bottom-6{
  bottom: 1.5rem !important;
}

.u-bottom-7{
  bottom: 1.75rem !important;
}

.u-bottom-8{
  bottom: 2rem !important;
}

.u-bottom-9{
  bottom: 2.25rem !important;
}

.u-bottom-10{
  bottom: 2.5rem !important;
}

.u-bottom-11{
  bottom: 2.75rem !important;
}

.u-bottom-12{
  bottom: 3rem !important;
}

.u-bottom-14{
  bottom: 3.5rem !important;
}

.u-bottom-16{
  bottom: 4rem !important;
}

.u-bottom-20{
  bottom: 5rem !important;
}

.u-bottom-24{
  bottom: 6rem !important;
}

.u-bottom-28{
  bottom: 7rem !important;
}

.u-bottom-32{
  bottom: 8rem !important;
}

.u-bottom-36{
  bottom: 9rem !important;
}

.u-bottom-40{
  bottom: 10rem !important;
}

.u-bottom-44{
  bottom: 11rem !important;
}

.u-bottom-48{
  bottom: 12rem !important;
}

.u-bottom-52{
  bottom: 13rem !important;
}

.u-bottom-56{
  bottom: 14rem !important;
}

.u-bottom-60{
  bottom: 15rem !important;
}

.u-bottom-64{
  bottom: 16rem !important;
}

.u-bottom-72{
  bottom: 18rem !important;
}

.u-bottom-80{
  bottom: 20rem !important;
}

.u-bottom-96{
  bottom: 24rem !important;
}

.u-bottom-auto{
  bottom: auto !important;
}

.u-bottom-px{
  bottom: 1px !important;
}

.u-bottom-0\.5{
  bottom: 0.125rem !important;
}

.u-bottom-1\.5{
  bottom: 0.375rem !important;
}

.u-bottom-2\.5{
  bottom: 0.625rem !important;
}

.u-bottom-3\.5{
  bottom: 0.875rem !important;
}

.u--bottom-0{
  bottom: 0px !important;
}

.u--bottom-1{
  bottom: -0.25rem !important;
}

.u--bottom-2{
  bottom: -0.5rem !important;
}

.u--bottom-3{
  bottom: -0.75rem !important;
}

.u--bottom-4{
  bottom: -1rem !important;
}

.u--bottom-5{
  bottom: -1.25rem !important;
}

.u--bottom-6{
  bottom: -1.5rem !important;
}

.u--bottom-7{
  bottom: -1.75rem !important;
}

.u--bottom-8{
  bottom: -2rem !important;
}

.u--bottom-9{
  bottom: -2.25rem !important;
}

.u--bottom-10{
  bottom: -2.5rem !important;
}

.u--bottom-11{
  bottom: -2.75rem !important;
}

.u--bottom-12{
  bottom: -3rem !important;
}

.u--bottom-14{
  bottom: -3.5rem !important;
}

.u--bottom-16{
  bottom: -4rem !important;
}

.u--bottom-20{
  bottom: -5rem !important;
}

.u--bottom-24{
  bottom: -6rem !important;
}

.u--bottom-28{
  bottom: -7rem !important;
}

.u--bottom-32{
  bottom: -8rem !important;
}

.u--bottom-36{
  bottom: -9rem !important;
}

.u--bottom-40{
  bottom: -10rem !important;
}

.u--bottom-44{
  bottom: -11rem !important;
}

.u--bottom-48{
  bottom: -12rem !important;
}

.u--bottom-52{
  bottom: -13rem !important;
}

.u--bottom-56{
  bottom: -14rem !important;
}

.u--bottom-60{
  bottom: -15rem !important;
}

.u--bottom-64{
  bottom: -16rem !important;
}

.u--bottom-72{
  bottom: -18rem !important;
}

.u--bottom-80{
  bottom: -20rem !important;
}

.u--bottom-96{
  bottom: -24rem !important;
}

.u--bottom-px{
  bottom: -1px !important;
}

.u--bottom-0\.5{
  bottom: -0.125rem !important;
}

.u--bottom-1\.5{
  bottom: -0.375rem !important;
}

.u--bottom-2\.5{
  bottom: -0.625rem !important;
}

.u--bottom-3\.5{
  bottom: -0.875rem !important;
}

.u-bottom-1\/2{
  bottom: 50% !important;
}

.u-bottom-1\/3{
  bottom: 33.333333% !important;
}

.u-bottom-2\/3{
  bottom: 66.666667% !important;
}

.u-bottom-1\/4{
  bottom: 25% !important;
}

.u-bottom-2\/4{
  bottom: 50% !important;
}

.u-bottom-3\/4{
  bottom: 75% !important;
}

.u-bottom-full{
  bottom: 100% !important;
}

.u--bottom-1\/2{
  bottom: -50% !important;
}

.u--bottom-1\/3{
  bottom: -33.333333% !important;
}

.u--bottom-2\/3{
  bottom: -66.666667% !important;
}

.u--bottom-1\/4{
  bottom: -25% !important;
}

.u--bottom-2\/4{
  bottom: -50% !important;
}

.u--bottom-3\/4{
  bottom: -75% !important;
}

.u--bottom-full{
  bottom: -100% !important;
}

.u-left-0{
  left: 0px !important;
}

.u-left-1{
  left: 0.25rem !important;
}

.u-left-2{
  left: 0.5rem !important;
}

.u-left-3{
  left: 0.75rem !important;
}

.u-left-4{
  left: 1rem !important;
}

.u-left-5{
  left: 1.25rem !important;
}

.u-left-6{
  left: 1.5rem !important;
}

.u-left-7{
  left: 1.75rem !important;
}

.u-left-8{
  left: 2rem !important;
}

.u-left-9{
  left: 2.25rem !important;
}

.u-left-10{
  left: 2.5rem !important;
}

.u-left-11{
  left: 2.75rem !important;
}

.u-left-12{
  left: 3rem !important;
}

.u-left-14{
  left: 3.5rem !important;
}

.u-left-16{
  left: 4rem !important;
}

.u-left-20{
  left: 5rem !important;
}

.u-left-24{
  left: 6rem !important;
}

.u-left-28{
  left: 7rem !important;
}

.u-left-32{
  left: 8rem !important;
}

.u-left-36{
  left: 9rem !important;
}

.u-left-40{
  left: 10rem !important;
}

.u-left-44{
  left: 11rem !important;
}

.u-left-48{
  left: 12rem !important;
}

.u-left-52{
  left: 13rem !important;
}

.u-left-56{
  left: 14rem !important;
}

.u-left-60{
  left: 15rem !important;
}

.u-left-64{
  left: 16rem !important;
}

.u-left-72{
  left: 18rem !important;
}

.u-left-80{
  left: 20rem !important;
}

.u-left-96{
  left: 24rem !important;
}

.u-left-auto{
  left: auto !important;
}

.u-left-px{
  left: 1px !important;
}

.u-left-0\.5{
  left: 0.125rem !important;
}

.u-left-1\.5{
  left: 0.375rem !important;
}

.u-left-2\.5{
  left: 0.625rem !important;
}

.u-left-3\.5{
  left: 0.875rem !important;
}

.u--left-0{
  left: 0px !important;
}

.u--left-1{
  left: -0.25rem !important;
}

.u--left-2{
  left: -0.5rem !important;
}

.u--left-3{
  left: -0.75rem !important;
}

.u--left-4{
  left: -1rem !important;
}

.u--left-5{
  left: -1.25rem !important;
}

.u--left-6{
  left: -1.5rem !important;
}

.u--left-7{
  left: -1.75rem !important;
}

.u--left-8{
  left: -2rem !important;
}

.u--left-9{
  left: -2.25rem !important;
}

.u--left-10{
  left: -2.5rem !important;
}

.u--left-11{
  left: -2.75rem !important;
}

.u--left-12{
  left: -3rem !important;
}

.u--left-14{
  left: -3.5rem !important;
}

.u--left-16{
  left: -4rem !important;
}

.u--left-20{
  left: -5rem !important;
}

.u--left-24{
  left: -6rem !important;
}

.u--left-28{
  left: -7rem !important;
}

.u--left-32{
  left: -8rem !important;
}

.u--left-36{
  left: -9rem !important;
}

.u--left-40{
  left: -10rem !important;
}

.u--left-44{
  left: -11rem !important;
}

.u--left-48{
  left: -12rem !important;
}

.u--left-52{
  left: -13rem !important;
}

.u--left-56{
  left: -14rem !important;
}

.u--left-60{
  left: -15rem !important;
}

.u--left-64{
  left: -16rem !important;
}

.u--left-72{
  left: -18rem !important;
}

.u--left-80{
  left: -20rem !important;
}

.u--left-96{
  left: -24rem !important;
}

.u--left-px{
  left: -1px !important;
}

.u--left-0\.5{
  left: -0.125rem !important;
}

.u--left-1\.5{
  left: -0.375rem !important;
}

.u--left-2\.5{
  left: -0.625rem !important;
}

.u--left-3\.5{
  left: -0.875rem !important;
}

.u-left-1\/2{
  left: 50% !important;
}

.u-left-1\/3{
  left: 33.333333% !important;
}

.u-left-2\/3{
  left: 66.666667% !important;
}

.u-left-1\/4{
  left: 25% !important;
}

.u-left-2\/4{
  left: 50% !important;
}

.u-left-3\/4{
  left: 75% !important;
}

.u-left-full{
  left: 100% !important;
}

.u--left-1\/2{
  left: -50% !important;
}

.u--left-1\/3{
  left: -33.333333% !important;
}

.u--left-2\/3{
  left: -66.666667% !important;
}

.u--left-1\/4{
  left: -25% !important;
}

.u--left-2\/4{
  left: -50% !important;
}

.u--left-3\/4{
  left: -75% !important;
}

.u--left-full{
  left: -100% !important;
}

.u-isolate{
  isolation: isolate !important;
}

.u-isolation-auto{
  isolation: auto !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-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-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-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-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-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-mx-0{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u-mx-1{
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.u-mx-2{
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.u-mx-3{
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.u-mx-4{
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.u-mx-5{
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.u-mx-6{
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.u-mx-7{
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.u-mx-8{
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.u-mx-9{
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.u-mx-10{
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.u-mx-11{
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}

.u-mx-12{
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.u-mx-14{
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.u-mx-16{
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.u-mx-20{
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.u-mx-24{
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.u-mx-28{
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.u-mx-32{
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.u-mx-36{
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.u-mx-40{
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.u-mx-44{
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.u-mx-48{
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.u-mx-52{
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.u-mx-56{
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}

.u-mx-60{
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.u-mx-64{
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}

.u-mx-72{
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.u-mx-80{
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.u-mx-96{
  margin-left: 24rem !important;
  margin-right: 24rem !important;
}

.u-mx-auto{
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mx-px{
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.u-mx-0\.5{
  margin-left: 0.125rem !important;
  margin-right: 0.125rem !important;
}

.u-mx-1\.5{
  margin-left: 0.375rem !important;
  margin-right: 0.375rem !important;
}

.u-mx-2\.5{
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.u-mx-3\.5{
  margin-left: 0.875rem !important;
  margin-right: 0.875rem !important;
}

.u--mx-0{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u--mx-1{
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.u--mx-2{
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.u--mx-3{
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.u--mx-4{
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.u--mx-5{
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}

.u--mx-6{
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.u--mx-7{
  margin-left: -1.75rem !important;
  margin-right: -1.75rem !important;
}

.u--mx-8{
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.u--mx-9{
  margin-left: -2.25rem !important;
  margin-right: -2.25rem !important;
}

.u--mx-10{
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.u--mx-11{
  margin-left: -2.75rem !important;
  margin-right: -2.75rem !important;
}

.u--mx-12{
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.u--mx-14{
  margin-left: -3.5rem !important;
  margin-right: -3.5rem !important;
}

.u--mx-16{
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.u--mx-20{
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.u--mx-24{
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.u--mx-28{
  margin-left: -7rem !important;
  margin-right: -7rem !important;
}

.u--mx-32{
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.u--mx-36{
  margin-left: -9rem !important;
  margin-right: -9rem !important;
}

.u--mx-40{
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}

.u--mx-44{
  margin-left: -11rem !important;
  margin-right: -11rem !important;
}

.u--mx-48{
  margin-left: -12rem !important;
  margin-right: -12rem !important;
}

.u--mx-52{
  margin-left: -13rem !important;
  margin-right: -13rem !important;
}

.u--mx-56{
  margin-left: -14rem !important;
  margin-right: -14rem !important;
}

.u--mx-60{
  margin-left: -15rem !important;
  margin-right: -15rem !important;
}

.u--mx-64{
  margin-left: -16rem !important;
  margin-right: -16rem !important;
}

.u--mx-72{
  margin-left: -18rem !important;
  margin-right: -18rem !important;
}

.u--mx-80{
  margin-left: -20rem !important;
  margin-right: -20rem !important;
}

.u--mx-96{
  margin-left: -24rem !important;
  margin-right: -24rem !important;
}

.u--mx-px{
  margin-left: -1px !important;
  margin-right: -1px !important;
}

.u--mx-0\.5{
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}

.u--mx-1\.5{
  margin-left: -0.375rem !important;
  margin-right: -0.375rem !important;
}

.u--mx-2\.5{
  margin-left: -0.625rem !important;
  margin-right: -0.625rem !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-my-1{
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.u-my-2{
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-my-3{
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.u-my-4{
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-my-5{
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.u-my-6{
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-my-7{
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.u-my-8{
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-my-9{
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.u-my-10{
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-my-11{
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.u-my-12{
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-my-14{
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.u-my-16{
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-my-20{
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.u-my-24{
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.u-my-28{
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.u-my-32{
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.u-my-36{
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.u-my-40{
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.u-my-44{
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.u-my-48{
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.u-my-52{
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.u-my-56{
  margin-top: 14rem !important;
  margin-bottom: 14rem !important;
}

.u-my-60{
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.u-my-64{
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}

.u-my-72{
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.u-my-80{
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.u-my-96{
  margin-top: 24rem !important;
  margin-bottom: 24rem !important;
}

.u-my-auto{
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.u-my-px{
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.u-my-0\.5{
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}

.u-my-1\.5{
  margin-top: 0.375rem !important;
  margin-bottom: 0.375rem !important;
}

.u-my-2\.5{
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.u-my-3\.5{
  margin-top: 0.875rem !important;
  margin-bottom: 0.875rem !important;
}

.u--my-0{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u--my-1{
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.u--my-2{
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.u--my-3{
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.u--my-4{
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.u--my-5{
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.u--my-6{
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.u--my-7{
  margin-top: -1.75rem !important;
  margin-bottom: -1.75rem !important;
}

.u--my-8{
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.u--my-9{
  margin-top: -2.25rem !important;
  margin-bottom: -2.25rem !important;
}

.u--my-10{
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.u--my-11{
  margin-top: -2.75rem !important;
  margin-bottom: -2.75rem !important;
}

.u--my-12{
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.u--my-14{
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

.u--my-16{
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.u--my-20{
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.u--my-24{
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.u--my-28{
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.u--my-32{
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.u--my-36{
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.u--my-40{
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.u--my-44{
  margin-top: -11rem !important;
  margin-bottom: -11rem !important;
}

.u--my-48{
  margin-top: -12rem !important;
  margin-bottom: -12rem !important;
}

.u--my-52{
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.u--my-56{
  margin-top: -14rem !important;
  margin-bottom: -14rem !important;
}

.u--my-60{
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.u--my-64{
  margin-top: -16rem !important;
  margin-bottom: -16rem !important;
}

.u--my-72{
  margin-top: -18rem !important;
  margin-bottom: -18rem !important;
}

.u--my-80{
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}

.u--my-96{
  margin-top: -24rem !important;
  margin-bottom: -24rem !important;
}

.u--my-px{
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}

.u--my-0\.5{
  margin-top: -0.125rem !important;
  margin-bottom: -0.125rem !important;
}

.u--my-1\.5{
  margin-top: -0.375rem !important;
  margin-bottom: -0.375rem !important;
}

.u--my-2\.5{
  margin-top: -0.625rem !important;
  margin-bottom: -0.625rem !important;
}

.u--my-3\.5{
  margin-top: -0.875rem !important;
  margin-bottom: -0.875rem !important;
}

.u-mt-0{
  margin-top: 0px !important;
}

.u-mt-1{
  margin-top: 0.25rem !important;
}

.u-mt-2{
  margin-top: 0.5rem !important;
}

.u-mt-3{
  margin-top: 0.75rem !important;
}

.u-mt-4{
  margin-top: 1rem !important;
}

.u-mt-5{
  margin-top: 1.25rem !important;
}

.u-mt-6{
  margin-top: 1.5rem !important;
}

.u-mt-7{
  margin-top: 1.75rem !important;
}

.u-mt-8{
  margin-top: 2rem !important;
}

.u-mt-9{
  margin-top: 2.25rem !important;
}

.u-mt-10{
  margin-top: 2.5rem !important;
}

.u-mt-11{
  margin-top: 2.75rem !important;
}

.u-mt-12{
  margin-top: 3rem !important;
}

.u-mt-14{
  margin-top: 3.5rem !important;
}

.u-mt-16{
  margin-top: 4rem !important;
}

.u-mt-20{
  margin-top: 5rem !important;
}

.u-mt-24{
  margin-top: 6rem !important;
}

.u-mt-28{
  margin-top: 7rem !important;
}

.u-mt-32{
  margin-top: 8rem !important;
}

.u-mt-36{
  margin-top: 9rem !important;
}

.u-mt-40{
  margin-top: 10rem !important;
}

.u-mt-44{
  margin-top: 11rem !important;
}

.u-mt-48{
  margin-top: 12rem !important;
}

.u-mt-52{
  margin-top: 13rem !important;
}

.u-mt-56{
  margin-top: 14rem !important;
}

.u-mt-60{
  margin-top: 15rem !important;
}

.u-mt-64{
  margin-top: 16rem !important;
}

.u-mt-72{
  margin-top: 18rem !important;
}

.u-mt-80{
  margin-top: 20rem !important;
}

.u-mt-96{
  margin-top: 24rem !important;
}

.u-mt-auto{
  margin-top: auto !important;
}

.u-mt-px{
  margin-top: 1px !important;
}

.u-mt-0\.5{
  margin-top: 0.125rem !important;
}

.u-mt-1\.5{
  margin-top: 0.375rem !important;
}

.u-mt-2\.5{
  margin-top: 0.625rem !important;
}

.u-mt-3\.5{
  margin-top: 0.875rem !important;
}

.u--mt-0{
  margin-top: 0px !important;
}

.u--mt-1{
  margin-top: -0.25rem !important;
}

.u--mt-2{
  margin-top: -0.5rem !important;
}

.u--mt-3{
  margin-top: -0.75rem !important;
}

.u--mt-4{
  margin-top: -1rem !important;
}

.u--mt-5{
  margin-top: -1.25rem !important;
}

.u--mt-6{
  margin-top: -1.5rem !important;
}

.u--mt-7{
  margin-top: -1.75rem !important;
}

.u--mt-8{
  margin-top: -2rem !important;
}

.u--mt-9{
  margin-top: -2.25rem !important;
}

.u--mt-10{
  margin-top: -2.5rem !important;
}

.u--mt-11{
  margin-top: -2.75rem !important;
}

.u--mt-12{
  margin-top: -3rem !important;
}

.u--mt-14{
  margin-top: -3.5rem !important;
}

.u--mt-16{
  margin-top: -4rem !important;
}

.u--mt-20{
  margin-top: -5rem !important;
}

.u--mt-24{
  margin-top: -6rem !important;
}

.u--mt-28{
  margin-top: -7rem !important;
}

.u--mt-32{
  margin-top: -8rem !important;
}

.u--mt-36{
  margin-top: -9rem !important;
}

.u--mt-40{
  margin-top: -10rem !important;
}

.u--mt-44{
  margin-top: -11rem !important;
}

.u--mt-48{
  margin-top: -12rem !important;
}

.u--mt-52{
  margin-top: -13rem !important;
}

.u--mt-56{
  margin-top: -14rem !important;
}

.u--mt-60{
  margin-top: -15rem !important;
}

.u--mt-64{
  margin-top: -16rem !important;
}

.u--mt-72{
  margin-top: -18rem !important;
}

.u--mt-80{
  margin-top: -20rem !important;
}

.u--mt-96{
  margin-top: -24rem !important;
}

.u--mt-px{
  margin-top: -1px !important;
}

.u--mt-0\.5{
  margin-top: -0.125rem !important;
}

.u--mt-1\.5{
  margin-top: -0.375rem !important;
}

.u--mt-2\.5{
  margin-top: -0.625rem !important;
}

.u--mt-3\.5{
  margin-top: -0.875rem !important;
}

.u-mr-0{
  margin-right: 0px !important;
}

.u-mr-1{
  margin-right: 0.25rem !important;
}

.u-mr-2{
  margin-right: 0.5rem !important;
}

.u-mr-3{
  margin-right: 0.75rem !important;
}

.u-mr-4{
  margin-right: 1rem !important;
}

.u-mr-5{
  margin-right: 1.25rem !important;
}

.u-mr-6{
  margin-right: 1.5rem !important;
}

.u-mr-7{
  margin-right: 1.75rem !important;
}

.u-mr-8{
  margin-right: 2rem !important;
}

.u-mr-9{
  margin-right: 2.25rem !important;
}

.u-mr-10{
  margin-right: 2.5rem !important;
}

.u-mr-11{
  margin-right: 2.75rem !important;
}

.u-mr-12{
  margin-right: 3rem !important;
}

.u-mr-14{
  margin-right: 3.5rem !important;
}

.u-mr-16{
  margin-right: 4rem !important;
}

.u-mr-20{
  margin-right: 5rem !important;
}

.u-mr-24{
  margin-right: 6rem !important;
}

.u-mr-28{
  margin-right: 7rem !important;
}

.u-mr-32{
  margin-right: 8rem !important;
}

.u-mr-36{
  margin-right: 9rem !important;
}

.u-mr-40{
  margin-right: 10rem !important;
}

.u-mr-44{
  margin-right: 11rem !important;
}

.u-mr-48{
  margin-right: 12rem !important;
}

.u-mr-52{
  margin-right: 13rem !important;
}

.u-mr-56{
  margin-right: 14rem !important;
}

.u-mr-60{
  margin-right: 15rem !important;
}

.u-mr-64{
  margin-right: 16rem !important;
}

.u-mr-72{
  margin-right: 18rem !important;
}

.u-mr-80{
  margin-right: 20rem !important;
}

.u-mr-96{
  margin-right: 24rem !important;
}

.u-mr-auto{
  margin-right: auto !important;
}

.u-mr-px{
  margin-right: 1px !important;
}

.u-mr-0\.5{
  margin-right: 0.125rem !important;
}

.u-mr-1\.5{
  margin-right: 0.375rem !important;
}

.u-mr-2\.5{
  margin-right: 0.625rem !important;
}

.u-mr-3\.5{
  margin-right: 0.875rem !important;
}

.u--mr-0{
  margin-right: 0px !important;
}

.u--mr-1{
  margin-right: -0.25rem !important;
}

.u--mr-2{
  margin-right: -0.5rem !important;
}

.u--mr-3{
  margin-right: -0.75rem !important;
}

.u--mr-4{
  margin-right: -1rem !important;
}

.u--mr-5{
  margin-right: -1.25rem !important;
}

.u--mr-6{
  margin-right: -1.5rem !important;
}

.u--mr-7{
  margin-right: -1.75rem !important;
}

.u--mr-8{
  margin-right: -2rem !important;
}

.u--mr-9{
  margin-right: -2.25rem !important;
}

.u--mr-10{
  margin-right: -2.5rem !important;
}

.u--mr-11{
  margin-right: -2.75rem !important;
}

.u--mr-12{
  margin-right: -3rem !important;
}

.u--mr-14{
  margin-right: -3.5rem !important;
}

.u--mr-16{
  margin-right: -4rem !important;
}

.u--mr-20{
  margin-right: -5rem !important;
}

.u--mr-24{
  margin-right: -6rem !important;
}

.u--mr-28{
  margin-right: -7rem !important;
}

.u--mr-32{
  margin-right: -8rem !important;
}

.u--mr-36{
  margin-right: -9rem !important;
}

.u--mr-40{
  margin-right: -10rem !important;
}

.u--mr-44{
  margin-right: -11rem !important;
}

.u--mr-48{
  margin-right: -12rem !important;
}

.u--mr-52{
  margin-right: -13rem !important;
}

.u--mr-56{
  margin-right: -14rem !important;
}

.u--mr-60{
  margin-right: -15rem !important;
}

.u--mr-64{
  margin-right: -16rem !important;
}

.u--mr-72{
  margin-right: -18rem !important;
}

.u--mr-80{
  margin-right: -20rem !important;
}

.u--mr-96{
  margin-right: -24rem !important;
}

.u--mr-px{
  margin-right: -1px !important;
}

.u--mr-0\.5{
  margin-right: -0.125rem !important;
}

.u--mr-1\.5{
  margin-right: -0.375rem !important;
}

.u--mr-2\.5{
  margin-right: -0.625rem !important;
}

.u--mr-3\.5{
  margin-right: -0.875rem !important;
}

.u-mb-0{
  margin-bottom: 0px !important;
}

.u-mb-1{
  margin-bottom: 0.25rem !important;
}

.u-mb-2{
  margin-bottom: 0.5rem !important;
}

.u-mb-3{
  margin-bottom: 0.75rem !important;
}

.u-mb-4{
  margin-bottom: 1rem !important;
}

.u-mb-5{
  margin-bottom: 1.25rem !important;
}

.u-mb-6{
  margin-bottom: 1.5rem !important;
}

.u-mb-7{
  margin-bottom: 1.75rem !important;
}

.u-mb-8{
  margin-bottom: 2rem !important;
}

.u-mb-9{
  margin-bottom: 2.25rem !important;
}

.u-mb-10{
  margin-bottom: 2.5rem !important;
}

.u-mb-11{
  margin-bottom: 2.75rem !important;
}

.u-mb-12{
  margin-bottom: 3rem !important;
}

.u-mb-14{
  margin-bottom: 3.5rem !important;
}

.u-mb-16{
  margin-bottom: 4rem !important;
}

.u-mb-20{
  margin-bottom: 5rem !important;
}

.u-mb-24{
  margin-bottom: 6rem !important;
}

.u-mb-28{
  margin-bottom: 7rem !important;
}

.u-mb-32{
  margin-bottom: 8rem !important;
}

.u-mb-36{
  margin-bottom: 9rem !important;
}

.u-mb-40{
  margin-bottom: 10rem !important;
}

.u-mb-44{
  margin-bottom: 11rem !important;
}

.u-mb-48{
  margin-bottom: 12rem !important;
}

.u-mb-52{
  margin-bottom: 13rem !important;
}

.u-mb-56{
  margin-bottom: 14rem !important;
}

.u-mb-60{
  margin-bottom: 15rem !important;
}

.u-mb-64{
  margin-bottom: 16rem !important;
}

.u-mb-72{
  margin-bottom: 18rem !important;
}

.u-mb-80{
  margin-bottom: 20rem !important;
}

.u-mb-96{
  margin-bottom: 24rem !important;
}

.u-mb-auto{
  margin-bottom: auto !important;
}

.u-mb-px{
  margin-bottom: 1px !important;
}

.u-mb-0\.5{
  margin-bottom: 0.125rem !important;
}

.u-mb-1\.5{
  margin-bottom: 0.375rem !important;
}

.u-mb-2\.5{
  margin-bottom: 0.625rem !important;
}

.u-mb-3\.5{
  margin-bottom: 0.875rem !important;
}

.u--mb-0{
  margin-bottom: 0px !important;
}

.u--mb-1{
  margin-bottom: -0.25rem !important;
}

.u--mb-2{
  margin-bottom: -0.5rem !important;
}

.u--mb-3{
  margin-bottom: -0.75rem !important;
}

.u--mb-4{
  margin-bottom: -1rem !important;
}

.u--mb-5{
  margin-bottom: -1.25rem !important;
}

.u--mb-6{
  margin-bottom: -1.5rem !important;
}

.u--mb-7{
  margin-bottom: -1.75rem !important;
}

.u--mb-8{
  margin-bottom: -2rem !important;
}

.u--mb-9{
  margin-bottom: -2.25rem !important;
}

.u--mb-10{
  margin-bottom: -2.5rem !important;
}

.u--mb-11{
  margin-bottom: -2.75rem !important;
}

.u--mb-12{
  margin-bottom: -3rem !important;
}

.u--mb-14{
  margin-bottom: -3.5rem !important;
}

.u--mb-16{
  margin-bottom: -4rem !important;
}

.u--mb-20{
  margin-bottom: -5rem !important;
}

.u--mb-24{
  margin-bottom: -6rem !important;
}

.u--mb-28{
  margin-bottom: -7rem !important;
}

.u--mb-32{
  margin-bottom: -8rem !important;
}

.u--mb-36{
  margin-bottom: -9rem !important;
}

.u--mb-40{
  margin-bottom: -10rem !important;
}

.u--mb-44{
  margin-bottom: -11rem !important;
}

.u--mb-48{
  margin-bottom: -12rem !important;
}

.u--mb-52{
  margin-bottom: -13rem !important;
}

.u--mb-56{
  margin-bottom: -14rem !important;
}

.u--mb-60{
  margin-bottom: -15rem !important;
}

.u--mb-64{
  margin-bottom: -16rem !important;
}

.u--mb-72{
  margin-bottom: -18rem !important;
}

.u--mb-80{
  margin-bottom: -20rem !important;
}

.u--mb-96{
  margin-bottom: -24rem !important;
}

.u--mb-px{
  margin-bottom: -1px !important;
}

.u--mb-0\.5{
  margin-bottom: -0.125rem !important;
}

.u--mb-1\.5{
  margin-bottom: -0.375rem !important;
}

.u--mb-2\.5{
  margin-bottom: -0.625rem !important;
}

.u--mb-3\.5{
  margin-bottom: -0.875rem !important;
}

.u-ml-0{
  margin-left: 0px !important;
}

.u-ml-1{
  margin-left: 0.25rem !important;
}

.u-ml-2{
  margin-left: 0.5rem !important;
}

.u-ml-3{
  margin-left: 0.75rem !important;
}

.u-ml-4{
  margin-left: 1rem !important;
}

.u-ml-5{
  margin-left: 1.25rem !important;
}

.u-ml-6{
  margin-left: 1.5rem !important;
}

.u-ml-7{
  margin-left: 1.75rem !important;
}

.u-ml-8{
  margin-left: 2rem !important;
}

.u-ml-9{
  margin-left: 2.25rem !important;
}

.u-ml-10{
  margin-left: 2.5rem !important;
}

.u-ml-11{
  margin-left: 2.75rem !important;
}

.u-ml-12{
  margin-left: 3rem !important;
}

.u-ml-14{
  margin-left: 3.5rem !important;
}

.u-ml-16{
  margin-left: 4rem !important;
}

.u-ml-20{
  margin-left: 5rem !important;
}

.u-ml-24{
  margin-left: 6rem !important;
}

.u-ml-28{
  margin-left: 7rem !important;
}

.u-ml-32{
  margin-left: 8rem !important;
}

.u-ml-36{
  margin-left: 9rem !important;
}

.u-ml-40{
  margin-left: 10rem !important;
}

.u-ml-44{
  margin-left: 11rem !important;
}

.u-ml-48{
  margin-left: 12rem !important;
}

.u-ml-52{
  margin-left: 13rem !important;
}

.u-ml-56{
  margin-left: 14rem !important;
}

.u-ml-60{
  margin-left: 15rem !important;
}

.u-ml-64{
  margin-left: 16rem !important;
}

.u-ml-72{
  margin-left: 18rem !important;
}

.u-ml-80{
  margin-left: 20rem !important;
}

.u-ml-96{
  margin-left: 24rem !important;
}

.u-ml-auto{
  margin-left: auto !important;
}

.u-ml-px{
  margin-left: 1px !important;
}

.u-ml-0\.5{
  margin-left: 0.125rem !important;
}

.u-ml-1\.5{
  margin-left: 0.375rem !important;
}

.u-ml-2\.5{
  margin-left: 0.625rem !important;
}

.u-ml-3\.5{
  margin-left: 0.875rem !important;
}

.u--ml-0{
  margin-left: 0px !important;
}

.u--ml-1{
  margin-left: -0.25rem !important;
}

.u--ml-2{
  margin-left: -0.5rem !important;
}

.u--ml-3{
  margin-left: -0.75rem !important;
}

.u--ml-4{
  margin-left: -1rem !important;
}

.u--ml-5{
  margin-left: -1.25rem !important;
}

.u--ml-6{
  margin-left: -1.5rem !important;
}

.u--ml-7{
  margin-left: -1.75rem !important;
}

.u--ml-8{
  margin-left: -2rem !important;
}

.u--ml-9{
  margin-left: -2.25rem !important;
}

.u--ml-10{
  margin-left: -2.5rem !important;
}

.u--ml-11{
  margin-left: -2.75rem !important;
}

.u--ml-12{
  margin-left: -3rem !important;
}

.u--ml-14{
  margin-left: -3.5rem !important;
}

.u--ml-16{
  margin-left: -4rem !important;
}

.u--ml-20{
  margin-left: -5rem !important;
}

.u--ml-24{
  margin-left: -6rem !important;
}

.u--ml-28{
  margin-left: -7rem !important;
}

.u--ml-32{
  margin-left: -8rem !important;
}

.u--ml-36{
  margin-left: -9rem !important;
}

.u--ml-40{
  margin-left: -10rem !important;
}

.u--ml-44{
  margin-left: -11rem !important;
}

.u--ml-48{
  margin-left: -12rem !important;
}

.u--ml-52{
  margin-left: -13rem !important;
}

.u--ml-56{
  margin-left: -14rem !important;
}

.u--ml-60{
  margin-left: -15rem !important;
}

.u--ml-64{
  margin-left: -16rem !important;
}

.u--ml-72{
  margin-left: -18rem !important;
}

.u--ml-80{
  margin-left: -20rem !important;
}

.u--ml-96{
  margin-left: -24rem !important;
}

.u--ml-px{
  margin-left: -1px !important;
}

.u--ml-0\.5{
  margin-left: -0.125rem !important;
}

.u--ml-1\.5{
  margin-left: -0.375rem !important;
}

.u--ml-2\.5{
  margin-left: -0.625rem !important;
}

.u--ml-3\.5{
  margin-left: -0.875rem !important;
}

.u-box-border{
  box-sizing: border-box !important;
}

.u-box-content{
  box-sizing: content-box !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-inline-table{
  display: inline-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-list-item{
  display: list-item !important;
}

.u-hidden{
  display: none !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-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-min-h-0{
  min-height: 0px !important;
}

.u-min-h-full{
  min-height: 100% !important;
}

.u-min-h-screen{
  min-height: 100vh !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: -moz-min-content !important;
  width: min-content !important;
}

.u-w-max{
  width: -moz-max-content !important;
  width: max-content !important;
}

.u-min-w-0{
  min-width: 0px !important;
}

.u-min-w-full{
  min-width: 100% !important;
}

.u-min-w-min{
  min-width: -moz-min-content !important;
  min-width: min-content !important;
}

.u-min-w-max{
  min-width: -moz-max-content !important;
  min-width: max-content !important;
}

.u-max-w-0{
  max-width: 0rem !important;
}

.u-max-w-none{
  max-width: none !important;
}

.u-max-w-xs{
  max-width: 20rem !important;
}

.u-max-w-sm{
  max-width: 24rem !important;
}

.u-max-w-md{
  max-width: 28rem !important;
}

.u-max-w-lg{
  max-width: 32rem !important;
}

.u-max-w-xl{
  max-width: 36rem !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-7xl{
  max-width: 80rem !important;
}

.u-max-w-full{
  max-width: 100% !important;
}

.u-max-w-min{
  max-width: -moz-min-content !important;
  max-width: min-content !important;
}

.u-max-w-max{
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}

.u-max-w-prose{
  max-width: 65ch !important;
}

.u-max-w-screen-mobile{
  max-width: 375px !important;
}

.u-max-w-screen-mobile-large{
  max-width: 450px !important;
}

.u-max-w-screen-tablet-small{
  max-width: 600px !important;
}

.u-max-w-screen-tablet{
  max-width: 768px !important;
}

.u-max-w-screen-tablet-large{
  max-width: 900px !important;
}

.u-max-w-screen-desktop{
  max-width: 1280px !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: 1280px !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-none{
  flex: none !important;
}

.u-flex-shrink-0{
  flex-shrink: 0 !important;
}

.u-flex-shrink{
  flex-shrink: 1 !important;
}

.u-flex-grow-0{
  flex-grow: 0 !important;
}

.u-flex-grow{
  flex-grow: 1 !important;
}

.u-table-auto{
  table-layout: auto !important;
}

.u-table-fixed{
  table-layout: fixed !important;
}

.u-border-collapse{
  border-collapse: collapse !important;
}

.u-border-separate{
  border-collapse: separate !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-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-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-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-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-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;
}

.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;
}

.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;
}

.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-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-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;
}

@keyframes u-spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes u-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes u-pulse{
  50%{
    opacity: .5;
  }
}

@keyframes u-bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.u-animate-none{
  animation: none !important;
}

.u-animate-spin{
  animation: u-spin 1s linear infinite !important;
}

.u-animate-ping{
  animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.u-animate-pulse{
  animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.u-animate-bounce{
  animation: u-bounce 1s infinite !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-select-none{
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.u-select-text{
  -webkit-user-select: text !important;
     -moz-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;
          user-select: auto !important;
}

.u-resize-none{
  resize: none !important;
}

.u-resize-y{
  resize: vertical !important;
}

.u-resize-x{
  resize: horizontal !important;
}

.u-resize{
  resize: both !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-appearance-none{
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}

.u-auto-cols-auto{
  grid-auto-columns: auto !important;
}

.u-auto-cols-min{
  grid-auto-columns: min-content !important;
}

.u-auto-cols-max{
  grid-auto-columns: max-content !important;
}

.u-auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr) !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-auto-rows-auto{
  grid-auto-rows: auto !important;
}

.u-auto-rows-min{
  grid-auto-rows: min-content !important;
}

.u-auto-rows-max{
  grid-auto-rows: max-content !important;
}

.u-auto-rows-fr{
  grid-auto-rows: minmax(0, 1fr) !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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-white > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !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-faded > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-0 > :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(250, 250, 250, 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(247, 247, 247, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(38, 38, 38, 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 > :not([hidden]) ~ :not([hidden]){
  border-color: var(--primary) !important;
}

.u-divide-secundary > :not([hidden]) ~ :not([hidden]){
  border-color: var(--secundary) !important;
}

.u-divide-success > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(159, 199, 52, 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-transparent > :not([hidden]) ~ :not([hidden]){
  border-color: transparent !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-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-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-self-baseline{
  align-self: baseline !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-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{
  overscroll-behavior: auto !important;
}

.u-overscroll-contain{
  overscroll-behavior: contain !important;
}

.u-overscroll-none{
  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-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-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-rounded-none{
  border-radius: 0px !important;
}

.u-rounded-sm{
  border-radius: 0.125rem !important;
}

.u-rounded{
  border-radius: 0.25rem !important;
}

.u-rounded-md{
  border-radius: 0.375rem !important;
}

.u-rounded-lg{
  border-radius: 0.5rem !important;
}

.u-rounded-xl{
  border-radius: 0.75rem !important;
}

.u-rounded-2xl{
  border-radius: 1rem !important;
}

.u-rounded-3xl{
  border-radius: 1.5rem !important;
}

.u-rounded-full{
  border-radius: 9999px !important;
}

.u-rounded-t-none{
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.u-rounded-t-sm{
  border-top-left-radius: 0.125rem !important;
  border-top-right-radius: 0.125rem !important;
}

.u-rounded-t{
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.u-rounded-t-md{
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.u-rounded-t-lg{
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.u-rounded-t-xl{
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}

.u-rounded-t-2xl{
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

.u-rounded-t-3xl{
  border-top-left-radius: 1.5rem !important;
  border-top-right-radius: 1.5rem !important;
}

.u-rounded-t-full{
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}

.u-rounded-r-none{
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.u-rounded-r-sm{
  border-top-right-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}

.u-rounded-r{
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.u-rounded-r-md{
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.u-rounded-r-lg{
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.u-rounded-r-xl{
  border-top-right-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}

.u-rounded-r-2xl{
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.u-rounded-r-3xl{
  border-top-right-radius: 1.5rem !important;
  border-bottom-right-radius: 1.5rem !important;
}

.u-rounded-r-full{
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}

.u-rounded-b-none{
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.u-rounded-b-sm{
  border-bottom-right-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.u-rounded-b{
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.u-rounded-b-md{
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.u-rounded-b-lg{
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.u-rounded-b-xl{
  border-bottom-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.u-rounded-b-2xl{
  border-bottom-right-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.u-rounded-b-3xl{
  border-bottom-right-radius: 1.5rem !important;
  border-bottom-left-radius: 1.5rem !important;
}

.u-rounded-b-full{
  border-bottom-right-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.u-rounded-l-none{
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.u-rounded-l-sm{
  border-top-left-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.u-rounded-l{
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.u-rounded-l-md{
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.u-rounded-l-lg{
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.u-rounded-l-xl{
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.u-rounded-l-2xl{
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.u-rounded-l-3xl{
  border-top-left-radius: 1.5rem !important;
  border-bottom-left-radius: 1.5rem !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: 0px !important;
}

.u-rounded-tl-sm{
  border-top-left-radius: 0.125rem !important;
}

.u-rounded-tl{
  border-top-left-radius: 0.25rem !important;
}

.u-rounded-tl-md{
  border-top-left-radius: 0.375rem !important;
}

.u-rounded-tl-lg{
  border-top-left-radius: 0.5rem !important;
}

.u-rounded-tl-xl{
  border-top-left-radius: 0.75rem !important;
}

.u-rounded-tl-2xl{
  border-top-left-radius: 1rem !important;
}

.u-rounded-tl-3xl{
  border-top-left-radius: 1.5rem !important;
}

.u-rounded-tl-full{
  border-top-left-radius: 9999px !important;
}

.u-rounded-tr-none{
  border-top-right-radius: 0px !important;
}

.u-rounded-tr-sm{
  border-top-right-radius: 0.125rem !important;
}

.u-rounded-tr{
  border-top-right-radius: 0.25rem !important;
}

.u-rounded-tr-md{
  border-top-right-radius: 0.375rem !important;
}

.u-rounded-tr-lg{
  border-top-right-radius: 0.5rem !important;
}

.u-rounded-tr-xl{
  border-top-right-radius: 0.75rem !important;
}

.u-rounded-tr-2xl{
  border-top-right-radius: 1rem !important;
}

.u-rounded-tr-3xl{
  border-top-right-radius: 1.5rem !important;
}

.u-rounded-tr-full{
  border-top-right-radius: 9999px !important;
}

.u-rounded-br-none{
  border-bottom-right-radius: 0px !important;
}

.u-rounded-br-sm{
  border-bottom-right-radius: 0.125rem !important;
}

.u-rounded-br{
  border-bottom-right-radius: 0.25rem !important;
}

.u-rounded-br-md{
  border-bottom-right-radius: 0.375rem !important;
}

.u-rounded-br-lg{
  border-bottom-right-radius: 0.5rem !important;
}

.u-rounded-br-xl{
  border-bottom-right-radius: 0.75rem !important;
}

.u-rounded-br-2xl{
  border-bottom-right-radius: 1rem !important;
}

.u-rounded-br-3xl{
  border-bottom-right-radius: 1.5rem !important;
}

.u-rounded-br-full{
  border-bottom-right-radius: 9999px !important;
}

.u-rounded-bl-none{
  border-bottom-left-radius: 0px !important;
}

.u-rounded-bl-sm{
  border-bottom-left-radius: 0.125rem !important;
}

.u-rounded-bl{
  border-bottom-left-radius: 0.25rem !important;
}

.u-rounded-bl-md{
  border-bottom-left-radius: 0.375rem !important;
}

.u-rounded-bl-lg{
  border-bottom-left-radius: 0.5rem !important;
}

.u-rounded-bl-xl{
  border-bottom-left-radius: 0.75rem !important;
}

.u-rounded-bl-2xl{
  border-bottom-left-radius: 1rem !important;
}

.u-rounded-bl-3xl{
  border-bottom-left-radius: 1.5rem !important;
}

.u-rounded-bl-full{
  border-bottom-left-radius: 9999px !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-t-2{
  border-top-width: 2px !important;
}

.u-border-t-4{
  border-top-width: 4px !important;
}

.u-border-t-8{
  border-top-width: 8px !important;
}

.u-border-t{
  border-top-width: 1px !important;
}

.u-border-r-0{
  border-right-width: 0px !important;
}

.u-border-r-2{
  border-right-width: 2px !important;
}

.u-border-r-4{
  border-right-width: 4px !important;
}

.u-border-r-8{
  border-right-width: 8px !important;
}

.u-border-r{
  border-right-width: 1px !important;
}

.u-border-b-0{
  border-bottom-width: 0px !important;
}

.u-border-b-2{
  border-bottom-width: 2px !important;
}

.u-border-b-4{
  border-bottom-width: 4px !important;
}

.u-border-b-8{
  border-bottom-width: 8px !important;
}

.u-border-b{
  border-bottom-width: 1px !important;
}

.u-border-l-0{
  border-left-width: 0px !important;
}

.u-border-l-2{
  border-left-width: 2px !important;
}

.u-border-l-4{
  border-left-width: 4px !important;
}

.u-border-l-8{
  border-left-width: 8px !important;
}

.u-border-l{
  border-left-width: 1px !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-white{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-border-black{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-border-faded{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.u-border-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
}

.u-border-neutral-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
}

.u-border-neutral-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
}

.u-border-neutral-45{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.u-border-neutral-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(38, 38, 38, 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{
  border-color: var(--primary) !important;
}

.u-border-secundary{
  border-color: var(--secundary) !important;
}

.u-border-success{
  --tw-border-opacity: 1 !important;
  border-color: rgba(159, 199, 52, 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-border-transparent{
  border-color: transparent !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-black{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-faded{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-45{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(38, 38, 38, 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{
  border-color: var(--primary) !important;
}

.u-group:hover .group-hover\:u-border-secundary{
  border-color: var(--secundary) !important;
}

.u-group:hover .group-hover\:u-border-success{
  --tw-border-opacity: 1 !important;
  border-color: rgba(159, 199, 52, 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;
}

.u-group:hover .group-hover\:u-border-transparent{
  border-color: transparent !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-black:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-faded:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-45:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(38, 38, 38, 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:focus-within{
  border-color: var(--primary) !important;
}

.focus-within\:u-border-secundary:focus-within{
  border-color: var(--secundary) !important;
}

.focus-within\:u-border-success:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(159, 199, 52, 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;
}

.focus-within\:u-border-transparent:focus-within{
  border-color: transparent !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-black:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.hover\:u-border-faded:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-45:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(38, 38, 38, 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:hover{
  border-color: var(--primary) !important;
}

.hover\:u-border-secundary:hover{
  border-color: var(--secundary) !important;
}

.hover\:u-border-success:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(159, 199, 52, 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;
}

.hover\:u-border-transparent:hover{
  border-color: transparent !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-black:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus\:u-border-faded:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-45:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(38, 38, 38, 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:focus{
  border-color: var(--primary) !important;
}

.focus\:u-border-secundary:focus{
  border-color: var(--secundary) !important;
}

.focus\:u-border-success:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(159, 199, 52, 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;
}

.focus\:u-border-transparent:focus{
  border-color: transparent !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-bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-bg-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-bg-faded{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-45{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(38, 38, 38, 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{
  background-color: var(--primary) !important;
}

.u-bg-secundary{
  background-color: var(--secundary) !important;
}

.u-bg-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(159, 199, 52, 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-bg-transparent{
  background-color: transparent !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-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-faded{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-45{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(38, 38, 38, 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{
  background-color: var(--primary) !important;
}

.u-group:hover .group-hover\:u-bg-secundary{
  background-color: var(--secundary) !important;
}

.u-group:hover .group-hover\:u-bg-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(159, 199, 52, 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;
}

.u-group:hover .group-hover\:u-bg-transparent{
  background-color: transparent !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-black:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-faded:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-45:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(38, 38, 38, 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:focus-within{
  background-color: var(--primary) !important;
}

.focus-within\:u-bg-secundary:focus-within{
  background-color: var(--secundary) !important;
}

.focus-within\:u-bg-success:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(159, 199, 52, 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;
}

.focus-within\:u-bg-transparent:focus-within{
  background-color: transparent !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-black:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-faded:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-45:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(38, 38, 38, 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:hover{
  background-color: var(--primary) !important;
}

.hover\:u-bg-secundary:hover{
  background-color: var(--secundary) !important;
}

.hover\:u-bg-success:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(159, 199, 52, 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;
}

.hover\:u-bg-transparent:hover{
  background-color: transparent !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-black:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-faded:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-45:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(38, 38, 38, 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:focus{
  background-color: var(--primary) !important;
}

.focus\:u-bg-secundary:focus{
  background-color: var(--secundary) !important;
}

.focus\:u-bg-success:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(159, 199, 52, 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;
}

.focus\:u-bg-transparent:focus{
  background-color: transparent !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-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-white{
  --tw-gradient-from: #FFFFFF !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-from-black{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-from-faded{
  --tw-gradient-from: #666666 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.u-from-neutral-0{
  --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: #FAFAFA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.u-from-neutral-30{
  --tw-gradient-from: #E7E7E7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
}

.u-from-neutral-40{
  --tw-gradient-from: #9E9E9E !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
}

.u-from-neutral-45{
  --tw-gradient-from: #666666 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.u-from-neutral-50{
  --tw-gradient-from: #262626 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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{
  --tw-gradient-from: var(--primary) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-from-secundary{
  --tw-gradient-from: var(--secundary) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-from-success{
  --tw-gradient-from: #9FC734 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-from-transparent{
  --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-white: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-black: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-faded:hover{
  --tw-gradient-from: #666666 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.hover\:u-from-neutral-0: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: #FAFAFA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.hover\:u-from-neutral-30:hover{
  --tw-gradient-from: #E7E7E7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
}

.hover\:u-from-neutral-40:hover{
  --tw-gradient-from: #9E9E9E !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
}

.hover\:u-from-neutral-45:hover{
  --tw-gradient-from: #666666 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.hover\:u-from-neutral-50:hover{
  --tw-gradient-from: #262626 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
  --tw-gradient-from: var(--primary) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-from-secundary:hover{
  --tw-gradient-from: var(--secundary) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-from-success:hover{
  --tw-gradient-from: #9FC734 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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;
}

.focus\:u-from-white: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-black: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-faded:focus{
  --tw-gradient-from: #666666 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.focus\:u-from-neutral-0: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: #FAFAFA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.focus\:u-from-neutral-30:focus{
  --tw-gradient-from: #E7E7E7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
}

.focus\:u-from-neutral-40:focus{
  --tw-gradient-from: #9E9E9E !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
}

.focus\:u-from-neutral-45:focus{
  --tw-gradient-from: #666666 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.focus\:u-from-neutral-50:focus{
  --tw-gradient-from: #262626 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
  --tw-gradient-from: var(--primary) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-from-secundary:focus{
  --tw-gradient-from: var(--secundary) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-from-success:focus{
  --tw-gradient-from: #9FC734 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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;
}

.u-via-white{
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-via-black{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-via-faded{
  --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.u-via-neutral-0{
  --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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.u-via-neutral-30{
  --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
}

.u-via-neutral-40{
  --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
}

.u-via-neutral-45{
  --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.u-via-neutral-50{
  --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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{
  --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-via-secundary{
  --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-via-success{
  --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
}

.u-via-danger{
  --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.u-via-transparent{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-via-white:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-via-black:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-via-faded:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.hover\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.hover\:u-via-neutral-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
}

.hover\:u-via-neutral-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
}

.hover\:u-via-neutral-45:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.hover\:u-via-neutral-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
  --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-via-secundary:hover{
  --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-via-success:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:hover{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-via-white:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-via-black:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-via-faded:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.focus\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.focus\:u-via-neutral-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
}

.focus\:u-via-neutral-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
}

.focus\:u-via-neutral-45:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
}

.focus\:u-via-neutral-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
  --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-via-secundary:focus{
  --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-via-success:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:focus{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-to-white{
  --tw-gradient-to: #FFFFFF !important;
}

.u-to-black{
  --tw-gradient-to: #000000 !important;
}

.u-to-faded{
  --tw-gradient-to: #666666 !important;
}

.u-to-neutral-0{
  --tw-gradient-to: #FFFFFF !important;
}

.u-to-neutral-10{
  --tw-gradient-to: #FAFAFA !important;
}

.u-to-neutral-15{
  --tw-gradient-to: #F2F2F2 !important;
}

.u-to-neutral-20{
  --tw-gradient-to: #F7F7F7 !important;
}

.u-to-neutral-30{
  --tw-gradient-to: #E7E7E7 !important;
}

.u-to-neutral-40{
  --tw-gradient-to: #9E9E9E !important;
}

.u-to-neutral-45{
  --tw-gradient-to: #666666 !important;
}

.u-to-neutral-50{
  --tw-gradient-to: #262626 !important;
}

.u-to-neutral-60{
  --tw-gradient-to: #000000 !important;
}

.u-to-primary{
  --tw-gradient-to: var(--primary) !important;
}

.u-to-secundary{
  --tw-gradient-to: var(--secundary) !important;
}

.u-to-success{
  --tw-gradient-to: #9FC734 !important;
}

.u-to-danger{
  --tw-gradient-to: #FD6262 !important;
}

.u-to-transparent{
  --tw-gradient-to: transparent !important;
}

.hover\:u-to-white:hover{
  --tw-gradient-to: #FFFFFF !important;
}

.hover\:u-to-black:hover{
  --tw-gradient-to: #000000 !important;
}

.hover\:u-to-faded:hover{
  --tw-gradient-to: #666666 !important;
}

.hover\:u-to-neutral-0:hover{
  --tw-gradient-to: #FFFFFF !important;
}

.hover\:u-to-neutral-10:hover{
  --tw-gradient-to: #FAFAFA !important;
}

.hover\:u-to-neutral-15:hover{
  --tw-gradient-to: #F2F2F2 !important;
}

.hover\:u-to-neutral-20:hover{
  --tw-gradient-to: #F7F7F7 !important;
}

.hover\:u-to-neutral-30:hover{
  --tw-gradient-to: #E7E7E7 !important;
}

.hover\:u-to-neutral-40:hover{
  --tw-gradient-to: #9E9E9E !important;
}

.hover\:u-to-neutral-45:hover{
  --tw-gradient-to: #666666 !important;
}

.hover\:u-to-neutral-50:hover{
  --tw-gradient-to: #262626 !important;
}

.hover\:u-to-neutral-60:hover{
  --tw-gradient-to: #000000 !important;
}

.hover\:u-to-primary:hover{
  --tw-gradient-to: var(--primary) !important;
}

.hover\:u-to-secundary:hover{
  --tw-gradient-to: var(--secundary) !important;
}

.hover\:u-to-success:hover{
  --tw-gradient-to: #9FC734 !important;
}

.hover\:u-to-danger:hover{
  --tw-gradient-to: #FD6262 !important;
}

.hover\:u-to-transparent:hover{
  --tw-gradient-to: transparent !important;
}

.focus\:u-to-white:focus{
  --tw-gradient-to: #FFFFFF !important;
}

.focus\:u-to-black:focus{
  --tw-gradient-to: #000000 !important;
}

.focus\:u-to-faded:focus{
  --tw-gradient-to: #666666 !important;
}

.focus\:u-to-neutral-0:focus{
  --tw-gradient-to: #FFFFFF !important;
}

.focus\:u-to-neutral-10:focus{
  --tw-gradient-to: #FAFAFA !important;
}

.focus\:u-to-neutral-15:focus{
  --tw-gradient-to: #F2F2F2 !important;
}

.focus\:u-to-neutral-20:focus{
  --tw-gradient-to: #F7F7F7 !important;
}

.focus\:u-to-neutral-30:focus{
  --tw-gradient-to: #E7E7E7 !important;
}

.focus\:u-to-neutral-40:focus{
  --tw-gradient-to: #9E9E9E !important;
}

.focus\:u-to-neutral-45:focus{
  --tw-gradient-to: #666666 !important;
}

.focus\:u-to-neutral-50:focus{
  --tw-gradient-to: #262626 !important;
}

.focus\:u-to-neutral-60:focus{
  --tw-gradient-to: #000000 !important;
}

.focus\:u-to-primary:focus{
  --tw-gradient-to: var(--primary) !important;
}

.focus\:u-to-secundary:focus{
  --tw-gradient-to: var(--secundary) !important;
}

.focus\:u-to-success:focus{
  --tw-gradient-to: #9FC734 !important;
}

.focus\:u-to-danger:focus{
  --tw-gradient-to: #FD6262 !important;
}

.focus\:u-to-transparent:focus{
  --tw-gradient-to: transparent !important;
}

.u-decoration-slice{
  -webkit-box-decoration-break: slice !important;
          box-decoration-break: slice !important;
}

.u-decoration-clone{
  -webkit-box-decoration-break: clone !important;
          box-decoration-break: clone !important;
}

.u-bg-auto{
  background-size: auto !important;
}

.u-bg-cover{
  background-size: cover !important;
}

.u-bg-contain{
  background-size: contain !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-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-origin-border{
  background-origin: border-box !important;
}

.u-bg-origin-padding{
  background-origin: padding-box !important;
}

.u-bg-origin-content{
  background-origin: content-box !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-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-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-px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.u-px-1{
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.u-px-2{
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.u-px-3{
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.u-px-4{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.u-px-5{
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.u-px-6{
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.u-px-7{
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.u-px-8{
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-px-9{
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.u-px-10{
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.u-px-11{
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}

.u-px-12{
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.u-px-14{
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.u-px-16{
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-px-20{
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-px-24{
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.u-px-28{
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.u-px-32{
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.u-px-36{
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.u-px-40{
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.u-px-44{
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.u-px-48{
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.u-px-52{
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.u-px-56{
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}

.u-px-60{
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.u-px-64{
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.u-px-72{
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.u-px-80{
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.u-px-96{
  padding-left: 24rem !important;
  padding-right: 24rem !important;
}

.u-px-px{
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.u-px-0\.5{
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.u-px-1\.5{
  padding-left: 0.375rem !important;
  padding-right: 0.375rem !important;
}

.u-px-2\.5{
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.u-px-3\.5{
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
}

.u-py-0{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.u-py-1{
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.u-py-2{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.u-py-3{
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.u-py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.u-py-5{
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.u-py-6{
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.u-py-7{
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.u-py-8{
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.u-py-9{
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.u-py-10{
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.u-py-11{
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.u-py-12{
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.u-py-14{
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.u-py-16{
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-py-20{
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.u-py-24{
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.u-py-28{
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.u-py-32{
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.u-py-36{
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.u-py-40{
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.u-py-44{
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.u-py-48{
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.u-py-52{
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.u-py-56{
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}

.u-py-60{
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.u-py-64{
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.u-py-72{
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.u-py-80{
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.u-py-96{
  padding-top: 24rem !important;
  padding-bottom: 24rem !important;
}

.u-py-px{
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.u-py-0\.5{
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}

.u-py-1\.5{
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}

.u-py-2\.5{
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.u-py-3\.5{
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

.u-pt-0{
  padding-top: 0px !important;
}

.u-pt-1{
  padding-top: 0.25rem !important;
}

.u-pt-2{
  padding-top: 0.5rem !important;
}

.u-pt-3{
  padding-top: 0.75rem !important;
}

.u-pt-4{
  padding-top: 1rem !important;
}

.u-pt-5{
  padding-top: 1.25rem !important;
}

.u-pt-6{
  padding-top: 1.5rem !important;
}

.u-pt-7{
  padding-top: 1.75rem !important;
}

.u-pt-8{
  padding-top: 2rem !important;
}

.u-pt-9{
  padding-top: 2.25rem !important;
}

.u-pt-10{
  padding-top: 2.5rem !important;
}

.u-pt-11{
  padding-top: 2.75rem !important;
}

.u-pt-12{
  padding-top: 3rem !important;
}

.u-pt-14{
  padding-top: 3.5rem !important;
}

.u-pt-16{
  padding-top: 4rem !important;
}

.u-pt-20{
  padding-top: 5rem !important;
}

.u-pt-24{
  padding-top: 6rem !important;
}

.u-pt-28{
  padding-top: 7rem !important;
}

.u-pt-32{
  padding-top: 8rem !important;
}

.u-pt-36{
  padding-top: 9rem !important;
}

.u-pt-40{
  padding-top: 10rem !important;
}

.u-pt-44{
  padding-top: 11rem !important;
}

.u-pt-48{
  padding-top: 12rem !important;
}

.u-pt-52{
  padding-top: 13rem !important;
}

.u-pt-56{
  padding-top: 14rem !important;
}

.u-pt-60{
  padding-top: 15rem !important;
}

.u-pt-64{
  padding-top: 16rem !important;
}

.u-pt-72{
  padding-top: 18rem !important;
}

.u-pt-80{
  padding-top: 20rem !important;
}

.u-pt-96{
  padding-top: 24rem !important;
}

.u-pt-px{
  padding-top: 1px !important;
}

.u-pt-0\.5{
  padding-top: 0.125rem !important;
}

.u-pt-1\.5{
  padding-top: 0.375rem !important;
}

.u-pt-2\.5{
  padding-top: 0.625rem !important;
}

.u-pt-3\.5{
  padding-top: 0.875rem !important;
}

.u-pr-0{
  padding-right: 0px !important;
}

.u-pr-1{
  padding-right: 0.25rem !important;
}

.u-pr-2{
  padding-right: 0.5rem !important;
}

.u-pr-3{
  padding-right: 0.75rem !important;
}

.u-pr-4{
  padding-right: 1rem !important;
}

.u-pr-5{
  padding-right: 1.25rem !important;
}

.u-pr-6{
  padding-right: 1.5rem !important;
}

.u-pr-7{
  padding-right: 1.75rem !important;
}

.u-pr-8{
  padding-right: 2rem !important;
}

.u-pr-9{
  padding-right: 2.25rem !important;
}

.u-pr-10{
  padding-right: 2.5rem !important;
}

.u-pr-11{
  padding-right: 2.75rem !important;
}

.u-pr-12{
  padding-right: 3rem !important;
}

.u-pr-14{
  padding-right: 3.5rem !important;
}

.u-pr-16{
  padding-right: 4rem !important;
}

.u-pr-20{
  padding-right: 5rem !important;
}

.u-pr-24{
  padding-right: 6rem !important;
}

.u-pr-28{
  padding-right: 7rem !important;
}

.u-pr-32{
  padding-right: 8rem !important;
}

.u-pr-36{
  padding-right: 9rem !important;
}

.u-pr-40{
  padding-right: 10rem !important;
}

.u-pr-44{
  padding-right: 11rem !important;
}

.u-pr-48{
  padding-right: 12rem !important;
}

.u-pr-52{
  padding-right: 13rem !important;
}

.u-pr-56{
  padding-right: 14rem !important;
}

.u-pr-60{
  padding-right: 15rem !important;
}

.u-pr-64{
  padding-right: 16rem !important;
}

.u-pr-72{
  padding-right: 18rem !important;
}

.u-pr-80{
  padding-right: 20rem !important;
}

.u-pr-96{
  padding-right: 24rem !important;
}

.u-pr-px{
  padding-right: 1px !important;
}

.u-pr-0\.5{
  padding-right: 0.125rem !important;
}

.u-pr-1\.5{
  padding-right: 0.375rem !important;
}

.u-pr-2\.5{
  padding-right: 0.625rem !important;
}

.u-pr-3\.5{
  padding-right: 0.875rem !important;
}

.u-pb-0{
  padding-bottom: 0px !important;
}

.u-pb-1{
  padding-bottom: 0.25rem !important;
}

.u-pb-2{
  padding-bottom: 0.5rem !important;
}

.u-pb-3{
  padding-bottom: 0.75rem !important;
}

.u-pb-4{
  padding-bottom: 1rem !important;
}

.u-pb-5{
  padding-bottom: 1.25rem !important;
}

.u-pb-6{
  padding-bottom: 1.5rem !important;
}

.u-pb-7{
  padding-bottom: 1.75rem !important;
}

.u-pb-8{
  padding-bottom: 2rem !important;
}

.u-pb-9{
  padding-bottom: 2.25rem !important;
}

.u-pb-10{
  padding-bottom: 2.5rem !important;
}

.u-pb-11{
  padding-bottom: 2.75rem !important;
}

.u-pb-12{
  padding-bottom: 3rem !important;
}

.u-pb-14{
  padding-bottom: 3.5rem !important;
}

.u-pb-16{
  padding-bottom: 4rem !important;
}

.u-pb-20{
  padding-bottom: 5rem !important;
}

.u-pb-24{
  padding-bottom: 6rem !important;
}

.u-pb-28{
  padding-bottom: 7rem !important;
}

.u-pb-32{
  padding-bottom: 8rem !important;
}

.u-pb-36{
  padding-bottom: 9rem !important;
}

.u-pb-40{
  padding-bottom: 10rem !important;
}

.u-pb-44{
  padding-bottom: 11rem !important;
}

.u-pb-48{
  padding-bottom: 12rem !important;
}

.u-pb-52{
  padding-bottom: 13rem !important;
}

.u-pb-56{
  padding-bottom: 14rem !important;
}

.u-pb-60{
  padding-bottom: 15rem !important;
}

.u-pb-64{
  padding-bottom: 16rem !important;
}

.u-pb-72{
  padding-bottom: 18rem !important;
}

.u-pb-80{
  padding-bottom: 20rem !important;
}

.u-pb-96{
  padding-bottom: 24rem !important;
}

.u-pb-px{
  padding-bottom: 1px !important;
}

.u-pb-0\.5{
  padding-bottom: 0.125rem !important;
}

.u-pb-1\.5{
  padding-bottom: 0.375rem !important;
}

.u-pb-2\.5{
  padding-bottom: 0.625rem !important;
}

.u-pb-3\.5{
  padding-bottom: 0.875rem !important;
}

.u-pl-0{
  padding-left: 0px !important;
}

.u-pl-1{
  padding-left: 0.25rem !important;
}

.u-pl-2{
  padding-left: 0.5rem !important;
}

.u-pl-3{
  padding-left: 0.75rem !important;
}

.u-pl-4{
  padding-left: 1rem !important;
}

.u-pl-5{
  padding-left: 1.25rem !important;
}

.u-pl-6{
  padding-left: 1.5rem !important;
}

.u-pl-7{
  padding-left: 1.75rem !important;
}

.u-pl-8{
  padding-left: 2rem !important;
}

.u-pl-9{
  padding-left: 2.25rem !important;
}

.u-pl-10{
  padding-left: 2.5rem !important;
}

.u-pl-11{
  padding-left: 2.75rem !important;
}

.u-pl-12{
  padding-left: 3rem !important;
}

.u-pl-14{
  padding-left: 3.5rem !important;
}

.u-pl-16{
  padding-left: 4rem !important;
}

.u-pl-20{
  padding-left: 5rem !important;
}

.u-pl-24{
  padding-left: 6rem !important;
}

.u-pl-28{
  padding-left: 7rem !important;
}

.u-pl-32{
  padding-left: 8rem !important;
}

.u-pl-36{
  padding-left: 9rem !important;
}

.u-pl-40{
  padding-left: 10rem !important;
}

.u-pl-44{
  padding-left: 11rem !important;
}

.u-pl-48{
  padding-left: 12rem !important;
}

.u-pl-52{
  padding-left: 13rem !important;
}

.u-pl-56{
  padding-left: 14rem !important;
}

.u-pl-60{
  padding-left: 15rem !important;
}

.u-pl-64{
  padding-left: 16rem !important;
}

.u-pl-72{
  padding-left: 18rem !important;
}

.u-pl-80{
  padding-left: 20rem !important;
}

.u-pl-96{
  padding-left: 24rem !important;
}

.u-pl-px{
  padding-left: 1px !important;
}

.u-pl-0\.5{
  padding-left: 0.125rem !important;
}

.u-pl-1\.5{
  padding-left: 0.375rem !important;
}

.u-pl-2\.5{
  padding-left: 0.625rem !important;
}

.u-pl-3\.5{
  padding-left: 0.875rem !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-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-font-body{
  font-family: Public Sans, sans-serif !important;
}

.u-font-heading{
  font-family: Public Sans, sans-serif !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.2rem !important;
}

.u-text-3xl{
  font-size: 1.3rem !important;
}

.u-text-4xl{
  font-size: 1.4rem !important;
}

.u-text-5xl{
  font-size: 2rem !important;
}

.u-text-6xl{
  font-size: 3rem !important;
}

.u-text-8xl{
  font-size: 4rem !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-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-italic{
  font-style: italic !important;
}

.u-not-italic{
  font-style: normal !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-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.5 !important;
}

.u-leading-relaxed{
  line-height: 1.625 !important;
}

.u-leading-loose{
  line-height: 2 !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-text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-text-black{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-text-faded{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.u-text-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
}

.u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
}

.u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
}

.u-text-neutral-45{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(38, 38, 38, 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{
  color: var(--primary) !important;
}

.u-text-secundary{
  color: var(--secundary) !important;
}

.u-text-success{
  --tw-text-opacity: 1 !important;
  color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
}

.u-text-danger{
  --tw-text-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
}

.u-text-transparent{
  color: transparent !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-black{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-faded{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-45{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(38, 38, 38, 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{
  color: var(--primary) !important;
}

.u-group:hover .group-hover\:u-text-secundary{
  color: var(--secundary) !important;
}

.u-group:hover .group-hover\:u-text-success{
  --tw-text-opacity: 1 !important;
  color: rgba(159, 199, 52, 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;
}

.u-group:hover .group-hover\:u-text-transparent{
  color: transparent !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-black:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-faded:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-45:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(38, 38, 38, 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:focus-within{
  color: var(--primary) !important;
}

.focus-within\:u-text-secundary:focus-within{
  color: var(--secundary) !important;
}

.focus-within\:u-text-success:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(159, 199, 52, 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;
}

.focus-within\:u-text-transparent:focus-within{
  color: transparent !important;
}

.hover\:u-text-white:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, 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-faded:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-45:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(38, 38, 38, 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:hover{
  color: var(--primary) !important;
}

.hover\:u-text-secundary:hover{
  color: var(--secundary) !important;
}

.hover\:u-text-success:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(159, 199, 52, 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;
}

.hover\:u-text-transparent:hover{
  color: transparent !important;
}

.focus\:u-text-white:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, 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-faded:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-45:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(38, 38, 38, 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:focus{
  color: var(--primary) !important;
}

.focus\:u-text-secundary:focus{
  color: var(--secundary) !important;
}

.focus\:u-text-success:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(159, 199, 52, 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;
}

.focus\:u-text-transparent:focus{
  color: transparent !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-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-placeholder-white::-moz-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-black::-moz-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-faded::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-faded::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-0::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-0::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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(38, 38, 38, 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::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary::-moz-placeholder{
  color: var(--primary) !important;
}

.u-placeholder-primary::placeholder{
  color: var(--primary) !important;
}

.u-placeholder-secundary::-moz-placeholder{
  color: var(--secundary) !important;
}

.u-placeholder-secundary::placeholder{
  color: var(--secundary) !important;
}

.u-placeholder-success::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-success::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(159, 199, 52, 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::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-transparent::-moz-placeholder{
  color: transparent !important;
}

.u-placeholder-transparent::placeholder{
  color: transparent !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::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, 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::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-faded:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-faded:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-0: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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(38, 38, 38, 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::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary:focus::-moz-placeholder{
  color: var(--primary) !important;
}

.focus\:u-placeholder-primary:focus::placeholder{
  color: var(--primary) !important;
}

.focus\:u-placeholder-secundary:focus::-moz-placeholder{
  color: var(--secundary) !important;
}

.focus\:u-placeholder-secundary:focus::placeholder{
  color: var(--secundary) !important;
}

.focus\:u-placeholder-success:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-success:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(159, 199, 52, 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::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-transparent:focus::-moz-placeholder{
  color: transparent !important;
}

.focus\:u-placeholder-transparent:focus::placeholder{
  color: transparent !important;
}

.u-placeholder-opacity-0::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.u-placeholder-opacity-10::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.u-placeholder-opacity-25::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.u-placeholder-opacity-40::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.u-placeholder-opacity-60::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.u-placeholder-opacity-75::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.u-placeholder-opacity-90::-moz-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::placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.u-placeholder-opacity-100::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
  --tw-placeholder-opacity: 1 !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-bg-blend-normal{
  background-blend-mode: normal !important;
}

.u-bg-blend-multiply{
  background-blend-mode: multiply !important;
}

.u-bg-blend-screen{
  background-blend-mode: screen !important;
}

.u-bg-blend-overlay{
  background-blend-mode: overlay !important;
}

.u-bg-blend-darken{
  background-blend-mode: darken !important;
}

.u-bg-blend-lighten{
  background-blend-mode: lighten !important;
}

.u-bg-blend-color-dodge{
  background-blend-mode: color-dodge !important;
}

.u-bg-blend-color-burn{
  background-blend-mode: color-burn !important;
}

.u-bg-blend-hard-light{
  background-blend-mode: hard-light !important;
}

.u-bg-blend-soft-light{
  background-blend-mode: soft-light !important;
}

.u-bg-blend-difference{
  background-blend-mode: difference !important;
}

.u-bg-blend-exclusion{
  background-blend-mode: exclusion !important;
}

.u-bg-blend-hue{
  background-blend-mode: hue !important;
}

.u-bg-blend-saturation{
  background-blend-mode: saturation !important;
}

.u-bg-blend-color{
  background-blend-mode: color !important;
}

.u-bg-blend-luminosity{
  background-blend-mode: luminosity !important;
}

.u-mix-blend-normal{
  mix-blend-mode: normal !important;
}

.u-mix-blend-multiply{
  mix-blend-mode: multiply !important;
}

.u-mix-blend-screen{
  mix-blend-mode: screen !important;
}

.u-mix-blend-overlay{
  mix-blend-mode: overlay !important;
}

.u-mix-blend-darken{
  mix-blend-mode: darken !important;
}

.u-mix-blend-lighten{
  mix-blend-mode: lighten !important;
}

.u-mix-blend-color-dodge{
  mix-blend-mode: color-dodge !important;
}

.u-mix-blend-color-burn{
  mix-blend-mode: color-burn !important;
}

.u-mix-blend-hard-light{
  mix-blend-mode: hard-light !important;
}

.u-mix-blend-soft-light{
  mix-blend-mode: soft-light !important;
}

.u-mix-blend-difference{
  mix-blend-mode: difference !important;
}

.u-mix-blend-exclusion{
  mix-blend-mode: exclusion !important;
}

.u-mix-blend-hue{
  mix-blend-mode: hue !important;
}

.u-mix-blend-saturation{
  mix-blend-mode: saturation !important;
}

.u-mix-blend-color{
  mix-blend-mode: color !important;
}

.u-mix-blend-luminosity{
  mix-blend-mode: luminosity !important;
}

*, ::before, ::after{
  --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-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;
}

.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;
}

.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;
}

.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;
}

.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;
}

*, ::before, ::after{
  --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;
}

.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\: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;
}

.u-ring-inset{
  --tw-ring-inset: inset !important;
}

.focus-within\:u-ring-inset:focus-within{
  --tw-ring-inset: inset !important;
}

.focus\:u-ring-inset:focus{
  --tw-ring-inset: inset !important;
}

.u-ring-white{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.u-ring-black{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.u-ring-faded{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-0{
  --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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-45{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(38, 38, 38, 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{
  --tw-ring-color: var(--primary) !important;
}

.u-ring-secundary{
  --tw-ring-color: var(--secundary) !important;
}

.u-ring-success{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(159, 199, 52, 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;
}

.u-ring-transparent{
  --tw-ring-color: transparent !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-black:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-faded:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-45:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(38, 38, 38, 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:focus-within{
  --tw-ring-color: var(--primary) !important;
}

.focus-within\:u-ring-secundary:focus-within{
  --tw-ring-color: var(--secundary) !important;
}

.focus-within\:u-ring-success:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(159, 199, 52, 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-within\:u-ring-transparent:focus-within{
  --tw-ring-color: transparent !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-black:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-faded:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-45:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(38, 38, 38, 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:focus{
  --tw-ring-color: var(--primary) !important;
}

.focus\:u-ring-secundary:focus{
  --tw-ring-color: var(--secundary) !important;
}

.focus\:u-ring-success:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(159, 199, 52, 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;
}

.focus\:u-ring-transparent:focus{
  --tw-ring-color: transparent !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-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-offset-white{
  --tw-ring-offset-color: #FFFFFF !important;
}

.u-ring-offset-black{
  --tw-ring-offset-color: #000000 !important;
}

.u-ring-offset-faded{
  --tw-ring-offset-color: #666666 !important;
}

.u-ring-offset-neutral-0{
  --tw-ring-offset-color: #FFFFFF !important;
}

.u-ring-offset-neutral-10{
  --tw-ring-offset-color: #FAFAFA !important;
}

.u-ring-offset-neutral-15{
  --tw-ring-offset-color: #F2F2F2 !important;
}

.u-ring-offset-neutral-20{
  --tw-ring-offset-color: #F7F7F7 !important;
}

.u-ring-offset-neutral-30{
  --tw-ring-offset-color: #E7E7E7 !important;
}

.u-ring-offset-neutral-40{
  --tw-ring-offset-color: #9E9E9E !important;
}

.u-ring-offset-neutral-45{
  --tw-ring-offset-color: #666666 !important;
}

.u-ring-offset-neutral-50{
  --tw-ring-offset-color: #262626 !important;
}

.u-ring-offset-neutral-60{
  --tw-ring-offset-color: #000000 !important;
}

.u-ring-offset-primary{
  --tw-ring-offset-color: var(--primary) !important;
}

.u-ring-offset-secundary{
  --tw-ring-offset-color: var(--secundary) !important;
}

.u-ring-offset-success{
  --tw-ring-offset-color: #9FC734 !important;
}

.u-ring-offset-danger{
  --tw-ring-offset-color: #FD6262 !important;
}

.u-ring-offset-transparent{
  --tw-ring-offset-color: transparent !important;
}

.focus-within\:u-ring-offset-white:focus-within{
  --tw-ring-offset-color: #FFFFFF !important;
}

.focus-within\:u-ring-offset-black:focus-within{
  --tw-ring-offset-color: #000000 !important;
}

.focus-within\:u-ring-offset-faded:focus-within{
  --tw-ring-offset-color: #666666 !important;
}

.focus-within\:u-ring-offset-neutral-0:focus-within{
  --tw-ring-offset-color: #FFFFFF !important;
}

.focus-within\:u-ring-offset-neutral-10:focus-within{
  --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
}

.focus-within\:u-ring-offset-neutral-30:focus-within{
  --tw-ring-offset-color: #E7E7E7 !important;
}

.focus-within\:u-ring-offset-neutral-40:focus-within{
  --tw-ring-offset-color: #9E9E9E !important;
}

.focus-within\:u-ring-offset-neutral-45:focus-within{
  --tw-ring-offset-color: #666666 !important;
}

.focus-within\:u-ring-offset-neutral-50:focus-within{
  --tw-ring-offset-color: #262626 !important;
}

.focus-within\:u-ring-offset-neutral-60:focus-within{
  --tw-ring-offset-color: #000000 !important;
}

.focus-within\:u-ring-offset-primary:focus-within{
  --tw-ring-offset-color: var(--primary) !important;
}

.focus-within\:u-ring-offset-secundary:focus-within{
  --tw-ring-offset-color: var(--secundary) !important;
}

.focus-within\:u-ring-offset-success:focus-within{
  --tw-ring-offset-color: #9FC734 !important;
}

.focus-within\:u-ring-offset-danger:focus-within{
  --tw-ring-offset-color: #FD6262 !important;
}

.focus-within\:u-ring-offset-transparent:focus-within{
  --tw-ring-offset-color: transparent !important;
}

.focus\:u-ring-offset-white:focus{
  --tw-ring-offset-color: #FFFFFF !important;
}

.focus\:u-ring-offset-black:focus{
  --tw-ring-offset-color: #000000 !important;
}

.focus\:u-ring-offset-faded:focus{
  --tw-ring-offset-color: #666666 !important;
}

.focus\:u-ring-offset-neutral-0:focus{
  --tw-ring-offset-color: #FFFFFF !important;
}

.focus\:u-ring-offset-neutral-10:focus{
  --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
}

.focus\:u-ring-offset-neutral-30:focus{
  --tw-ring-offset-color: #E7E7E7 !important;
}

.focus\:u-ring-offset-neutral-40:focus{
  --tw-ring-offset-color: #9E9E9E !important;
}

.focus\:u-ring-offset-neutral-45:focus{
  --tw-ring-offset-color: #666666 !important;
}

.focus\:u-ring-offset-neutral-50:focus{
  --tw-ring-offset-color: #262626 !important;
}

.focus\:u-ring-offset-neutral-60:focus{
  --tw-ring-offset-color: #000000 !important;
}

.focus\:u-ring-offset-primary:focus{
  --tw-ring-offset-color: var(--primary) !important;
}

.focus\:u-ring-offset-secundary:focus{
  --tw-ring-offset-color: var(--secundary) !important;
}

.focus\:u-ring-offset-success:focus{
  --tw-ring-offset-color: #9FC734 !important;
}

.focus\:u-ring-offset-danger:focus{
  --tw-ring-offset-color: #FD6262 !important;
}

.focus\:u-ring-offset-transparent:focus{
  --tw-ring-offset-color: transparent !important;
}

.u-filter{
  --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}

.u-filter-none{
  filter: none !important;
}

.u-blur-0{
  --tw-blur: blur(0) !important;
}

.u-blur-none{
  --tw-blur: blur(0) !important;
}

.u-blur-sm{
  --tw-blur: blur(4px) !important;
}

.u-blur{
  --tw-blur: blur(8px) !important;
}

.u-blur-md{
  --tw-blur: blur(12px) !important;
}

.u-blur-lg{
  --tw-blur: blur(16px) !important;
}

.u-blur-xl{
  --tw-blur: blur(24px) !important;
}

.u-blur-2xl{
  --tw-blur: blur(40px) !important;
}

.u-blur-3xl{
  --tw-blur: blur(64px) !important;
}

.u-brightness-0{
  --tw-brightness: brightness(0) !important;
}

.u-brightness-50{
  --tw-brightness: brightness(.5) !important;
}

.u-brightness-75{
  --tw-brightness: brightness(.75) !important;
}

.u-brightness-90{
  --tw-brightness: brightness(.9) !important;
}

.u-brightness-95{
  --tw-brightness: brightness(.95) !important;
}

.u-brightness-100{
  --tw-brightness: brightness(1) !important;
}

.u-brightness-105{
  --tw-brightness: brightness(1.05) !important;
}

.u-brightness-110{
  --tw-brightness: brightness(1.1) !important;
}

.u-brightness-125{
  --tw-brightness: brightness(1.25) !important;
}

.u-brightness-150{
  --tw-brightness: brightness(1.5) !important;
}

.u-brightness-200{
  --tw-brightness: brightness(2) !important;
}

.u-contrast-0{
  --tw-contrast: contrast(0) !important;
}

.u-contrast-50{
  --tw-contrast: contrast(.5) !important;
}

.u-contrast-75{
  --tw-contrast: contrast(.75) !important;
}

.u-contrast-100{
  --tw-contrast: contrast(1) !important;
}

.u-contrast-125{
  --tw-contrast: contrast(1.25) !important;
}

.u-contrast-150{
  --tw-contrast: contrast(1.5) !important;
}

.u-contrast-200{
  --tw-contrast: contrast(2) !important;
}

.u-drop-shadow-sm{
  --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
}

.u-drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
}

.u-drop-shadow-md{
  --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
}

.u-drop-shadow-lg{
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
}

.u-drop-shadow-xl{
  --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
}

.u-drop-shadow-2xl{
  --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
}

.u-drop-shadow-none{
  --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
}

.u-grayscale-0{
  --tw-grayscale: grayscale(0) !important;
}

.u-grayscale{
  --tw-grayscale: grayscale(100%) !important;
}

.u-hue-rotate-0{
  --tw-hue-rotate: hue-rotate(0deg) !important;
}

.u-hue-rotate-15{
  --tw-hue-rotate: hue-rotate(15deg) !important;
}

.u-hue-rotate-30{
  --tw-hue-rotate: hue-rotate(30deg) !important;
}

.u-hue-rotate-60{
  --tw-hue-rotate: hue-rotate(60deg) !important;
}

.u-hue-rotate-90{
  --tw-hue-rotate: hue-rotate(90deg) !important;
}

.u-hue-rotate-180{
  --tw-hue-rotate: hue-rotate(180deg) !important;
}

.u--hue-rotate-180{
  --tw-hue-rotate: hue-rotate(-180deg) !important;
}

.u--hue-rotate-90{
  --tw-hue-rotate: hue-rotate(-90deg) !important;
}

.u--hue-rotate-60{
  --tw-hue-rotate: hue-rotate(-60deg) !important;
}

.u--hue-rotate-30{
  --tw-hue-rotate: hue-rotate(-30deg) !important;
}

.u--hue-rotate-15{
  --tw-hue-rotate: hue-rotate(-15deg) !important;
}

.u-invert-0{
  --tw-invert: invert(0) !important;
}

.u-invert{
  --tw-invert: invert(100%) !important;
}

.u-saturate-0{
  --tw-saturate: saturate(0) !important;
}

.u-saturate-50{
  --tw-saturate: saturate(.5) !important;
}

.u-saturate-100{
  --tw-saturate: saturate(1) !important;
}

.u-saturate-150{
  --tw-saturate: saturate(1.5) !important;
}

.u-saturate-200{
  --tw-saturate: saturate(2) !important;
}

.u-sepia-0{
  --tw-sepia: sepia(0) !important;
}

.u-sepia{
  --tw-sepia: sepia(100%) !important;
}

.u-backdrop-filter{
  --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
}

.u-backdrop-filter-none{
  backdrop-filter: none !important;
}

.u-backdrop-blur-0{
  --tw-backdrop-blur: blur(0) !important;
}

.u-backdrop-blur-none{
  --tw-backdrop-blur: blur(0) !important;
}

.u-backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px) !important;
}

.u-backdrop-blur{
  --tw-backdrop-blur: blur(8px) !important;
}

.u-backdrop-blur-md{
  --tw-backdrop-blur: blur(12px) !important;
}

.u-backdrop-blur-lg{
  --tw-backdrop-blur: blur(16px) !important;
}

.u-backdrop-blur-xl{
  --tw-backdrop-blur: blur(24px) !important;
}

.u-backdrop-blur-2xl{
  --tw-backdrop-blur: blur(40px) !important;
}

.u-backdrop-blur-3xl{
  --tw-backdrop-blur: blur(64px) !important;
}

.u-backdrop-brightness-0{
  --tw-backdrop-brightness: brightness(0) !important;
}

.u-backdrop-brightness-50{
  --tw-backdrop-brightness: brightness(.5) !important;
}

.u-backdrop-brightness-75{
  --tw-backdrop-brightness: brightness(.75) !important;
}

.u-backdrop-brightness-90{
  --tw-backdrop-brightness: brightness(.9) !important;
}

.u-backdrop-brightness-95{
  --tw-backdrop-brightness: brightness(.95) !important;
}

.u-backdrop-brightness-100{
  --tw-backdrop-brightness: brightness(1) !important;
}

.u-backdrop-brightness-105{
  --tw-backdrop-brightness: brightness(1.05) !important;
}

.u-backdrop-brightness-110{
  --tw-backdrop-brightness: brightness(1.1) !important;
}

.u-backdrop-brightness-125{
  --tw-backdrop-brightness: brightness(1.25) !important;
}

.u-backdrop-brightness-150{
  --tw-backdrop-brightness: brightness(1.5) !important;
}

.u-backdrop-brightness-200{
  --tw-backdrop-brightness: brightness(2) !important;
}

.u-backdrop-contrast-0{
  --tw-backdrop-contrast: contrast(0) !important;
}

.u-backdrop-contrast-50{
  --tw-backdrop-contrast: contrast(.5) !important;
}

.u-backdrop-contrast-75{
  --tw-backdrop-contrast: contrast(.75) !important;
}

.u-backdrop-contrast-100{
  --tw-backdrop-contrast: contrast(1) !important;
}

.u-backdrop-contrast-125{
  --tw-backdrop-contrast: contrast(1.25) !important;
}

.u-backdrop-contrast-150{
  --tw-backdrop-contrast: contrast(1.5) !important;
}

.u-backdrop-contrast-200{
  --tw-backdrop-contrast: contrast(2) !important;
}

.u-backdrop-grayscale-0{
  --tw-backdrop-grayscale: grayscale(0) !important;
}

.u-backdrop-grayscale{
  --tw-backdrop-grayscale: grayscale(100%) !important;
}

.u-backdrop-hue-rotate-0{
  --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
}

.u-backdrop-hue-rotate-15{
  --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
}

.u-backdrop-hue-rotate-30{
  --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
}

.u-backdrop-hue-rotate-60{
  --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
}

.u-backdrop-hue-rotate-90{
  --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
}

.u-backdrop-hue-rotate-180{
  --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
}

.u--backdrop-hue-rotate-180{
  --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
}

.u--backdrop-hue-rotate-90{
  --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
}

.u--backdrop-hue-rotate-60{
  --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
}

.u--backdrop-hue-rotate-30{
  --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
}

.u--backdrop-hue-rotate-15{
  --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
}

.u-backdrop-invert-0{
  --tw-backdrop-invert: invert(0) !important;
}

.u-backdrop-invert{
  --tw-backdrop-invert: invert(100%) !important;
}

.u-backdrop-opacity-0{
  --tw-backdrop-opacity: opacity(0) !important;
}

.u-backdrop-opacity-5{
  --tw-backdrop-opacity: opacity(0.05) !important;
}

.u-backdrop-opacity-10{
  --tw-backdrop-opacity: opacity(0.1) !important;
}

.u-backdrop-opacity-20{
  --tw-backdrop-opacity: opacity(0.2) !important;
}

.u-backdrop-opacity-25{
  --tw-backdrop-opacity: opacity(0.25) !important;
}

.u-backdrop-opacity-30{
  --tw-backdrop-opacity: opacity(0.3) !important;
}

.u-backdrop-opacity-40{
  --tw-backdrop-opacity: opacity(0.4) !important;
}

.u-backdrop-opacity-50{
  --tw-backdrop-opacity: opacity(0.5) !important;
}

.u-backdrop-opacity-60{
  --tw-backdrop-opacity: opacity(0.6) !important;
}

.u-backdrop-opacity-70{
  --tw-backdrop-opacity: opacity(0.7) !important;
}

.u-backdrop-opacity-75{
  --tw-backdrop-opacity: opacity(0.75) !important;
}

.u-backdrop-opacity-80{
  --tw-backdrop-opacity: opacity(0.8) !important;
}

.u-backdrop-opacity-90{
  --tw-backdrop-opacity: opacity(0.9) !important;
}

.u-backdrop-opacity-95{
  --tw-backdrop-opacity: opacity(0.95) !important;
}

.u-backdrop-opacity-100{
  --tw-backdrop-opacity: opacity(1) !important;
}

.u-backdrop-saturate-0{
  --tw-backdrop-saturate: saturate(0) !important;
}

.u-backdrop-saturate-50{
  --tw-backdrop-saturate: saturate(.5) !important;
}

.u-backdrop-saturate-100{
  --tw-backdrop-saturate: saturate(1) !important;
}

.u-backdrop-saturate-150{
  --tw-backdrop-saturate: saturate(1.5) !important;
}

.u-backdrop-saturate-200{
  --tw-backdrop-saturate: saturate(2) !important;
}

.u-backdrop-sepia-0{
  --tw-backdrop-sepia: sepia(0) !important;
}

.u-backdrop-sepia{
  --tw-backdrop-sepia: sepia(100%) !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, filter, backdrop-filter !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-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;
}

.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-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;
}

/*
  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.
*/

@keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-2000px);
  }
}

/*
  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: #FAFAFA;
  --neutral-15: #F2F2F2;
  --neutral-20: #F7F7F7;
  --neutral-30: #E7E7E7;
  --neutral-40: #9E9E9E;
  --neutral-45: #666666;
  --neutral-50: #262626;
  --neutral-60: #000000;
  --primary: #FFCC00;
  --button: var(--neutral-50);
  --button_text: var(--neutral-00);
  --secundary: #E0C905;
  --color-panel: rgba(0, 0, 0, 0.7);
  --color-text: var(--neutral-00);
  --color-text-faded: var(--neutral-45);
  --body-color: var(--neutral-60);
  --body-bg-color: var(--neutral-50);
  --body-color-faded: #818181;
  --box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  --color-info: #2373A9;
  --color-success: #60a035;
  --color-warning: #ae9434;
  --color-danger: #FD6262;
}

* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

body {
  font-family: Public Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  height: 100%;
  background-color: var(--body-bg-color);
  color: var(--body-color);
  overflow-y: auto;
}

/*
  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.2em;
  margin: 0;
  margin-top: 1rem;
  font-weight: 600;
  font-family: Public Sans, sans-serif;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

h1 {
  margin-top: 1.5rem;
}

h1:first-child {
  margin-top: 0;
}

h4, h5, h6 {
  font-family: Public Sans, sans-serif;
}

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

a:hover, a:focus {
  text-decoration: underline;
}

p {
  line-height: 1.5;
  margin-top: 0.5em;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

p:first-child {
  margin-top: 0;
}

p a {
  text-decoration: underline;
}

address {
  margin-top: 0.5rem;
}

address:first-child {
  margin-top: 0;
}

::-moz-selection {
  background: var(--primary); /* WebKit/Blink Browsers */
}

::selection {
  background: var(--primary); /* 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.
*/

/*
  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-alert {
  padding: 0.5rem;
  list-style: none;
}

.c-alert:before {
  font-family: "Font Awesome 5 Pro";
  margin-right: 0.5rem;
}

.c-alert--danger {
  color: var(--color-danger);
}

.c-alert--danger:before {
  content: "\f071";
}

.c-alert--success {
  color: var(--color-success);
}

.c-alert--success:before {
  content: "\f058";
}

.c-alert--warning {
  color: var(--color-warning);
}

.c-alert--warning:before {
  content: "\f06a";
}

.c-alert--info:before {
  content: "\f05a";
  color: var(--color-info);
}

.c-alert__list {
  padding: 0;
  margin: 0;
  top: 1rem;
}

.c-btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 600;
  background: transparent;
  line-height: 1.3em;
}

.c-btn[disabled] {
  opacity: 0.7;
  cursor: default;
  color: var(--primary-10);
}

.c-btn__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.c-btn--primary {
  background: var(--button);
  color: var(--button_text);
}

.c-btn--primary > i.fal {
  color: var(--primary);
  margin-right: 0.25rem;
}

.c-btn--primary:hover, .c-btn--primary:focus {
  text-decoration: none;
  background: var(--neutral-45);
}

.c-btn--default {
  background: var(--neutral-15);
  color: var(--neutral-60);
}

.c-btn--default:hover, .c-btn--default:focus {
  text-decoration: none;
  background: var(--neutral-30);
}

.c-btn--default > i.fal {
  margin-right: 0.25rem;
}

.c-btn--icon {
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 2.5rem;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.c-btn--icon:hover, .c-btn--icon:focus {
  text-decoration: none;
  background: var(--neutral-45);
}

.c-btn--icon.c-btn--lg {
  padding: 0;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
}

.c-btn--icon.c-btn--default {
  background: var(--neutral-50);
  color: var(--neutral-00);
  border: none;
}

.c-btn--icon.c-btn--default:hover, .c-btn--icon.c-btn--default:focus {
  text-decoration: none;
  background: var(--neutral-45);
}

.c-btn--icon > i.fal {
  margin-right: 0;
}

@media (min-width: 768px) {
  .c-btn--lg {
    font-size: 1.5em;
  }
}

.c-btn--sm {
  font-size: 0.7em;
  padding: 0.5rem;
}

.c-btn:focus {
  outline: none;
}

.c-input-password {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-family: Public Sans, sans-serif;
  font-weight: 500;
  padding: 1rem 1rem;
  min-height: 2.5rem;
  padding-left: 15px;
  border: 0;
  background: transparent;
  border-bottom: 1px solid var(--neutral-00);
  color: var(--primary);
  width: 250px;
  min-width: 250px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease all;
}

.c-input-password:focus {
  outline: none;
}

.c-recorder {
  width: 100vw;
  height: 100vh;
  background-color: var(--body-bg-color);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.c-recorder__wrapper {
  width: 100%;
  max-width: 720px;
  margin: auto;
}

.c-recorder__wrapper-logo {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  margin-bottom: 3rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .c-recorder__wrapper-logo {
    position: relative;
  }
}

.c-recorder__logo {
  min-height: 56px;
  max-height: 56px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .c-recorder__logo {
    max-height: 90px;
  }
}

.c-recorder__panel {
  box-shadow: var(--box-shadow);
  background-color: var(--color-panel);
  width: 100vw;
  height: 100vh;
  color: var(--color-text);
  transition: 1s ease all;
  backdrop-filter: saturate(180%) blur(15px);
  overflow: hidden;
}

.c-recorder__panel--no-blur {
  backdrop-filter: saturate(100%) blur(0);
}

@media (min-width: 768px) {
  .c-recorder__panel {
    width: auto;
    height: auto;
    position: relative;
  }

  .c-recorder__panel:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
  }

  .c-recorder__panel > iframe, .c-recorder__panel > video, .c-recorder__panel > .video-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

  .c-recorder__panel {
    backdrop-filter: saturate(180%) blur(15px);
    border-radius: 1.5rem;
  }
}

.c-recorder__contents {
  position: absolute;
  bottom: 120px;
  left: 0;
  padding: 2rem;
  width: 100%;
  animation: fadeInUp 700ms;
  transition: 1s ease all;
  max-height: 80%;
  overflow: auto;
}

@media (min-width: 768px) {
  .c-recorder__contents {
    max-height: 100%;
    bottom: 0;
  }
}

.c-recorder__contents--top {
  top: 25%;
  bottom: auto;
}

@media (min-width: 768px) {
  .c-recorder__contents--top {
    top: 0;
    bottom: 0;
  }
}

.c-recorder__contents--blur {
  background-color: var(--color-panel);
  backdrop-filter: saturate(180%) blur(15px);
}

.c-recorder__contents.fade-enter-active, .c-recorder__contents.fade-leave-active {
  transition: 0.7s ease all;
}

.c-recorder__contents.fade-leave-to {
  opacity: 0;
  transform: translateY(6em);
}

.c-recorder__content {
  padding: 2rem;
  background-color: var(--color-panel);
}

.c-recorder__meta {
  margin-top: 2rem;
  color: var(--color-text-faded);
}

.c-recorder__video-content-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-panel);
  backdrop-filter: saturate(180%) blur(10px);
}

.c-recorder__video-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-recorder__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 700ms;
  transition: 1s ease all;
}

.c-recorder__video-wrapper.fade-enter-active, .c-recorder__video-wrapper.fade-leave-active {
  transition: 0.7s ease all;
}

.c-recorder__video-wrapper.fade-leave-to {
  opacity: 0;
  transform: translateY(6em);
}

.c-recorder__video {
  max-height: 65vh;
}

@media (min-width: 768px) {
  .c-recorder__video {
    max-height: 100%;
  }
}

.c-recorder__video-close {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  padding: 2rem;
  transform: translateX(-50%);
}

.c-recorder__video-close--left {
  transform: translateX(0);
  left: 0;
}

@media (min-width: 768px) {
  .c-recorder__video-close {
    transform: translateX(0);
    left: auto;
    right: 0;
    bottom: auto;
    text-align: right;
  }

  .c-recorder__video-close--left {
    right: auto;
    left: 0;
    bottom: 0;
  }
}

.c-recorder__recorder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-recorder__progress #stars {
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 368px 1035px var(--primary) , 955px 905px var(--primary) , 1510px 451px var(--primary) , 5px 464px var(--primary) , 1716px 1276px var(--primary) , 230px 1756px var(--primary) , 1705px 1356px var(--primary) , 1751px 691px var(--primary) , 1438px 1130px var(--primary) , 1026px 590px var(--primary) , 1989px 508px var(--primary) , 1765px 1072px var(--primary) , 579px 1311px var(--primary) , 709px 1212px var(--primary) , 1633px 930px var(--primary) , 309px 865px var(--primary) , 1573px 1755px var(--primary) , 1596px 504px var(--primary) , 1043px 1555px var(--primary) , 45px 1284px var(--primary) , 1813px 549px var(--primary) , 137px 738px var(--primary) , 560px 806px var(--primary) , 375px 1787px var(--primary) , 531px 975px var(--primary) , 1448px 698px var(--primary) , 430px 1030px var(--primary) , 1047px 1318px var(--primary) , 1588px 932px var(--primary) , 1593px 1411px var(--primary) , 953px 227px var(--primary) , 1981px 724px var(--primary) , 555px 1505px var(--primary) , 1754px 1725px var(--primary) , 1431px 94px var(--primary) , 155px 923px var(--primary) , 952px 375px var(--primary) , 1552px 632px var(--primary) , 1497px 969px var(--primary) , 1210px 862px var(--primary) , 1094px 1885px var(--primary) , 527px 736px var(--primary) , 1607px 1265px var(--primary) , 955px 311px var(--primary) , 152px 378px var(--primary) , 1709px 993px var(--primary) , 1907px 612px var(--primary) , 1155px 90px var(--primary) , 248px 757px var(--primary) , 270px 1617px var(--primary) , 1785px 1659px var(--primary) , 1119px 852px var(--primary) , 1889px 304px var(--primary) , 1486px 237px var(--primary) , 830px 170px var(--primary) , 309px 59px var(--primary) , 1490px 1291px var(--primary) , 693px 337px var(--primary) , 1256px 775px var(--primary) , 202px 1399px var(--primary) , 761px 1384px var(--primary) , 1082px 1742px var(--primary) , 509px 647px var(--primary) , 1842px 836px var(--primary) , 70px 1937px var(--primary) , 1326px 1643px var(--primary) , 138px 197px var(--primary) , 1853px 131px var(--primary) , 171px 432px var(--primary) , 1251px 736px var(--primary) , 469px 1929px var(--primary) , 1841px 1433px var(--primary) , 1371px 371px var(--primary) , 1826px 1638px var(--primary) , 476px 1553px var(--primary) , 1807px 1495px var(--primary) , 259px 675px var(--primary) , 1275px 1596px var(--primary) , 1459px 923px var(--primary) , 1460px 1278px var(--primary) , 1833px 271px var(--primary) , 996px 276px var(--primary) , 504px 1319px var(--primary) , 312px 1437px var(--primary) , 1258px 1460px var(--primary) , 397px 1487px var(--primary) , 1725px 1679px var(--primary) , 1250px 844px var(--primary) , 1575px 1628px var(--primary) , 1722px 817px var(--primary) , 1980px 1110px var(--primary) , 622px 1494px var(--primary) , 1767px 1336px var(--primary) , 1830px 1673px var(--primary) , 940px 148px var(--primary) , 1983px 1653px var(--primary) , 1983px 699px var(--primary) , 1074px 2px var(--primary) , 1208px 311px var(--primary) , 1994px 816px var(--primary) , 928px 666px var(--primary) , 1298px 1996px var(--primary) , 600px 1867px var(--primary) , 285px 314px var(--primary) , 663px 630px var(--primary) , 1601px 1052px var(--primary) , 1340px 1806px var(--primary) , 839px 1352px var(--primary) , 1030px 1887px var(--primary) , 962px 646px var(--primary) , 306px 1289px var(--primary) , 1656px 1398px var(--primary) , 495px 886px var(--primary) , 1248px 1954px var(--primary) , 698px 1811px var(--primary) , 1110px 291px var(--primary) , 898px 1763px var(--primary) , 632px 1913px var(--primary) , 496px 672px var(--primary) , 1295px 502px var(--primary) , 158px 1280px var(--primary) , 110px 725px var(--primary) , 669px 1177px var(--primary) , 954px 1385px var(--primary) , 1121px 1116px var(--primary) , 201px 566px var(--primary) , 477px 1602px var(--primary) , 1px 1810px var(--primary) , 117px 210px var(--primary) , 1527px 749px var(--primary) , 449px 674px var(--primary) , 1214px 350px var(--primary) , 1110px 1786px var(--primary) , 1332px 1351px var(--primary) , 1786px 406px var(--primary) , 1973px 824px var(--primary) , 1188px 422px var(--primary) , 713px 348px var(--primary) , 1158px 410px var(--primary) , 1226px 1798px var(--primary) , 677px 679px var(--primary) , 867px 568px var(--primary) , 1128px 21px var(--primary) , 1518px 818px var(--primary) , 1496px 1831px var(--primary) , 1678px 994px var(--primary) , 826px 32px var(--primary) , 593px 360px var(--primary) , 1952px 1079px var(--primary) , 986px 1294px var(--primary) , 1070px 1031px var(--primary) , 589px 1590px var(--primary) , 916px 864px var(--primary) , 519px 1131px var(--primary) , 740px 694px var(--primary) , 1616px 1731px var(--primary) , 737px 1862px var(--primary) , 9px 624px var(--primary) , 1757px 492px var(--primary) , 893px 998px var(--primary) , 760px 1148px var(--primary) , 445px 503px var(--primary) , 740px 822px var(--primary) , 908px 606px var(--primary) , 1145px 982px var(--primary) , 1926px 259px var(--primary) , 279px 1446px var(--primary) , 1578px 860px var(--primary) , 1233px 1172px var(--primary) , 764px 1779px var(--primary) , 1120px 1786px var(--primary) , 1857px 1533px var(--primary) , 1225px 396px var(--primary) , 215px 144px var(--primary) , 1631px 576px var(--primary) , 1720px 1705px var(--primary) , 895px 754px var(--primary) , 1273px 1195px var(--primary) , 1930px 903px var(--primary) , 1717px 1464px var(--primary) , 1066px 1934px var(--primary) , 810px 182px var(--primary) , 126px 1159px var(--primary) , 1719px 315px var(--primary) , 876px 1432px var(--primary) , 1587px 1681px var(--primary) , 1186px 1989px var(--primary) , 1413px 222px var(--primary) , 1585px 1184px var(--primary) , 229px 1084px var(--primary) , 1616px 1230px var(--primary) , 1873px 1953px var(--primary) , 1759px 1349px var(--primary) , 1109px 1602px var(--primary) , 1663px 1473px var(--primary) , 1272px 771px var(--primary) , 1071px 1758px var(--primary) , 1746px 181px var(--primary) , 1717px 80px var(--primary) , 57px 782px var(--primary) , 1882px 1346px var(--primary) , 66px 1743px var(--primary) , 218px 1157px var(--primary) , 1620px 548px var(--primary) , 1830px 1656px var(--primary) , 1393px 1537px var(--primary) , 520px 197px var(--primary) , 195px 581px var(--primary) , 1904px 1748px var(--primary) , 1097px 933px var(--primary) , 352px 829px var(--primary) , 1376px 778px var(--primary) , 512px 52px var(--primary) , 1323px 1850px var(--primary) , 1617px 782px var(--primary) , 722px 1039px var(--primary) , 722px 823px var(--primary) , 805px 769px var(--primary) , 1773px 1315px var(--primary) , 540px 1631px var(--primary) , 1103px 1037px var(--primary) , 1659px 637px var(--primary) , 64px 1048px var(--primary) , 55px 1587px var(--primary) , 1221px 1197px var(--primary) , 1233px 1483px var(--primary) , 1947px 1857px var(--primary) , 1101px 976px var(--primary) , 78px 604px var(--primary) , 1073px 1553px var(--primary) , 177px 175px var(--primary) , 1041px 769px var(--primary) , 423px 508px var(--primary) , 41px 66px var(--primary) , 1748px 918px var(--primary) , 1662px 1753px var(--primary) , 194px 1963px var(--primary) , 1003px 1259px var(--primary) , 397px 768px var(--primary) , 1px 354px var(--primary) , 1362px 919px var(--primary) , 198px 1279px var(--primary) , 1399px 1129px var(--primary) , 1115px 1552px var(--primary) , 1486px 1649px var(--primary) , 282px 312px var(--primary) , 1710px 1282px var(--primary) , 779px 1317px var(--primary) , 154px 1760px var(--primary) , 1904px 698px var(--primary) , 658px 214px var(--primary) , 46px 385px var(--primary) , 1858px 433px var(--primary) , 1798px 340px var(--primary) , 454px 1714px var(--primary) , 231px 1543px var(--primary) , 343px 111px var(--primary) , 408px 1561px var(--primary) , 618px 1186px var(--primary) , 45px 1783px var(--primary) , 229px 1554px var(--primary) , 397px 1376px var(--primary) , 577px 1518px var(--primary) , 1042px 705px var(--primary) , 926px 247px var(--primary) , 769px 840px var(--primary) , 998px 194px var(--primary) , 1263px 133px var(--primary) , 30px 347px var(--primary) , 1783px 198px var(--primary) , 178px 158px var(--primary) , 668px 404px var(--primary) , 1503px 702px var(--primary) , 1237px 1462px var(--primary) , 1811px 481px var(--primary) , 918px 480px var(--primary) , 1275px 56px var(--primary) , 752px 1335px var(--primary) , 602px 674px var(--primary) , 1654px 550px var(--primary) , 865px 955px var(--primary) , 1370px 1573px var(--primary) , 1781px 421px var(--primary) , 1279px 209px var(--primary) , 519px 462px var(--primary) , 811px 1069px var(--primary) , 511px 327px var(--primary) , 1568px 1888px var(--primary) , 446px 1292px var(--primary) , 1347px 985px var(--primary) , 1574px 240px var(--primary) , 1219px 1151px var(--primary) , 1479px 1153px var(--primary) , 1786px 1035px var(--primary) , 782px 1704px var(--primary) , 1330px 1356px var(--primary) , 1420px 1373px var(--primary) , 1631px 389px var(--primary) , 941px 198px var(--primary) , 938px 453px var(--primary) , 496px 134px var(--primary) , 111px 6px var(--primary) , 1189px 1455px var(--primary) , 1408px 1602px var(--primary) , 1713px 1195px var(--primary) , 153px 653px var(--primary) , 1389px 1311px var(--primary) , 1402px 773px var(--primary) , 657px 1279px var(--primary) , 1390px 470px var(--primary) , 101px 184px var(--primary) , 394px 1426px var(--primary) , 1772px 1278px var(--primary) , 1625px 618px var(--primary) , 1940px 117px var(--primary) , 1300px 175px var(--primary) , 1436px 1102px var(--primary) , 1810px 26px var(--primary) , 1308px 247px var(--primary) , 1178px 1394px var(--primary) , 794px 1224px var(--primary) , 1939px 463px var(--primary) , 196px 132px var(--primary) , 1683px 1248px var(--primary) , 725px 226px var(--primary) , 89px 535px var(--primary) , 260px 163px var(--primary) , 633px 756px var(--primary) , 623px 1438px var(--primary) , 16px 1394px var(--primary) , 1612px 1032px var(--primary) , 489px 1206px var(--primary) , 1281px 1091px var(--primary) , 1624px 1297px var(--primary) , 1818px 1555px var(--primary) , 811px 1432px var(--primary) , 796px 1742px var(--primary) , 364px 539px var(--primary) , 954px 1259px var(--primary) , 1454px 1072px var(--primary) , 1155px 1993px var(--primary) , 151px 1759px var(--primary) , 1593px 1072px var(--primary) , 4px 491px var(--primary) , 1520px 338px var(--primary) , 501px 1329px var(--primary) , 448px 1149px var(--primary) , 1239px 1855px var(--primary) , 382px 1466px var(--primary) , 1791px 1285px var(--primary) , 1451px 260px var(--primary) , 1120px 343px var(--primary) , 1676px 1725px var(--primary) , 154px 728px var(--primary) , 1935px 326px var(--primary) , 1600px 471px var(--primary) , 146px 971px var(--primary) , 416px 1744px var(--primary) , 145px 1866px var(--primary) , 439px 1010px var(--primary) , 439px 186px var(--primary) , 1206px 1453px var(--primary) , 1182px 1452px var(--primary) , 1334px 821px var(--primary) , 1216px 703px var(--primary) , 24px 557px var(--primary) , 705px 134px var(--primary) , 528px 1945px var(--primary) , 1916px 1415px var(--primary) , 1792px 465px var(--primary) , 1374px 358px var(--primary) , 117px 182px var(--primary) , 1247px 1465px var(--primary) , 1770px 403px var(--primary) , 810px 1922px var(--primary) , 1846px 1014px var(--primary) , 1907px 946px var(--primary) , 281px 341px var(--primary) , 992px 114px var(--primary) , 113px 1832px var(--primary) , 1110px 1775px var(--primary) , 1162px 1255px var(--primary) , 1693px 1306px var(--primary) , 1741px 1902px var(--primary) , 330px 166px var(--primary) , 671px 1242px var(--primary) , 1550px 1345px var(--primary) , 991px 1665px var(--primary) , 1722px 1359px var(--primary) , 745px 1296px var(--primary) , 1936px 353px var(--primary) , 730px 742px var(--primary) , 1322px 717px var(--primary) , 164px 1810px var(--primary) , 1429px 1609px var(--primary) , 139px 1151px var(--primary) , 370px 282px var(--primary) , 1677px 1565px var(--primary) , 1235px 1018px var(--primary) , 1233px 1687px var(--primary) , 755px 244px var(--primary) , 328px 630px var(--primary) , 89px 1948px var(--primary) , 1054px 273px var(--primary) , 254px 94px var(--primary) , 915px 4px var(--primary) , 1938px 1296px var(--primary) , 619px 230px var(--primary) , 939px 1666px var(--primary) , 1254px 1861px var(--primary) , 1006px 248px var(--primary) , 666px 800px var(--primary) , 104px 1587px var(--primary) , 1084px 1398px var(--primary) , 571px 1390px var(--primary) , 84px 923px var(--primary) , 1283px 1486px var(--primary) , 1937px 1585px var(--primary) , 133px 695px var(--primary) , 130px 856px var(--primary) , 1256px 396px var(--primary) , 44px 833px var(--primary) , 810px 1661px var(--primary) , 1829px 1060px var(--primary) , 1311px 839px var(--primary) , 850px 111px var(--primary) , 666px 1011px var(--primary) , 194px 1742px var(--primary) , 1099px 1193px var(--primary) , 1611px 662px var(--primary) , 350px 1286px var(--primary) , 1235px 1706px var(--primary) , 1985px 1817px var(--primary) , 1794px 1189px var(--primary) , 204px 1646px var(--primary) , 661px 677px var(--primary) , 1523px 1549px var(--primary) , 1355px 1694px var(--primary) , 1394px 1865px var(--primary) , 1798px 1956px var(--primary) , 1419px 59px var(--primary) , 975px 1918px var(--primary) , 1215px 226px var(--primary) , 444px 647px var(--primary) , 766px 1305px var(--primary) , 183px 1921px var(--primary) , 1218px 1644px var(--primary) , 1541px 150px var(--primary) , 1384px 1326px var(--primary) , 669px 840px var(--primary) , 213px 1282px var(--primary) , 1403px 1871px var(--primary) , 1791px 860px var(--primary) , 1649px 658px var(--primary) , 232px 946px var(--primary) , 140px 828px var(--primary) , 1649px 1734px var(--primary) , 1567px 1197px var(--primary) , 820px 647px var(--primary) , 656px 976px var(--primary) , 144px 122px var(--primary) , 1706px 1167px var(--primary) , 981px 1518px var(--primary) , 1868px 1853px var(--primary) , 178px 240px var(--primary) , 799px 950px var(--primary) , 1497px 275px var(--primary) , 891px 1722px var(--primary) , 577px 629px var(--primary) , 1178px 1083px var(--primary) , 313px 66px var(--primary) , 1967px 185px var(--primary) , 1336px 4px var(--primary) , 616px 1655px var(--primary) , 902px 138px var(--primary) , 301px 784px var(--primary) , 1264px 744px var(--primary) , 1865px 901px var(--primary) , 743px 1423px var(--primary) , 34px 1276px var(--primary) , 532px 773px var(--primary) , 753px 1839px var(--primary) , 905px 1935px var(--primary) , 1119px 860px var(--primary) , 995px 1541px var(--primary) , 1090px 412px var(--primary) , 186px 8px var(--primary) , 1005px 161px var(--primary) , 1582px 1346px var(--primary) , 244px 498px var(--primary) , 1409px 546px var(--primary) , 470px 1582px var(--primary) , 1645px 245px var(--primary) , 1546px 1820px var(--primary) , 1608px 894px var(--primary) , 580px 521px var(--primary) , 218px 1915px var(--primary) , 1827px 1207px var(--primary) , 1718px 1722px var(--primary) , 1872px 1828px var(--primary) , 1092px 1521px var(--primary) , 395px 290px var(--primary) , 54px 1202px var(--primary) , 1307px 121px var(--primary) , 1587px 118px var(--primary) , 1861px 905px var(--primary) , 1748px 1305px var(--primary) , 899px 161px var(--primary) , 1863px 489px var(--primary) , 415px 279px var(--primary) , 985px 1541px var(--primary) , 97px 1806px var(--primary) , 517px 1094px var(--primary) , 837px 888px var(--primary) , 1728px 184px var(--primary) , 522px 558px var(--primary) , 194px 362px var(--primary) , 573px 789px var(--primary) , 469px 305px var(--primary) , 560px 1125px var(--primary) , 1050px 1995px var(--primary) , 67px 1812px var(--primary) , 1358px 1343px var(--primary) , 1796px 1321px var(--primary) , 1817px 1060px var(--primary) , 1843px 626px var(--primary) , 1283px 838px var(--primary) , 1500px 315px var(--primary) , 1830px 1709px var(--primary) , 902px 81px var(--primary) , 1260px 338px var(--primary) , 1123px 177px var(--primary) , 42px 1251px var(--primary) , 1958px 1769px var(--primary) , 984px 734px var(--primary) , 159px 1262px var(--primary) , 647px 304px var(--primary) , 683px 1019px var(--primary) , 296px 205px var(--primary) , 1526px 1133px var(--primary) , 406px 922px var(--primary) , 1491px 1091px var(--primary) , 213px 924px var(--primary) , 1790px 674px var(--primary) , 841px 999px var(--primary) , 1235px 1389px var(--primary) , 1658px 422px var(--primary) , 417px 311px var(--primary) , 837px 1189px var(--primary) , 34px 1283px var(--primary) , 1312px 885px var(--primary) , 239px 1750px var(--primary) , 455px 518px var(--primary) , 1276px 1664px var(--primary) , 1519px 560px var(--primary) , 1352px 1953px var(--primary) , 1354px 1738px var(--primary) , 496px 622px var(--primary) , 1303px 190px var(--primary) , 788px 463px var(--primary) , 484px 492px var(--primary) , 1159px 801px var(--primary) , 971px 1030px var(--primary) , 1333px 1951px var(--primary) , 1918px 2px var(--primary) , 9px 106px var(--primary) , 605px 1592px var(--primary) , 1726px 551px var(--primary) , 167px 1730px var(--primary) , 1567px 1490px var(--primary) , 1590px 1120px var(--primary) , 1375px 394px var(--primary) , 1607px 401px var(--primary) , 217px 780px var(--primary) , 1520px 318px var(--primary) , 686px 1629px var(--primary) , 1014px 482px var(--primary) , 415px 1460px var(--primary) , 858px 683px var(--primary) , 817px 1633px var(--primary) , 620px 936px var(--primary) , 1339px 794px var(--primary) , 581px 1931px var(--primary) , 1557px 956px var(--primary) , 1185px 968px var(--primary) , 1960px 1885px var(--primary) , 1439px 933px var(--primary) , 1379px 63px var(--primary) , 613px 1645px var(--primary) , 305px 1060px var(--primary) , 617px 1339px var(--primary) , 51px 395px var(--primary) , 1207px 833px var(--primary) , 901px 904px var(--primary) , 1448px 54px var(--primary) , 1624px 1789px var(--primary) , 1745px 77px var(--primary) , 1507px 139px var(--primary) , 490px 1936px var(--primary) , 1565px 531px var(--primary) , 361px 219px var(--primary) , 809px 1245px var(--primary) , 1961px 514px var(--primary) , 534px 1983px var(--primary) , 1676px 1454px var(--primary) , 1116px 743px var(--primary) , 1325px 1398px var(--primary) , 166px 1811px var(--primary) , 1511px 1214px var(--primary) , 243px 725px var(--primary) , 1484px 1578px var(--primary) , 1197px 808px var(--primary) , 1763px 56px var(--primary) , 1681px 1164px var(--primary) , 1919px 696px var(--primary) , 1709px 905px var(--primary) , 1019px 87px var(--primary) , 1712px 1921px var(--primary) , 1890px 903px var(--primary) , 1363px 1685px var(--primary) , 33px 622px var(--primary) , 577px 917px var(--primary) , 1589px 1863px var(--primary) , 940px 1260px var(--primary) , 286px 1207px var(--primary) , 221px 1734px var(--primary) , 94px 354px var(--primary) , 1182px 1953px var(--primary) , 843px 1834px var(--primary) , 1510px 1846px var(--primary) , 317px 479px var(--primary) , 354px 1469px var(--primary) , 1832px 1375px var(--primary) , 1399px 1520px var(--primary) , 1293px 1699px var(--primary) , 1586px 674px var(--primary) , 910px 221px var(--primary) , 958px 1188px var(--primary) , 1068px 197px var(--primary) , 1715px 1023px var(--primary) , 1298px 1206px var(--primary) , 657px 1104px var(--primary) , 1554px 548px var(--primary) , 1753px 742px var(--primary) , 1307px 1944px var(--primary) , 1175px 1243px var(--primary) , 1348px 219px var(--primary) , 206px 944px var(--primary) , 1304px 1598px var(--primary) , 252px 1847px var(--primary) , 1964px 76px var(--primary) , 1845px 1120px var(--primary) , 1250px 474px var(--primary) , 1597px 1850px var(--primary) , 1427px 753px var(--primary) , 1221px 1747px var(--primary) , 871px 1107px var(--primary) , 462px 1946px var(--primary) , 918px 1822px var(--primary) , 329px 1249px var(--primary) , 1743px 844px var(--primary) , 593px 664px var(--primary) , 14px 591px var(--primary) , 1016px 1947px var(--primary) , 982px 27px var(--primary) , 1997px 1808px var(--primary) , 258px 1597px var(--primary) , 1636px 337px var(--primary) , 565px 922px var(--primary) , 1118px 468px var(--primary) , 1764px 288px var(--primary) , 1738px 1038px var(--primary) , 715px 1568px var(--primary) , 1538px 323px var(--primary) , 123px 1255px var(--primary) , 139px 1865px var(--primary) , 1067px 1411px var(--primary) , 229px 510px var(--primary) , 1228px 815px var(--primary) , 1549px 1109px var(--primary) , 1985px 470px var(--primary) , 1564px 1289px var(--primary) , 920px 1092px var(--primary) , 518px 1622px var(--primary) , 244px 474px var(--primary) , 821px 295px var(--primary) , 236px 1394px var(--primary) , 605px 1038px var(--primary) , 406px 1047px var(--primary) , 120px 392px var(--primary) , 1558px 954px var(--primary) , 1353px 1052px var(--primary) , 1387px 1671px var(--primary) , 620px 1644px var(--primary) , 685px 1904px var(--primary) , 274px 684px var(--primary) , 1086px 123px var(--primary) , 1564px 1544px var(--primary) , 1549px 1593px var(--primary) , 136px 1757px var(--primary);
  animation: animStar 5s linear infinite;
}

.c-recorder__progress #stars:after {
  content: " ";
  position: absolute;
  top: 2000px;
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 368px 1035px var(--primary) , 955px 905px var(--primary) , 1510px 451px var(--primary) , 5px 464px var(--primary) , 1716px 1276px var(--primary) , 230px 1756px var(--primary) , 1705px 1356px var(--primary) , 1751px 691px var(--primary) , 1438px 1130px var(--primary) , 1026px 590px var(--primary) , 1989px 508px var(--primary) , 1765px 1072px var(--primary) , 579px 1311px var(--primary) , 709px 1212px var(--primary) , 1633px 930px var(--primary) , 309px 865px var(--primary) , 1573px 1755px var(--primary) , 1596px 504px var(--primary) , 1043px 1555px var(--primary) , 45px 1284px var(--primary) , 1813px 549px var(--primary) , 137px 738px var(--primary) , 560px 806px var(--primary) , 375px 1787px var(--primary) , 531px 975px var(--primary) , 1448px 698px var(--primary) , 430px 1030px var(--primary) , 1047px 1318px var(--primary) , 1588px 932px var(--primary) , 1593px 1411px var(--primary) , 953px 227px var(--primary) , 1981px 724px var(--primary) , 555px 1505px var(--primary) , 1754px 1725px var(--primary) , 1431px 94px var(--primary) , 155px 923px var(--primary) , 952px 375px var(--primary) , 1552px 632px var(--primary) , 1497px 969px var(--primary) , 1210px 862px var(--primary) , 1094px 1885px var(--primary) , 527px 736px var(--primary) , 1607px 1265px var(--primary) , 955px 311px var(--primary) , 152px 378px var(--primary) , 1709px 993px var(--primary) , 1907px 612px var(--primary) , 1155px 90px var(--primary) , 248px 757px var(--primary) , 270px 1617px var(--primary) , 1785px 1659px var(--primary) , 1119px 852px var(--primary) , 1889px 304px var(--primary) , 1486px 237px var(--primary) , 830px 170px var(--primary) , 309px 59px var(--primary) , 1490px 1291px var(--primary) , 693px 337px var(--primary) , 1256px 775px var(--primary) , 202px 1399px var(--primary) , 761px 1384px var(--primary) , 1082px 1742px var(--primary) , 509px 647px var(--primary) , 1842px 836px var(--primary) , 70px 1937px var(--primary) , 1326px 1643px var(--primary) , 138px 197px var(--primary) , 1853px 131px var(--primary) , 171px 432px var(--primary) , 1251px 736px var(--primary) , 469px 1929px var(--primary) , 1841px 1433px var(--primary) , 1371px 371px var(--primary) , 1826px 1638px var(--primary) , 476px 1553px var(--primary) , 1807px 1495px var(--primary) , 259px 675px var(--primary) , 1275px 1596px var(--primary) , 1459px 923px var(--primary) , 1460px 1278px var(--primary) , 1833px 271px var(--primary) , 996px 276px var(--primary) , 504px 1319px var(--primary) , 312px 1437px var(--primary) , 1258px 1460px var(--primary) , 397px 1487px var(--primary) , 1725px 1679px var(--primary) , 1250px 844px var(--primary) , 1575px 1628px var(--primary) , 1722px 817px var(--primary) , 1980px 1110px var(--primary) , 622px 1494px var(--primary) , 1767px 1336px var(--primary) , 1830px 1673px var(--primary) , 940px 148px var(--primary) , 1983px 1653px var(--primary) , 1983px 699px var(--primary) , 1074px 2px var(--primary) , 1208px 311px var(--primary) , 1994px 816px var(--primary) , 928px 666px var(--primary) , 1298px 1996px var(--primary) , 600px 1867px var(--primary) , 285px 314px var(--primary) , 663px 630px var(--primary) , 1601px 1052px var(--primary) , 1340px 1806px var(--primary) , 839px 1352px var(--primary) , 1030px 1887px var(--primary) , 962px 646px var(--primary) , 306px 1289px var(--primary) , 1656px 1398px var(--primary) , 495px 886px var(--primary) , 1248px 1954px var(--primary) , 698px 1811px var(--primary) , 1110px 291px var(--primary) , 898px 1763px var(--primary) , 632px 1913px var(--primary) , 496px 672px var(--primary) , 1295px 502px var(--primary) , 158px 1280px var(--primary) , 110px 725px var(--primary) , 669px 1177px var(--primary) , 954px 1385px var(--primary) , 1121px 1116px var(--primary) , 201px 566px var(--primary) , 477px 1602px var(--primary) , 1px 1810px var(--primary) , 117px 210px var(--primary) , 1527px 749px var(--primary) , 449px 674px var(--primary) , 1214px 350px var(--primary) , 1110px 1786px var(--primary) , 1332px 1351px var(--primary) , 1786px 406px var(--primary) , 1973px 824px var(--primary) , 1188px 422px var(--primary) , 713px 348px var(--primary) , 1158px 410px var(--primary) , 1226px 1798px var(--primary) , 677px 679px var(--primary) , 867px 568px var(--primary) , 1128px 21px var(--primary) , 1518px 818px var(--primary) , 1496px 1831px var(--primary) , 1678px 994px var(--primary) , 826px 32px var(--primary) , 593px 360px var(--primary) , 1952px 1079px var(--primary) , 986px 1294px var(--primary) , 1070px 1031px var(--primary) , 589px 1590px var(--primary) , 916px 864px var(--primary) , 519px 1131px var(--primary) , 740px 694px var(--primary) , 1616px 1731px var(--primary) , 737px 1862px var(--primary) , 9px 624px var(--primary) , 1757px 492px var(--primary) , 893px 998px var(--primary) , 760px 1148px var(--primary) , 445px 503px var(--primary) , 740px 822px var(--primary) , 908px 606px var(--primary) , 1145px 982px var(--primary) , 1926px 259px var(--primary) , 279px 1446px var(--primary) , 1578px 860px var(--primary) , 1233px 1172px var(--primary) , 764px 1779px var(--primary) , 1120px 1786px var(--primary) , 1857px 1533px var(--primary) , 1225px 396px var(--primary) , 215px 144px var(--primary) , 1631px 576px var(--primary) , 1720px 1705px var(--primary) , 895px 754px var(--primary) , 1273px 1195px var(--primary) , 1930px 903px var(--primary) , 1717px 1464px var(--primary) , 1066px 1934px var(--primary) , 810px 182px var(--primary) , 126px 1159px var(--primary) , 1719px 315px var(--primary) , 876px 1432px var(--primary) , 1587px 1681px var(--primary) , 1186px 1989px var(--primary) , 1413px 222px var(--primary) , 1585px 1184px var(--primary) , 229px 1084px var(--primary) , 1616px 1230px var(--primary) , 1873px 1953px var(--primary) , 1759px 1349px var(--primary) , 1109px 1602px var(--primary) , 1663px 1473px var(--primary) , 1272px 771px var(--primary) , 1071px 1758px var(--primary) , 1746px 181px var(--primary) , 1717px 80px var(--primary) , 57px 782px var(--primary) , 1882px 1346px var(--primary) , 66px 1743px var(--primary) , 218px 1157px var(--primary) , 1620px 548px var(--primary) , 1830px 1656px var(--primary) , 1393px 1537px var(--primary) , 520px 197px var(--primary) , 195px 581px var(--primary) , 1904px 1748px var(--primary) , 1097px 933px var(--primary) , 352px 829px var(--primary) , 1376px 778px var(--primary) , 512px 52px var(--primary) , 1323px 1850px var(--primary) , 1617px 782px var(--primary) , 722px 1039px var(--primary) , 722px 823px var(--primary) , 805px 769px var(--primary) , 1773px 1315px var(--primary) , 540px 1631px var(--primary) , 1103px 1037px var(--primary) , 1659px 637px var(--primary) , 64px 1048px var(--primary) , 55px 1587px var(--primary) , 1221px 1197px var(--primary) , 1233px 1483px var(--primary) , 1947px 1857px var(--primary) , 1101px 976px var(--primary) , 78px 604px var(--primary) , 1073px 1553px var(--primary) , 177px 175px var(--primary) , 1041px 769px var(--primary) , 423px 508px var(--primary) , 41px 66px var(--primary) , 1748px 918px var(--primary) , 1662px 1753px var(--primary) , 194px 1963px var(--primary) , 1003px 1259px var(--primary) , 397px 768px var(--primary) , 1px 354px var(--primary) , 1362px 919px var(--primary) , 198px 1279px var(--primary) , 1399px 1129px var(--primary) , 1115px 1552px var(--primary) , 1486px 1649px var(--primary) , 282px 312px var(--primary) , 1710px 1282px var(--primary) , 779px 1317px var(--primary) , 154px 1760px var(--primary) , 1904px 698px var(--primary) , 658px 214px var(--primary) , 46px 385px var(--primary) , 1858px 433px var(--primary) , 1798px 340px var(--primary) , 454px 1714px var(--primary) , 231px 1543px var(--primary) , 343px 111px var(--primary) , 408px 1561px var(--primary) , 618px 1186px var(--primary) , 45px 1783px var(--primary) , 229px 1554px var(--primary) , 397px 1376px var(--primary) , 577px 1518px var(--primary) , 1042px 705px var(--primary) , 926px 247px var(--primary) , 769px 840px var(--primary) , 998px 194px var(--primary) , 1263px 133px var(--primary) , 30px 347px var(--primary) , 1783px 198px var(--primary) , 178px 158px var(--primary) , 668px 404px var(--primary) , 1503px 702px var(--primary) , 1237px 1462px var(--primary) , 1811px 481px var(--primary) , 918px 480px var(--primary) , 1275px 56px var(--primary) , 752px 1335px var(--primary) , 602px 674px var(--primary) , 1654px 550px var(--primary) , 865px 955px var(--primary) , 1370px 1573px var(--primary) , 1781px 421px var(--primary) , 1279px 209px var(--primary) , 519px 462px var(--primary) , 811px 1069px var(--primary) , 511px 327px var(--primary) , 1568px 1888px var(--primary) , 446px 1292px var(--primary) , 1347px 985px var(--primary) , 1574px 240px var(--primary) , 1219px 1151px var(--primary) , 1479px 1153px var(--primary) , 1786px 1035px var(--primary) , 782px 1704px var(--primary) , 1330px 1356px var(--primary) , 1420px 1373px var(--primary) , 1631px 389px var(--primary) , 941px 198px var(--primary) , 938px 453px var(--primary) , 496px 134px var(--primary) , 111px 6px var(--primary) , 1189px 1455px var(--primary) , 1408px 1602px var(--primary) , 1713px 1195px var(--primary) , 153px 653px var(--primary) , 1389px 1311px var(--primary) , 1402px 773px var(--primary) , 657px 1279px var(--primary) , 1390px 470px var(--primary) , 101px 184px var(--primary) , 394px 1426px var(--primary) , 1772px 1278px var(--primary) , 1625px 618px var(--primary) , 1940px 117px var(--primary) , 1300px 175px var(--primary) , 1436px 1102px var(--primary) , 1810px 26px var(--primary) , 1308px 247px var(--primary) , 1178px 1394px var(--primary) , 794px 1224px var(--primary) , 1939px 463px var(--primary) , 196px 132px var(--primary) , 1683px 1248px var(--primary) , 725px 226px var(--primary) , 89px 535px var(--primary) , 260px 163px var(--primary) , 633px 756px var(--primary) , 623px 1438px var(--primary) , 16px 1394px var(--primary) , 1612px 1032px var(--primary) , 489px 1206px var(--primary) , 1281px 1091px var(--primary) , 1624px 1297px var(--primary) , 1818px 1555px var(--primary) , 811px 1432px var(--primary) , 796px 1742px var(--primary) , 364px 539px var(--primary) , 954px 1259px var(--primary) , 1454px 1072px var(--primary) , 1155px 1993px var(--primary) , 151px 1759px var(--primary) , 1593px 1072px var(--primary) , 4px 491px var(--primary) , 1520px 338px var(--primary) , 501px 1329px var(--primary) , 448px 1149px var(--primary) , 1239px 1855px var(--primary) , 382px 1466px var(--primary) , 1791px 1285px var(--primary) , 1451px 260px var(--primary) , 1120px 343px var(--primary) , 1676px 1725px var(--primary) , 154px 728px var(--primary) , 1935px 326px var(--primary) , 1600px 471px var(--primary) , 146px 971px var(--primary) , 416px 1744px var(--primary) , 145px 1866px var(--primary) , 439px 1010px var(--primary) , 439px 186px var(--primary) , 1206px 1453px var(--primary) , 1182px 1452px var(--primary) , 1334px 821px var(--primary) , 1216px 703px var(--primary) , 24px 557px var(--primary) , 705px 134px var(--primary) , 528px 1945px var(--primary) , 1916px 1415px var(--primary) , 1792px 465px var(--primary) , 1374px 358px var(--primary) , 117px 182px var(--primary) , 1247px 1465px var(--primary) , 1770px 403px var(--primary) , 810px 1922px var(--primary) , 1846px 1014px var(--primary) , 1907px 946px var(--primary) , 281px 341px var(--primary) , 992px 114px var(--primary) , 113px 1832px var(--primary) , 1110px 1775px var(--primary) , 1162px 1255px var(--primary) , 1693px 1306px var(--primary) , 1741px 1902px var(--primary) , 330px 166px var(--primary) , 671px 1242px var(--primary) , 1550px 1345px var(--primary) , 991px 1665px var(--primary) , 1722px 1359px var(--primary) , 745px 1296px var(--primary) , 1936px 353px var(--primary) , 730px 742px var(--primary) , 1322px 717px var(--primary) , 164px 1810px var(--primary) , 1429px 1609px var(--primary) , 139px 1151px var(--primary) , 370px 282px var(--primary) , 1677px 1565px var(--primary) , 1235px 1018px var(--primary) , 1233px 1687px var(--primary) , 755px 244px var(--primary) , 328px 630px var(--primary) , 89px 1948px var(--primary) , 1054px 273px var(--primary) , 254px 94px var(--primary) , 915px 4px var(--primary) , 1938px 1296px var(--primary) , 619px 230px var(--primary) , 939px 1666px var(--primary) , 1254px 1861px var(--primary) , 1006px 248px var(--primary) , 666px 800px var(--primary) , 104px 1587px var(--primary) , 1084px 1398px var(--primary) , 571px 1390px var(--primary) , 84px 923px var(--primary) , 1283px 1486px var(--primary) , 1937px 1585px var(--primary) , 133px 695px var(--primary) , 130px 856px var(--primary) , 1256px 396px var(--primary) , 44px 833px var(--primary) , 810px 1661px var(--primary) , 1829px 1060px var(--primary) , 1311px 839px var(--primary) , 850px 111px var(--primary) , 666px 1011px var(--primary) , 194px 1742px var(--primary) , 1099px 1193px var(--primary) , 1611px 662px var(--primary) , 350px 1286px var(--primary) , 1235px 1706px var(--primary) , 1985px 1817px var(--primary) , 1794px 1189px var(--primary) , 204px 1646px var(--primary) , 661px 677px var(--primary) , 1523px 1549px var(--primary) , 1355px 1694px var(--primary) , 1394px 1865px var(--primary) , 1798px 1956px var(--primary) , 1419px 59px var(--primary) , 975px 1918px var(--primary) , 1215px 226px var(--primary) , 444px 647px var(--primary) , 766px 1305px var(--primary) , 183px 1921px var(--primary) , 1218px 1644px var(--primary) , 1541px 150px var(--primary) , 1384px 1326px var(--primary) , 669px 840px var(--primary) , 213px 1282px var(--primary) , 1403px 1871px var(--primary) , 1791px 860px var(--primary) , 1649px 658px var(--primary) , 232px 946px var(--primary) , 140px 828px var(--primary) , 1649px 1734px var(--primary) , 1567px 1197px var(--primary) , 820px 647px var(--primary) , 656px 976px var(--primary) , 144px 122px var(--primary) , 1706px 1167px var(--primary) , 981px 1518px var(--primary) , 1868px 1853px var(--primary) , 178px 240px var(--primary) , 799px 950px var(--primary) , 1497px 275px var(--primary) , 891px 1722px var(--primary) , 577px 629px var(--primary) , 1178px 1083px var(--primary) , 313px 66px var(--primary) , 1967px 185px var(--primary) , 1336px 4px var(--primary) , 616px 1655px var(--primary) , 902px 138px var(--primary) , 301px 784px var(--primary) , 1264px 744px var(--primary) , 1865px 901px var(--primary) , 743px 1423px var(--primary) , 34px 1276px var(--primary) , 532px 773px var(--primary) , 753px 1839px var(--primary) , 905px 1935px var(--primary) , 1119px 860px var(--primary) , 995px 1541px var(--primary) , 1090px 412px var(--primary) , 186px 8px var(--primary) , 1005px 161px var(--primary) , 1582px 1346px var(--primary) , 244px 498px var(--primary) , 1409px 546px var(--primary) , 470px 1582px var(--primary) , 1645px 245px var(--primary) , 1546px 1820px var(--primary) , 1608px 894px var(--primary) , 580px 521px var(--primary) , 218px 1915px var(--primary) , 1827px 1207px var(--primary) , 1718px 1722px var(--primary) , 1872px 1828px var(--primary) , 1092px 1521px var(--primary) , 395px 290px var(--primary) , 54px 1202px var(--primary) , 1307px 121px var(--primary) , 1587px 118px var(--primary) , 1861px 905px var(--primary) , 1748px 1305px var(--primary) , 899px 161px var(--primary) , 1863px 489px var(--primary) , 415px 279px var(--primary) , 985px 1541px var(--primary) , 97px 1806px var(--primary) , 517px 1094px var(--primary) , 837px 888px var(--primary) , 1728px 184px var(--primary) , 522px 558px var(--primary) , 194px 362px var(--primary) , 573px 789px var(--primary) , 469px 305px var(--primary) , 560px 1125px var(--primary) , 1050px 1995px var(--primary) , 67px 1812px var(--primary) , 1358px 1343px var(--primary) , 1796px 1321px var(--primary) , 1817px 1060px var(--primary) , 1843px 626px var(--primary) , 1283px 838px var(--primary) , 1500px 315px var(--primary) , 1830px 1709px var(--primary) , 902px 81px var(--primary) , 1260px 338px var(--primary) , 1123px 177px var(--primary) , 42px 1251px var(--primary) , 1958px 1769px var(--primary) , 984px 734px var(--primary) , 159px 1262px var(--primary) , 647px 304px var(--primary) , 683px 1019px var(--primary) , 296px 205px var(--primary) , 1526px 1133px var(--primary) , 406px 922px var(--primary) , 1491px 1091px var(--primary) , 213px 924px var(--primary) , 1790px 674px var(--primary) , 841px 999px var(--primary) , 1235px 1389px var(--primary) , 1658px 422px var(--primary) , 417px 311px var(--primary) , 837px 1189px var(--primary) , 34px 1283px var(--primary) , 1312px 885px var(--primary) , 239px 1750px var(--primary) , 455px 518px var(--primary) , 1276px 1664px var(--primary) , 1519px 560px var(--primary) , 1352px 1953px var(--primary) , 1354px 1738px var(--primary) , 496px 622px var(--primary) , 1303px 190px var(--primary) , 788px 463px var(--primary) , 484px 492px var(--primary) , 1159px 801px var(--primary) , 971px 1030px var(--primary) , 1333px 1951px var(--primary) , 1918px 2px var(--primary) , 9px 106px var(--primary) , 605px 1592px var(--primary) , 1726px 551px var(--primary) , 167px 1730px var(--primary) , 1567px 1490px var(--primary) , 1590px 1120px var(--primary) , 1375px 394px var(--primary) , 1607px 401px var(--primary) , 217px 780px var(--primary) , 1520px 318px var(--primary) , 686px 1629px var(--primary) , 1014px 482px var(--primary) , 415px 1460px var(--primary) , 858px 683px var(--primary) , 817px 1633px var(--primary) , 620px 936px var(--primary) , 1339px 794px var(--primary) , 581px 1931px var(--primary) , 1557px 956px var(--primary) , 1185px 968px var(--primary) , 1960px 1885px var(--primary) , 1439px 933px var(--primary) , 1379px 63px var(--primary) , 613px 1645px var(--primary) , 305px 1060px var(--primary) , 617px 1339px var(--primary) , 51px 395px var(--primary) , 1207px 833px var(--primary) , 901px 904px var(--primary) , 1448px 54px var(--primary) , 1624px 1789px var(--primary) , 1745px 77px var(--primary) , 1507px 139px var(--primary) , 490px 1936px var(--primary) , 1565px 531px var(--primary) , 361px 219px var(--primary) , 809px 1245px var(--primary) , 1961px 514px var(--primary) , 534px 1983px var(--primary) , 1676px 1454px var(--primary) , 1116px 743px var(--primary) , 1325px 1398px var(--primary) , 166px 1811px var(--primary) , 1511px 1214px var(--primary) , 243px 725px var(--primary) , 1484px 1578px var(--primary) , 1197px 808px var(--primary) , 1763px 56px var(--primary) , 1681px 1164px var(--primary) , 1919px 696px var(--primary) , 1709px 905px var(--primary) , 1019px 87px var(--primary) , 1712px 1921px var(--primary) , 1890px 903px var(--primary) , 1363px 1685px var(--primary) , 33px 622px var(--primary) , 577px 917px var(--primary) , 1589px 1863px var(--primary) , 940px 1260px var(--primary) , 286px 1207px var(--primary) , 221px 1734px var(--primary) , 94px 354px var(--primary) , 1182px 1953px var(--primary) , 843px 1834px var(--primary) , 1510px 1846px var(--primary) , 317px 479px var(--primary) , 354px 1469px var(--primary) , 1832px 1375px var(--primary) , 1399px 1520px var(--primary) , 1293px 1699px var(--primary) , 1586px 674px var(--primary) , 910px 221px var(--primary) , 958px 1188px var(--primary) , 1068px 197px var(--primary) , 1715px 1023px var(--primary) , 1298px 1206px var(--primary) , 657px 1104px var(--primary) , 1554px 548px var(--primary) , 1753px 742px var(--primary) , 1307px 1944px var(--primary) , 1175px 1243px var(--primary) , 1348px 219px var(--primary) , 206px 944px var(--primary) , 1304px 1598px var(--primary) , 252px 1847px var(--primary) , 1964px 76px var(--primary) , 1845px 1120px var(--primary) , 1250px 474px var(--primary) , 1597px 1850px var(--primary) , 1427px 753px var(--primary) , 1221px 1747px var(--primary) , 871px 1107px var(--primary) , 462px 1946px var(--primary) , 918px 1822px var(--primary) , 329px 1249px var(--primary) , 1743px 844px var(--primary) , 593px 664px var(--primary) , 14px 591px var(--primary) , 1016px 1947px var(--primary) , 982px 27px var(--primary) , 1997px 1808px var(--primary) , 258px 1597px var(--primary) , 1636px 337px var(--primary) , 565px 922px var(--primary) , 1118px 468px var(--primary) , 1764px 288px var(--primary) , 1738px 1038px var(--primary) , 715px 1568px var(--primary) , 1538px 323px var(--primary) , 123px 1255px var(--primary) , 139px 1865px var(--primary) , 1067px 1411px var(--primary) , 229px 510px var(--primary) , 1228px 815px var(--primary) , 1549px 1109px var(--primary) , 1985px 470px var(--primary) , 1564px 1289px var(--primary) , 920px 1092px var(--primary) , 518px 1622px var(--primary) , 244px 474px var(--primary) , 821px 295px var(--primary) , 236px 1394px var(--primary) , 605px 1038px var(--primary) , 406px 1047px var(--primary) , 120px 392px var(--primary) , 1558px 954px var(--primary) , 1353px 1052px var(--primary) , 1387px 1671px var(--primary) , 620px 1644px var(--primary) , 685px 1904px var(--primary) , 274px 684px var(--primary) , 1086px 123px var(--primary) , 1564px 1544px var(--primary) , 1549px 1593px var(--primary) , 136px 1757px var(--primary);
}

.c-recorder__progress #stars2 {
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 1027px 1209px var(--primary) , 172px 580px var(--primary) , 565px 1782px var(--primary) , 330px 537px var(--primary) , 1165px 934px var(--primary) , 226px 210px var(--primary) , 1742px 1298px var(--primary) , 1338px 1314px var(--primary) , 1180px 487px var(--primary) , 283px 91px var(--primary) , 591px 1648px var(--primary) , 608px 1763px var(--primary) , 1827px 78px var(--primary) , 722px 1312px var(--primary) , 1913px 1496px var(--primary) , 106px 1971px var(--primary) , 894px 121px var(--primary) , 838px 80px var(--primary) , 909px 366px var(--primary) , 1386px 1038px var(--primary) , 617px 1728px var(--primary) , 413px 1208px var(--primary) , 1208px 496px var(--primary) , 1464px 961px var(--primary) , 1554px 672px var(--primary) , 679px 417px var(--primary) , 544px 1444px var(--primary) , 562px 456px var(--primary) , 771px 1656px var(--primary) , 276px 836px var(--primary) , 1407px 709px var(--primary) , 219px 1671px var(--primary) , 644px 853px var(--primary) , 1453px 1915px var(--primary) , 703px 1379px var(--primary) , 1667px 1020px var(--primary) , 1160px 744px var(--primary) , 1468px 414px var(--primary) , 143px 392px var(--primary) , 409px 1365px var(--primary) , 956px 896px var(--primary) , 1570px 1356px var(--primary) , 312px 297px var(--primary) , 1805px 509px var(--primary) , 318px 1211px var(--primary) , 614px 1247px var(--primary) , 1985px 83px var(--primary) , 1838px 222px var(--primary) , 1188px 1323px var(--primary) , 1637px 171px var(--primary) , 1207px 435px var(--primary) , 786px 1795px var(--primary) , 1019px 1549px var(--primary) , 809px 1090px var(--primary) , 1514px 1371px var(--primary) , 1991px 1568px var(--primary) , 800px 1316px var(--primary) , 1065px 1327px var(--primary) , 696px 1644px var(--primary) , 1949px 703px var(--primary) , 612px 1976px var(--primary) , 1704px 1439px var(--primary) , 602px 686px var(--primary) , 1877px 183px var(--primary) , 498px 356px var(--primary) , 1899px 1404px var(--primary) , 825px 1214px var(--primary) , 1995px 1787px var(--primary) , 367px 1232px var(--primary) , 720px 1987px var(--primary) , 1008px 356px var(--primary) , 1700px 299px var(--primary) , 493px 1476px var(--primary) , 284px 1401px var(--primary) , 1367px 42px var(--primary) , 1522px 464px var(--primary) , 806px 809px var(--primary) , 1381px 1688px var(--primary) , 864px 679px var(--primary) , 1442px 383px var(--primary) , 448px 1038px var(--primary) , 1687px 1919px var(--primary) , 1316px 772px var(--primary) , 748px 1554px var(--primary) , 978px 1346px var(--primary) , 1480px 1608px var(--primary) , 1518px 1809px var(--primary) , 1039px 1232px var(--primary) , 64px 516px var(--primary) , 578px 1363px var(--primary) , 1861px 249px var(--primary) , 194px 1790px var(--primary) , 1277px 222px var(--primary) , 941px 196px var(--primary) , 805px 1206px var(--primary) , 378px 551px var(--primary) , 1161px 1056px var(--primary) , 1723px 402px var(--primary) , 555px 107px var(--primary) , 1725px 1238px var(--primary) , 1444px 802px var(--primary) , 260px 335px var(--primary) , 1491px 264px var(--primary) , 203px 344px var(--primary) , 1898px 890px var(--primary) , 984px 1970px var(--primary) , 55px 1708px var(--primary) , 1812px 1778px var(--primary) , 542px 11px var(--primary) , 667px 129px var(--primary) , 1244px 1686px var(--primary) , 1416px 739px var(--primary) , 1933px 146px var(--primary) , 624px 1871px var(--primary) , 534px 580px var(--primary) , 1557px 992px var(--primary) , 1572px 344px var(--primary) , 173px 598px var(--primary) , 515px 1745px var(--primary) , 1578px 138px var(--primary) , 650px 949px var(--primary) , 967px 1405px var(--primary) , 1350px 1091px var(--primary) , 1038px 1578px var(--primary) , 1165px 1406px var(--primary) , 1711px 1449px var(--primary) , 307px 742px var(--primary) , 55px 1589px var(--primary) , 944px 1141px var(--primary) , 1850px 347px var(--primary) , 509px 1896px var(--primary) , 653px 42px var(--primary) , 39px 1972px var(--primary) , 1934px 1114px var(--primary) , 1468px 1851px var(--primary) , 446px 600px var(--primary) , 811px 323px var(--primary) , 9px 830px var(--primary) , 421px 267px var(--primary) , 1525px 524px var(--primary) , 465px 1620px var(--primary) , 738px 249px var(--primary) , 1059px 715px var(--primary) , 1932px 1737px var(--primary) , 1566px 774px var(--primary) , 1573px 485px var(--primary) , 538px 1674px var(--primary) , 1215px 1226px var(--primary) , 1753px 70px var(--primary) , 1498px 1893px var(--primary) , 1137px 486px var(--primary) , 162px 216px var(--primary) , 241px 1535px var(--primary) , 630px 1828px var(--primary) , 932px 953px var(--primary) , 1445px 1679px var(--primary) , 718px 566px var(--primary) , 1076px 170px var(--primary) , 666px 144px var(--primary) , 1912px 209px var(--primary) , 97px 1517px var(--primary) , 849px 898px var(--primary) , 110px 310px var(--primary) , 1647px 980px var(--primary) , 995px 1145px var(--primary) , 1407px 928px var(--primary) , 781px 1182px var(--primary) , 819px 1149px var(--primary) , 853px 914px var(--primary) , 1813px 1041px var(--primary) , 46px 894px var(--primary) , 1565px 1235px var(--primary) , 93px 427px var(--primary) , 557px 47px var(--primary) , 718px 608px var(--primary) , 1790px 1411px var(--primary) , 427px 1087px var(--primary) , 710px 518px var(--primary) , 1825px 1648px var(--primary) , 1796px 1316px var(--primary) , 1417px 144px var(--primary) , 175px 405px var(--primary) , 189px 118px var(--primary) , 1361px 1403px var(--primary) , 1959px 519px var(--primary) , 1760px 1666px var(--primary) , 1098px 1690px var(--primary) , 1948px 435px var(--primary) , 486px 966px var(--primary) , 1806px 1646px var(--primary) , 292px 1036px var(--primary) , 1053px 1356px var(--primary) , 1052px 27px var(--primary) , 420px 534px var(--primary) , 1149px 34px var(--primary) , 1949px 1280px var(--primary) , 463px 1221px var(--primary) , 1020px 1307px var(--primary) , 517px 366px var(--primary) , 1112px 1542px var(--primary);
  animation: animStar 10s linear infinite;
}

.c-recorder__progress #stars2:after {
  content: " ";
  position: absolute;
  top: 2000px;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 1027px 1209px var(--primary) , 172px 580px var(--primary) , 565px 1782px var(--primary) , 330px 537px var(--primary) , 1165px 934px var(--primary) , 226px 210px var(--primary) , 1742px 1298px var(--primary) , 1338px 1314px var(--primary) , 1180px 487px var(--primary) , 283px 91px var(--primary) , 591px 1648px var(--primary) , 608px 1763px var(--primary) , 1827px 78px var(--primary) , 722px 1312px var(--primary) , 1913px 1496px var(--primary) , 106px 1971px var(--primary) , 894px 121px var(--primary) , 838px 80px var(--primary) , 909px 366px var(--primary) , 1386px 1038px var(--primary) , 617px 1728px var(--primary) , 413px 1208px var(--primary) , 1208px 496px var(--primary) , 1464px 961px var(--primary) , 1554px 672px var(--primary) , 679px 417px var(--primary) , 544px 1444px var(--primary) , 562px 456px var(--primary) , 771px 1656px var(--primary) , 276px 836px var(--primary) , 1407px 709px var(--primary) , 219px 1671px var(--primary) , 644px 853px var(--primary) , 1453px 1915px var(--primary) , 703px 1379px var(--primary) , 1667px 1020px var(--primary) , 1160px 744px var(--primary) , 1468px 414px var(--primary) , 143px 392px var(--primary) , 409px 1365px var(--primary) , 956px 896px var(--primary) , 1570px 1356px var(--primary) , 312px 297px var(--primary) , 1805px 509px var(--primary) , 318px 1211px var(--primary) , 614px 1247px var(--primary) , 1985px 83px var(--primary) , 1838px 222px var(--primary) , 1188px 1323px var(--primary) , 1637px 171px var(--primary) , 1207px 435px var(--primary) , 786px 1795px var(--primary) , 1019px 1549px var(--primary) , 809px 1090px var(--primary) , 1514px 1371px var(--primary) , 1991px 1568px var(--primary) , 800px 1316px var(--primary) , 1065px 1327px var(--primary) , 696px 1644px var(--primary) , 1949px 703px var(--primary) , 612px 1976px var(--primary) , 1704px 1439px var(--primary) , 602px 686px var(--primary) , 1877px 183px var(--primary) , 498px 356px var(--primary) , 1899px 1404px var(--primary) , 825px 1214px var(--primary) , 1995px 1787px var(--primary) , 367px 1232px var(--primary) , 720px 1987px var(--primary) , 1008px 356px var(--primary) , 1700px 299px var(--primary) , 493px 1476px var(--primary) , 284px 1401px var(--primary) , 1367px 42px var(--primary) , 1522px 464px var(--primary) , 806px 809px var(--primary) , 1381px 1688px var(--primary) , 864px 679px var(--primary) , 1442px 383px var(--primary) , 448px 1038px var(--primary) , 1687px 1919px var(--primary) , 1316px 772px var(--primary) , 748px 1554px var(--primary) , 978px 1346px var(--primary) , 1480px 1608px var(--primary) , 1518px 1809px var(--primary) , 1039px 1232px var(--primary) , 64px 516px var(--primary) , 578px 1363px var(--primary) , 1861px 249px var(--primary) , 194px 1790px var(--primary) , 1277px 222px var(--primary) , 941px 196px var(--primary) , 805px 1206px var(--primary) , 378px 551px var(--primary) , 1161px 1056px var(--primary) , 1723px 402px var(--primary) , 555px 107px var(--primary) , 1725px 1238px var(--primary) , 1444px 802px var(--primary) , 260px 335px var(--primary) , 1491px 264px var(--primary) , 203px 344px var(--primary) , 1898px 890px var(--primary) , 984px 1970px var(--primary) , 55px 1708px var(--primary) , 1812px 1778px var(--primary) , 542px 11px var(--primary) , 667px 129px var(--primary) , 1244px 1686px var(--primary) , 1416px 739px var(--primary) , 1933px 146px var(--primary) , 624px 1871px var(--primary) , 534px 580px var(--primary) , 1557px 992px var(--primary) , 1572px 344px var(--primary) , 173px 598px var(--primary) , 515px 1745px var(--primary) , 1578px 138px var(--primary) , 650px 949px var(--primary) , 967px 1405px var(--primary) , 1350px 1091px var(--primary) , 1038px 1578px var(--primary) , 1165px 1406px var(--primary) , 1711px 1449px var(--primary) , 307px 742px var(--primary) , 55px 1589px var(--primary) , 944px 1141px var(--primary) , 1850px 347px var(--primary) , 509px 1896px var(--primary) , 653px 42px var(--primary) , 39px 1972px var(--primary) , 1934px 1114px var(--primary) , 1468px 1851px var(--primary) , 446px 600px var(--primary) , 811px 323px var(--primary) , 9px 830px var(--primary) , 421px 267px var(--primary) , 1525px 524px var(--primary) , 465px 1620px var(--primary) , 738px 249px var(--primary) , 1059px 715px var(--primary) , 1932px 1737px var(--primary) , 1566px 774px var(--primary) , 1573px 485px var(--primary) , 538px 1674px var(--primary) , 1215px 1226px var(--primary) , 1753px 70px var(--primary) , 1498px 1893px var(--primary) , 1137px 486px var(--primary) , 162px 216px var(--primary) , 241px 1535px var(--primary) , 630px 1828px var(--primary) , 932px 953px var(--primary) , 1445px 1679px var(--primary) , 718px 566px var(--primary) , 1076px 170px var(--primary) , 666px 144px var(--primary) , 1912px 209px var(--primary) , 97px 1517px var(--primary) , 849px 898px var(--primary) , 110px 310px var(--primary) , 1647px 980px var(--primary) , 995px 1145px var(--primary) , 1407px 928px var(--primary) , 781px 1182px var(--primary) , 819px 1149px var(--primary) , 853px 914px var(--primary) , 1813px 1041px var(--primary) , 46px 894px var(--primary) , 1565px 1235px var(--primary) , 93px 427px var(--primary) , 557px 47px var(--primary) , 718px 608px var(--primary) , 1790px 1411px var(--primary) , 427px 1087px var(--primary) , 710px 518px var(--primary) , 1825px 1648px var(--primary) , 1796px 1316px var(--primary) , 1417px 144px var(--primary) , 175px 405px var(--primary) , 189px 118px var(--primary) , 1361px 1403px var(--primary) , 1959px 519px var(--primary) , 1760px 1666px var(--primary) , 1098px 1690px var(--primary) , 1948px 435px var(--primary) , 486px 966px var(--primary) , 1806px 1646px var(--primary) , 292px 1036px var(--primary) , 1053px 1356px var(--primary) , 1052px 27px var(--primary) , 420px 534px var(--primary) , 1149px 34px var(--primary) , 1949px 1280px var(--primary) , 463px 1221px var(--primary) , 1020px 1307px var(--primary) , 517px 366px var(--primary) , 1112px 1542px var(--primary);
}

.c-recorder__progress #stars3 {
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow: 1752px 1889px var(--primary) , 448px 1403px var(--primary) , 197px 752px var(--primary) , 390px 1550px var(--primary) , 596px 788px var(--primary) , 1161px 646px var(--primary) , 280px 67px var(--primary) , 1337px 850px var(--primary) , 1153px 28px var(--primary) , 1606px 372px var(--primary) , 970px 1196px var(--primary) , 969px 632px var(--primary) , 677px 1482px var(--primary) , 324px 1030px var(--primary) , 1185px 1356px var(--primary) , 300px 94px var(--primary) , 420px 1211px var(--primary) , 1888px 49px var(--primary) , 1882px 1457px var(--primary) , 247px 1837px var(--primary) , 85px 937px var(--primary) , 1436px 953px var(--primary) , 506px 1434px var(--primary) , 778px 1238px var(--primary) , 407px 1869px var(--primary) , 432px 813px var(--primary) , 562px 869px var(--primary) , 1323px 1405px var(--primary) , 780px 996px var(--primary) , 859px 338px var(--primary) , 228px 1843px var(--primary) , 928px 1756px var(--primary) , 190px 17px var(--primary) , 567px 1494px var(--primary) , 1836px 584px var(--primary) , 508px 1511px var(--primary) , 1739px 1368px var(--primary) , 1374px 500px var(--primary) , 1381px 687px var(--primary) , 256px 728px var(--primary) , 438px 116px var(--primary) , 1295px 1629px var(--primary) , 822px 1104px var(--primary) , 1607px 1262px var(--primary) , 1898px 931px var(--primary) , 1653px 628px var(--primary) , 1231px 899px var(--primary) , 929px 1564px var(--primary) , 76px 1756px var(--primary) , 1260px 836px var(--primary) , 749px 194px var(--primary) , 942px 1361px var(--primary) , 49px 23px var(--primary) , 1418px 1921px var(--primary) , 17px 1037px var(--primary) , 795px 1617px var(--primary) , 57px 957px var(--primary) , 874px 631px var(--primary) , 798px 1188px var(--primary) , 1458px 1865px var(--primary) , 1893px 786px var(--primary) , 1942px 806px var(--primary) , 1185px 1243px var(--primary) , 1864px 896px var(--primary) , 847px 1168px var(--primary) , 105px 1011px var(--primary) , 705px 1187px var(--primary) , 1367px 769px var(--primary) , 592px 416px var(--primary) , 1199px 1209px var(--primary) , 1805px 1649px var(--primary) , 1982px 671px var(--primary) , 719px 1266px var(--primary) , 1672px 928px var(--primary) , 45px 1921px var(--primary) , 1478px 457px var(--primary) , 610px 1442px var(--primary) , 1109px 1485px var(--primary) , 1117px 586px var(--primary) , 1629px 244px var(--primary) , 1363px 1134px var(--primary) , 455px 1276px var(--primary) , 933px 1392px var(--primary) , 1760px 1224px var(--primary) , 258px 1598px var(--primary) , 1037px 1488px var(--primary) , 1231px 1198px var(--primary) , 804px 1589px var(--primary) , 1920px 1752px var(--primary) , 1791px 222px var(--primary) , 1989px 1106px var(--primary) , 912px 420px var(--primary) , 111px 49px var(--primary) , 328px 1018px var(--primary) , 1027px 1005px var(--primary) , 1526px 1091px var(--primary) , 1419px 1150px var(--primary) , 131px 672px var(--primary) , 1924px 1351px var(--primary) , 605px 402px var(--primary);
  animation: animStar 50s linear infinite;
}

.c-recorder__progress #stars3:after {
  content: " ";
  position: absolute;
  top: 2000px;
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow: 1752px 1889px var(--primary) , 448px 1403px var(--primary) , 197px 752px var(--primary) , 390px 1550px var(--primary) , 596px 788px var(--primary) , 1161px 646px var(--primary) , 280px 67px var(--primary) , 1337px 850px var(--primary) , 1153px 28px var(--primary) , 1606px 372px var(--primary) , 970px 1196px var(--primary) , 969px 632px var(--primary) , 677px 1482px var(--primary) , 324px 1030px var(--primary) , 1185px 1356px var(--primary) , 300px 94px var(--primary) , 420px 1211px var(--primary) , 1888px 49px var(--primary) , 1882px 1457px var(--primary) , 247px 1837px var(--primary) , 85px 937px var(--primary) , 1436px 953px var(--primary) , 506px 1434px var(--primary) , 778px 1238px var(--primary) , 407px 1869px var(--primary) , 432px 813px var(--primary) , 562px 869px var(--primary) , 1323px 1405px var(--primary) , 780px 996px var(--primary) , 859px 338px var(--primary) , 228px 1843px var(--primary) , 928px 1756px var(--primary) , 190px 17px var(--primary) , 567px 1494px var(--primary) , 1836px 584px var(--primary) , 508px 1511px var(--primary) , 1739px 1368px var(--primary) , 1374px 500px var(--primary) , 1381px 687px var(--primary) , 256px 728px var(--primary) , 438px 116px var(--primary) , 1295px 1629px var(--primary) , 822px 1104px var(--primary) , 1607px 1262px var(--primary) , 1898px 931px var(--primary) , 1653px 628px var(--primary) , 1231px 899px var(--primary) , 929px 1564px var(--primary) , 76px 1756px var(--primary) , 1260px 836px var(--primary) , 749px 194px var(--primary) , 942px 1361px var(--primary) , 49px 23px var(--primary) , 1418px 1921px var(--primary) , 17px 1037px var(--primary) , 795px 1617px var(--primary) , 57px 957px var(--primary) , 874px 631px var(--primary) , 798px 1188px var(--primary) , 1458px 1865px var(--primary) , 1893px 786px var(--primary) , 1942px 806px var(--primary) , 1185px 1243px var(--primary) , 1864px 896px var(--primary) , 847px 1168px var(--primary) , 105px 1011px var(--primary) , 705px 1187px var(--primary) , 1367px 769px var(--primary) , 592px 416px var(--primary) , 1199px 1209px var(--primary) , 1805px 1649px var(--primary) , 1982px 671px var(--primary) , 719px 1266px var(--primary) , 1672px 928px var(--primary) , 45px 1921px var(--primary) , 1478px 457px var(--primary) , 610px 1442px var(--primary) , 1109px 1485px var(--primary) , 1117px 586px var(--primary) , 1629px 244px var(--primary) , 1363px 1134px var(--primary) , 455px 1276px var(--primary) , 933px 1392px var(--primary) , 1760px 1224px var(--primary) , 258px 1598px var(--primary) , 1037px 1488px var(--primary) , 1231px 1198px var(--primary) , 804px 1589px var(--primary) , 1920px 1752px var(--primary) , 1791px 222px var(--primary) , 1989px 1106px var(--primary) , 912px 420px var(--primary) , 111px 49px var(--primary) , 328px 1018px var(--primary) , 1027px 1005px var(--primary) , 1526px 1091px var(--primary) , 1419px 1150px var(--primary) , 131px 672px var(--primary) , 1924px 1351px var(--primary) , 605px 402px var(--primary);
}

.c-video-rec {
  color: white;
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .c-video-rec {
    position: relative;
  }

  .c-video-rec:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
  }

  .c-video-rec > iframe, .c-video-rec > video, .c-video-rec > .video-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

.c-video-rec__video-wrapper {
  position: relative;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-video-rec__video {
  width: 100%;
  display: block;
  animation: fadeIn;
  animation-duration: 300ms;
}

.c-video-rec__video:focus {
  outline: none;
}

.c-video-rec__loading-inner {
  display: flex;
  color: white;
}

.c-video-rec__recording {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#99000000', GradientType=0);
  text-align: center;
  color: white;
}

.is-counting .c-video-rec__recording {
  background-image: none;
}

.c-video-rec__controls {
  display: grid;
  align-items: center;
  grid-auto-columns: minmax(6rem, 1fr) auto minmax(6rem, 1fr);
  -ms-grid-columns: minmax(6rem, 1fr) auto minmax(6rem, 1fr);
}

.c-video-rec__controls-left {
  grid-column: 1;
  text-align: right;
  padding: 1rem;
  color: var(--neutral-40);
}

.c-video-rec__controls-right {
  grid-column: 3;
  padding: 1rem;
  color: var(--neutral-40);
}

.c-video-rec__btn {
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 2.5rem;
  font-size: 1.1em;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #eb5757;
  text-decoration: none;
  cursor: pointer;
}

.c-video-rec__btn--stop {
  background: transparent;
  border: 1px solid #eb5757;
  color: #eb5757;
}

.c-video-rec__btn:hover {
  background: var(--neutral-00);
  text-decoration: none;
  color: #eb5757;
  border: none;
}

@media (min-width: 768px) {
  .c-video-rec__btn {
    height: 5rem;
    min-width: 5rem;
    border-radius: 5rem;
    font-size: 1.5em;
  }
}

.c-video-rec__countdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-video-rec__getready {
  text-align: center;
  color: white;
}

.c-video-rec__count {
  font-size: 2em;
  font-weight: bold;
}

@media (min-width: 768px) {
  .c-video-rec__count {
    font-size: 3em;
  }
}

.c-video-rec__count > h3 {
  color: white;
}

.c-video-rec__ready {
  font-size: 5em;
}

.c-video-rec__dropzone {
  height: 250px;
  width: 100%;
  position: relative;
  background: var(--neutral-60);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--neutral-50);
  border-radius: 2rem;
  padding: 2rem;
}

.c-video-rec__dropzone.is-highlight {
  border: 2px dashed var(--primary);
}

.c-video-rec__dropzone {
  cursor: pointer;
}

.c-video-rec__drop-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.is-highlight .c-video-rec__drop-file {
  border: 2px dashed var(--primary);
}

/*
  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.
*/

/* purgecss start ignore */

.video-js :focus:not(:focus-visible) {
  outline: none;
}

.video-js .vjs-big-play-button {
  border-radius: 5rem !important;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
video.video-js,
video.vjs-tech {
  max-height: 64vh;
  position: relative !important;
  height: auto !important;
  max-width: 100% !important;
  padding-top: 0 !important;
  line-height: 0;
}

@media (min-width: 768px) {
  .video-js.vjs-fluid,
  .video-js.vjs-16-9,
  .video-js.vjs-4-3,
  video.video-js,
  video.vjs-tech {
    max-height: 100%;
  }
}

/* Fix the control bar due to us resetting the line-height on the video-js */

.vjs-control-bar {
  line-height: 1;
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;

  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");

  font-weight: normal;

  font-style: normal;
}

.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f120";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js {
  word-break: initial;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3 {
  width: 100%;
  max-width: 100%;
  height: 0;
}

.video-js.vjs-16-9 {
  padding-top: 56.25%;
}

.video-js.vjs-4-3 {
  padding-top: 75%;
}

.video-js.vjs-fill {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 5rem;
  height: 5rem;
  width: 5rem;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -2.5rem;
  margin-left: -2.5rem;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: rgba(33%, 33%, 33%, 0);
  background-color: rgba(33%, 33%, 33%, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: rgba(33%, 33%, 33%, 0);
  background-color: rgba(33%, 33%, 33%, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: transparent;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(0, 0, 0, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
}

.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(33%, 33%, 33%, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(33%, 33%, 33%, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: rgba(33%, 33%, 33%, 0);
  background-color: rgba(33%, 33%, 33%, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-using-native-controls .vjs-poster {
  display: none;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}

@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: rgba(33%, 33%, 33%, 0);
  }

  20% {
    border-top-color: rgba(33%, 33%, 33%, 0);
  }

  35% {
    border-top-color: white;
  }

  60% {
    border-top-color: rgba(33%, 33%, 33%, 0);
  }

  100% {
    border-top-color: rgba(33%, 33%, 33%, 0);
  }
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f11d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control, .video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: auto;
  width: initial;
}

.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button, .video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button {
  display: none;
}

.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer, .video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }

  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }

  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }

  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}

.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, rgba(33%, 33%, 33%, 0) 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, rgba(33%, 33%, 33%, 0) 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}

.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
  background: none;
}

.video-js *:focus:not(:focus-visible),
.video-js .vjs-menu *:focus:not(:focus-visible) {
  outline: none;
  background: none;
}

/* purgecss end ignore */

@media (min-width: 375px){
  .mobile\:u-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

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

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

  .mobile\: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\: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\: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\: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\: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\: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\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .mobile\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .mobile\:u-visible{
    visibility: visible !important;
  }

  .mobile\:u-invisible{
    visibility: hidden !important;
  }

  .mobile\:u-static{
    position: static !important;
  }

  .mobile\:u-fixed{
    position: fixed !important;
  }

  .mobile\:u-absolute{
    position: absolute !important;
  }

  .mobile\:u-relative{
    position: relative !important;
  }

  .mobile\:u-sticky{
    position: sticky !important;
  }

  .mobile\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .mobile\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .mobile\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .mobile\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .mobile\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .mobile\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .mobile\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .mobile\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .mobile\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .mobile\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .mobile\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .mobile\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .mobile\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .mobile\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .mobile\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .mobile\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .mobile\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .mobile\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .mobile\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .mobile\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .mobile\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .mobile\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .mobile\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .mobile\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .mobile\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .mobile\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .mobile\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .mobile\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .mobile\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .mobile\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .mobile\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .mobile\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .mobile\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .mobile\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .mobile\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .mobile\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .mobile\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .mobile\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .mobile\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .mobile\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .mobile\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .mobile\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .mobile\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .mobile\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .mobile\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .mobile\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .mobile\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .mobile\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .mobile\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .mobile\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .mobile\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .mobile\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .mobile\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .mobile\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .mobile\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .mobile\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .mobile\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .mobile\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .mobile\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .mobile\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .mobile\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .mobile\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .mobile\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .mobile\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .mobile\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .mobile\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .mobile\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .mobile\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .mobile\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .mobile\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .mobile\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .mobile\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .mobile\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .mobile\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .mobile\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .mobile\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .mobile\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .mobile\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .mobile\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .mobile\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .mobile\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .mobile\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .mobile\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .mobile\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .mobile\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .mobile\:u-inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .mobile\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .mobile\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .mobile\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .mobile\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .mobile\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .mobile\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .mobile\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .mobile\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .mobile\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .mobile\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .mobile\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .mobile\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .mobile\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .mobile\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .mobile\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .mobile\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .mobile\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .mobile\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .mobile\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .mobile\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .mobile\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .mobile\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .mobile\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .mobile\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .mobile\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .mobile\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .mobile\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .mobile\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .mobile\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .mobile\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .mobile\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .mobile\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .mobile\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .mobile\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .mobile\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .mobile\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .mobile\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .mobile\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .mobile\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .mobile\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .mobile\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .mobile\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .mobile\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .mobile\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .mobile\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .mobile\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .mobile\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .mobile\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .mobile\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .mobile\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .mobile\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .mobile\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .mobile\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .mobile\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .mobile\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .mobile\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .mobile\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .mobile\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .mobile\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .mobile\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .mobile\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .mobile\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .mobile\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .mobile\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .mobile\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .mobile\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .mobile\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .mobile\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .mobile\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .mobile\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .mobile\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .mobile\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .mobile\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .mobile\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .mobile\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .mobile\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .mobile\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .mobile\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .mobile\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .mobile\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .mobile\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .mobile\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .mobile\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .mobile\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .mobile\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .mobile\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .mobile\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .mobile\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .mobile\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .mobile\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .mobile\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .mobile\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .mobile\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .mobile\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .mobile\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .mobile\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .mobile\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .mobile\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .mobile\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .mobile\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .mobile\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .mobile\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .mobile\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .mobile\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .mobile\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .mobile\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .mobile\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .mobile\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .mobile\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .mobile\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .mobile\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .mobile\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .mobile\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .mobile\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .mobile\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .mobile\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .mobile\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .mobile\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .mobile\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .mobile\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .mobile\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .mobile\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .mobile\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .mobile\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .mobile\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .mobile\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .mobile\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .mobile\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .mobile\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .mobile\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .mobile\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .mobile\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .mobile\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .mobile\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .mobile\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .mobile\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .mobile\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .mobile\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .mobile\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .mobile\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .mobile\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .mobile\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .mobile\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .mobile\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .mobile\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .mobile\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .mobile\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .mobile\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .mobile\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .mobile\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .mobile\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .mobile\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .mobile\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .mobile\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .mobile\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .mobile\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .mobile\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .mobile\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .mobile\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .mobile\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .mobile\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .mobile\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .mobile\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .mobile\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .mobile\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .mobile\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .mobile\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .mobile\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .mobile\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .mobile\:u-top-0{
    top: 0px !important;
  }

  .mobile\:u-top-1{
    top: 0.25rem !important;
  }

  .mobile\:u-top-2{
    top: 0.5rem !important;
  }

  .mobile\:u-top-3{
    top: 0.75rem !important;
  }

  .mobile\:u-top-4{
    top: 1rem !important;
  }

  .mobile\:u-top-5{
    top: 1.25rem !important;
  }

  .mobile\:u-top-6{
    top: 1.5rem !important;
  }

  .mobile\:u-top-7{
    top: 1.75rem !important;
  }

  .mobile\:u-top-8{
    top: 2rem !important;
  }

  .mobile\:u-top-9{
    top: 2.25rem !important;
  }

  .mobile\:u-top-10{
    top: 2.5rem !important;
  }

  .mobile\:u-top-11{
    top: 2.75rem !important;
  }

  .mobile\:u-top-12{
    top: 3rem !important;
  }

  .mobile\:u-top-14{
    top: 3.5rem !important;
  }

  .mobile\:u-top-16{
    top: 4rem !important;
  }

  .mobile\:u-top-20{
    top: 5rem !important;
  }

  .mobile\:u-top-24{
    top: 6rem !important;
  }

  .mobile\:u-top-28{
    top: 7rem !important;
  }

  .mobile\:u-top-32{
    top: 8rem !important;
  }

  .mobile\:u-top-36{
    top: 9rem !important;
  }

  .mobile\:u-top-40{
    top: 10rem !important;
  }

  .mobile\:u-top-44{
    top: 11rem !important;
  }

  .mobile\:u-top-48{
    top: 12rem !important;
  }

  .mobile\:u-top-52{
    top: 13rem !important;
  }

  .mobile\:u-top-56{
    top: 14rem !important;
  }

  .mobile\:u-top-60{
    top: 15rem !important;
  }

  .mobile\:u-top-64{
    top: 16rem !important;
  }

  .mobile\:u-top-72{
    top: 18rem !important;
  }

  .mobile\:u-top-80{
    top: 20rem !important;
  }

  .mobile\:u-top-96{
    top: 24rem !important;
  }

  .mobile\:u-top-auto{
    top: auto !important;
  }

  .mobile\:u-top-px{
    top: 1px !important;
  }

  .mobile\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .mobile\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .mobile\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .mobile\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .mobile\:u--top-0{
    top: 0px !important;
  }

  .mobile\:u--top-1{
    top: -0.25rem !important;
  }

  .mobile\:u--top-2{
    top: -0.5rem !important;
  }

  .mobile\:u--top-3{
    top: -0.75rem !important;
  }

  .mobile\:u--top-4{
    top: -1rem !important;
  }

  .mobile\:u--top-5{
    top: -1.25rem !important;
  }

  .mobile\:u--top-6{
    top: -1.5rem !important;
  }

  .mobile\:u--top-7{
    top: -1.75rem !important;
  }

  .mobile\:u--top-8{
    top: -2rem !important;
  }

  .mobile\:u--top-9{
    top: -2.25rem !important;
  }

  .mobile\:u--top-10{
    top: -2.5rem !important;
  }

  .mobile\:u--top-11{
    top: -2.75rem !important;
  }

  .mobile\:u--top-12{
    top: -3rem !important;
  }

  .mobile\:u--top-14{
    top: -3.5rem !important;
  }

  .mobile\:u--top-16{
    top: -4rem !important;
  }

  .mobile\:u--top-20{
    top: -5rem !important;
  }

  .mobile\:u--top-24{
    top: -6rem !important;
  }

  .mobile\:u--top-28{
    top: -7rem !important;
  }

  .mobile\:u--top-32{
    top: -8rem !important;
  }

  .mobile\:u--top-36{
    top: -9rem !important;
  }

  .mobile\:u--top-40{
    top: -10rem !important;
  }

  .mobile\:u--top-44{
    top: -11rem !important;
  }

  .mobile\:u--top-48{
    top: -12rem !important;
  }

  .mobile\:u--top-52{
    top: -13rem !important;
  }

  .mobile\:u--top-56{
    top: -14rem !important;
  }

  .mobile\:u--top-60{
    top: -15rem !important;
  }

  .mobile\:u--top-64{
    top: -16rem !important;
  }

  .mobile\:u--top-72{
    top: -18rem !important;
  }

  .mobile\:u--top-80{
    top: -20rem !important;
  }

  .mobile\:u--top-96{
    top: -24rem !important;
  }

  .mobile\:u--top-px{
    top: -1px !important;
  }

  .mobile\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .mobile\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .mobile\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .mobile\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .mobile\:u-top-1\/2{
    top: 50% !important;
  }

  .mobile\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .mobile\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .mobile\:u-top-1\/4{
    top: 25% !important;
  }

  .mobile\:u-top-2\/4{
    top: 50% !important;
  }

  .mobile\:u-top-3\/4{
    top: 75% !important;
  }

  .mobile\:u-top-full{
    top: 100% !important;
  }

  .mobile\:u--top-1\/2{
    top: -50% !important;
  }

  .mobile\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .mobile\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .mobile\:u--top-1\/4{
    top: -25% !important;
  }

  .mobile\:u--top-2\/4{
    top: -50% !important;
  }

  .mobile\:u--top-3\/4{
    top: -75% !important;
  }

  .mobile\:u--top-full{
    top: -100% !important;
  }

  .mobile\:u-right-0{
    right: 0px !important;
  }

  .mobile\:u-right-1{
    right: 0.25rem !important;
  }

  .mobile\:u-right-2{
    right: 0.5rem !important;
  }

  .mobile\:u-right-3{
    right: 0.75rem !important;
  }

  .mobile\:u-right-4{
    right: 1rem !important;
  }

  .mobile\:u-right-5{
    right: 1.25rem !important;
  }

  .mobile\:u-right-6{
    right: 1.5rem !important;
  }

  .mobile\:u-right-7{
    right: 1.75rem !important;
  }

  .mobile\:u-right-8{
    right: 2rem !important;
  }

  .mobile\:u-right-9{
    right: 2.25rem !important;
  }

  .mobile\:u-right-10{
    right: 2.5rem !important;
  }

  .mobile\:u-right-11{
    right: 2.75rem !important;
  }

  .mobile\:u-right-12{
    right: 3rem !important;
  }

  .mobile\:u-right-14{
    right: 3.5rem !important;
  }

  .mobile\:u-right-16{
    right: 4rem !important;
  }

  .mobile\:u-right-20{
    right: 5rem !important;
  }

  .mobile\:u-right-24{
    right: 6rem !important;
  }

  .mobile\:u-right-28{
    right: 7rem !important;
  }

  .mobile\:u-right-32{
    right: 8rem !important;
  }

  .mobile\:u-right-36{
    right: 9rem !important;
  }

  .mobile\:u-right-40{
    right: 10rem !important;
  }

  .mobile\:u-right-44{
    right: 11rem !important;
  }

  .mobile\:u-right-48{
    right: 12rem !important;
  }

  .mobile\:u-right-52{
    right: 13rem !important;
  }

  .mobile\:u-right-56{
    right: 14rem !important;
  }

  .mobile\:u-right-60{
    right: 15rem !important;
  }

  .mobile\:u-right-64{
    right: 16rem !important;
  }

  .mobile\:u-right-72{
    right: 18rem !important;
  }

  .mobile\:u-right-80{
    right: 20rem !important;
  }

  .mobile\:u-right-96{
    right: 24rem !important;
  }

  .mobile\:u-right-auto{
    right: auto !important;
  }

  .mobile\:u-right-px{
    right: 1px !important;
  }

  .mobile\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .mobile\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .mobile\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .mobile\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .mobile\:u--right-0{
    right: 0px !important;
  }

  .mobile\:u--right-1{
    right: -0.25rem !important;
  }

  .mobile\:u--right-2{
    right: -0.5rem !important;
  }

  .mobile\:u--right-3{
    right: -0.75rem !important;
  }

  .mobile\:u--right-4{
    right: -1rem !important;
  }

  .mobile\:u--right-5{
    right: -1.25rem !important;
  }

  .mobile\:u--right-6{
    right: -1.5rem !important;
  }

  .mobile\:u--right-7{
    right: -1.75rem !important;
  }

  .mobile\:u--right-8{
    right: -2rem !important;
  }

  .mobile\:u--right-9{
    right: -2.25rem !important;
  }

  .mobile\:u--right-10{
    right: -2.5rem !important;
  }

  .mobile\:u--right-11{
    right: -2.75rem !important;
  }

  .mobile\:u--right-12{
    right: -3rem !important;
  }

  .mobile\:u--right-14{
    right: -3.5rem !important;
  }

  .mobile\:u--right-16{
    right: -4rem !important;
  }

  .mobile\:u--right-20{
    right: -5rem !important;
  }

  .mobile\:u--right-24{
    right: -6rem !important;
  }

  .mobile\:u--right-28{
    right: -7rem !important;
  }

  .mobile\:u--right-32{
    right: -8rem !important;
  }

  .mobile\:u--right-36{
    right: -9rem !important;
  }

  .mobile\:u--right-40{
    right: -10rem !important;
  }

  .mobile\:u--right-44{
    right: -11rem !important;
  }

  .mobile\:u--right-48{
    right: -12rem !important;
  }

  .mobile\:u--right-52{
    right: -13rem !important;
  }

  .mobile\:u--right-56{
    right: -14rem !important;
  }

  .mobile\:u--right-60{
    right: -15rem !important;
  }

  .mobile\:u--right-64{
    right: -16rem !important;
  }

  .mobile\:u--right-72{
    right: -18rem !important;
  }

  .mobile\:u--right-80{
    right: -20rem !important;
  }

  .mobile\:u--right-96{
    right: -24rem !important;
  }

  .mobile\:u--right-px{
    right: -1px !important;
  }

  .mobile\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .mobile\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .mobile\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .mobile\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .mobile\:u-right-1\/2{
    right: 50% !important;
  }

  .mobile\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .mobile\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .mobile\:u-right-1\/4{
    right: 25% !important;
  }

  .mobile\:u-right-2\/4{
    right: 50% !important;
  }

  .mobile\:u-right-3\/4{
    right: 75% !important;
  }

  .mobile\:u-right-full{
    right: 100% !important;
  }

  .mobile\:u--right-1\/2{
    right: -50% !important;
  }

  .mobile\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .mobile\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .mobile\:u--right-1\/4{
    right: -25% !important;
  }

  .mobile\:u--right-2\/4{
    right: -50% !important;
  }

  .mobile\:u--right-3\/4{
    right: -75% !important;
  }

  .mobile\:u--right-full{
    right: -100% !important;
  }

  .mobile\:u-bottom-0{
    bottom: 0px !important;
  }

  .mobile\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .mobile\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .mobile\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .mobile\:u-bottom-4{
    bottom: 1rem !important;
  }

  .mobile\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .mobile\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .mobile\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .mobile\:u-bottom-8{
    bottom: 2rem !important;
  }

  .mobile\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .mobile\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .mobile\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .mobile\:u-bottom-12{
    bottom: 3rem !important;
  }

  .mobile\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .mobile\:u-bottom-16{
    bottom: 4rem !important;
  }

  .mobile\:u-bottom-20{
    bottom: 5rem !important;
  }

  .mobile\:u-bottom-24{
    bottom: 6rem !important;
  }

  .mobile\:u-bottom-28{
    bottom: 7rem !important;
  }

  .mobile\:u-bottom-32{
    bottom: 8rem !important;
  }

  .mobile\:u-bottom-36{
    bottom: 9rem !important;
  }

  .mobile\:u-bottom-40{
    bottom: 10rem !important;
  }

  .mobile\:u-bottom-44{
    bottom: 11rem !important;
  }

  .mobile\:u-bottom-48{
    bottom: 12rem !important;
  }

  .mobile\:u-bottom-52{
    bottom: 13rem !important;
  }

  .mobile\:u-bottom-56{
    bottom: 14rem !important;
  }

  .mobile\:u-bottom-60{
    bottom: 15rem !important;
  }

  .mobile\:u-bottom-64{
    bottom: 16rem !important;
  }

  .mobile\:u-bottom-72{
    bottom: 18rem !important;
  }

  .mobile\:u-bottom-80{
    bottom: 20rem !important;
  }

  .mobile\:u-bottom-96{
    bottom: 24rem !important;
  }

  .mobile\:u-bottom-auto{
    bottom: auto !important;
  }

  .mobile\:u-bottom-px{
    bottom: 1px !important;
  }

  .mobile\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .mobile\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .mobile\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .mobile\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .mobile\:u--bottom-0{
    bottom: 0px !important;
  }

  .mobile\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .mobile\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .mobile\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .mobile\:u--bottom-4{
    bottom: -1rem !important;
  }

  .mobile\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .mobile\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .mobile\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .mobile\:u--bottom-8{
    bottom: -2rem !important;
  }

  .mobile\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .mobile\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .mobile\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .mobile\:u--bottom-12{
    bottom: -3rem !important;
  }

  .mobile\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .mobile\:u--bottom-16{
    bottom: -4rem !important;
  }

  .mobile\:u--bottom-20{
    bottom: -5rem !important;
  }

  .mobile\:u--bottom-24{
    bottom: -6rem !important;
  }

  .mobile\:u--bottom-28{
    bottom: -7rem !important;
  }

  .mobile\:u--bottom-32{
    bottom: -8rem !important;
  }

  .mobile\:u--bottom-36{
    bottom: -9rem !important;
  }

  .mobile\:u--bottom-40{
    bottom: -10rem !important;
  }

  .mobile\:u--bottom-44{
    bottom: -11rem !important;
  }

  .mobile\:u--bottom-48{
    bottom: -12rem !important;
  }

  .mobile\:u--bottom-52{
    bottom: -13rem !important;
  }

  .mobile\:u--bottom-56{
    bottom: -14rem !important;
  }

  .mobile\:u--bottom-60{
    bottom: -15rem !important;
  }

  .mobile\:u--bottom-64{
    bottom: -16rem !important;
  }

  .mobile\:u--bottom-72{
    bottom: -18rem !important;
  }

  .mobile\:u--bottom-80{
    bottom: -20rem !important;
  }

  .mobile\:u--bottom-96{
    bottom: -24rem !important;
  }

  .mobile\:u--bottom-px{
    bottom: -1px !important;
  }

  .mobile\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .mobile\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .mobile\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .mobile\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .mobile\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .mobile\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .mobile\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .mobile\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .mobile\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .mobile\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .mobile\:u-bottom-full{
    bottom: 100% !important;
  }

  .mobile\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .mobile\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .mobile\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .mobile\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .mobile\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .mobile\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .mobile\:u--bottom-full{
    bottom: -100% !important;
  }

  .mobile\:u-left-0{
    left: 0px !important;
  }

  .mobile\:u-left-1{
    left: 0.25rem !important;
  }

  .mobile\:u-left-2{
    left: 0.5rem !important;
  }

  .mobile\:u-left-3{
    left: 0.75rem !important;
  }

  .mobile\:u-left-4{
    left: 1rem !important;
  }

  .mobile\:u-left-5{
    left: 1.25rem !important;
  }

  .mobile\:u-left-6{
    left: 1.5rem !important;
  }

  .mobile\:u-left-7{
    left: 1.75rem !important;
  }

  .mobile\:u-left-8{
    left: 2rem !important;
  }

  .mobile\:u-left-9{
    left: 2.25rem !important;
  }

  .mobile\:u-left-10{
    left: 2.5rem !important;
  }

  .mobile\:u-left-11{
    left: 2.75rem !important;
  }

  .mobile\:u-left-12{
    left: 3rem !important;
  }

  .mobile\:u-left-14{
    left: 3.5rem !important;
  }

  .mobile\:u-left-16{
    left: 4rem !important;
  }

  .mobile\:u-left-20{
    left: 5rem !important;
  }

  .mobile\:u-left-24{
    left: 6rem !important;
  }

  .mobile\:u-left-28{
    left: 7rem !important;
  }

  .mobile\:u-left-32{
    left: 8rem !important;
  }

  .mobile\:u-left-36{
    left: 9rem !important;
  }

  .mobile\:u-left-40{
    left: 10rem !important;
  }

  .mobile\:u-left-44{
    left: 11rem !important;
  }

  .mobile\:u-left-48{
    left: 12rem !important;
  }

  .mobile\:u-left-52{
    left: 13rem !important;
  }

  .mobile\:u-left-56{
    left: 14rem !important;
  }

  .mobile\:u-left-60{
    left: 15rem !important;
  }

  .mobile\:u-left-64{
    left: 16rem !important;
  }

  .mobile\:u-left-72{
    left: 18rem !important;
  }

  .mobile\:u-left-80{
    left: 20rem !important;
  }

  .mobile\:u-left-96{
    left: 24rem !important;
  }

  .mobile\:u-left-auto{
    left: auto !important;
  }

  .mobile\:u-left-px{
    left: 1px !important;
  }

  .mobile\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .mobile\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .mobile\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .mobile\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .mobile\:u--left-0{
    left: 0px !important;
  }

  .mobile\:u--left-1{
    left: -0.25rem !important;
  }

  .mobile\:u--left-2{
    left: -0.5rem !important;
  }

  .mobile\:u--left-3{
    left: -0.75rem !important;
  }

  .mobile\:u--left-4{
    left: -1rem !important;
  }

  .mobile\:u--left-5{
    left: -1.25rem !important;
  }

  .mobile\:u--left-6{
    left: -1.5rem !important;
  }

  .mobile\:u--left-7{
    left: -1.75rem !important;
  }

  .mobile\:u--left-8{
    left: -2rem !important;
  }

  .mobile\:u--left-9{
    left: -2.25rem !important;
  }

  .mobile\:u--left-10{
    left: -2.5rem !important;
  }

  .mobile\:u--left-11{
    left: -2.75rem !important;
  }

  .mobile\:u--left-12{
    left: -3rem !important;
  }

  .mobile\:u--left-14{
    left: -3.5rem !important;
  }

  .mobile\:u--left-16{
    left: -4rem !important;
  }

  .mobile\:u--left-20{
    left: -5rem !important;
  }

  .mobile\:u--left-24{
    left: -6rem !important;
  }

  .mobile\:u--left-28{
    left: -7rem !important;
  }

  .mobile\:u--left-32{
    left: -8rem !important;
  }

  .mobile\:u--left-36{
    left: -9rem !important;
  }

  .mobile\:u--left-40{
    left: -10rem !important;
  }

  .mobile\:u--left-44{
    left: -11rem !important;
  }

  .mobile\:u--left-48{
    left: -12rem !important;
  }

  .mobile\:u--left-52{
    left: -13rem !important;
  }

  .mobile\:u--left-56{
    left: -14rem !important;
  }

  .mobile\:u--left-60{
    left: -15rem !important;
  }

  .mobile\:u--left-64{
    left: -16rem !important;
  }

  .mobile\:u--left-72{
    left: -18rem !important;
  }

  .mobile\:u--left-80{
    left: -20rem !important;
  }

  .mobile\:u--left-96{
    left: -24rem !important;
  }

  .mobile\:u--left-px{
    left: -1px !important;
  }

  .mobile\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .mobile\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .mobile\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .mobile\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .mobile\:u-left-1\/2{
    left: 50% !important;
  }

  .mobile\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .mobile\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .mobile\:u-left-1\/4{
    left: 25% !important;
  }

  .mobile\:u-left-2\/4{
    left: 50% !important;
  }

  .mobile\:u-left-3\/4{
    left: 75% !important;
  }

  .mobile\:u-left-full{
    left: 100% !important;
  }

  .mobile\:u--left-1\/2{
    left: -50% !important;
  }

  .mobile\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .mobile\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .mobile\:u--left-1\/4{
    left: -25% !important;
  }

  .mobile\:u--left-2\/4{
    left: -50% !important;
  }

  .mobile\:u--left-3\/4{
    left: -75% !important;
  }

  .mobile\:u--left-full{
    left: -100% !important;
  }

  .mobile\:u-isolate{
    isolation: isolate !important;
  }

  .mobile\:u-isolation-auto{
    isolation: auto !important;
  }

  .mobile\:u-z-0{
    z-index: 0 !important;
  }

  .mobile\:u-z-10{
    z-index: 10 !important;
  }

  .mobile\:u-z-20{
    z-index: 20 !important;
  }

  .mobile\:u-z-30{
    z-index: 30 !important;
  }

  .mobile\:u-z-40{
    z-index: 40 !important;
  }

  .mobile\:u-z-50{
    z-index: 50 !important;
  }

  .mobile\:u-z-auto{
    z-index: auto !important;
  }

  .mobile\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .mobile\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .mobile\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .mobile\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .mobile\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .mobile\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .mobile\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .mobile\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .mobile\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .mobile\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .mobile\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .mobile\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .mobile\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .mobile\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .mobile\:u-order-1{
    order: 1 !important;
  }

  .mobile\:u-order-2{
    order: 2 !important;
  }

  .mobile\:u-order-3{
    order: 3 !important;
  }

  .mobile\:u-order-4{
    order: 4 !important;
  }

  .mobile\:u-order-5{
    order: 5 !important;
  }

  .mobile\:u-order-6{
    order: 6 !important;
  }

  .mobile\:u-order-7{
    order: 7 !important;
  }

  .mobile\:u-order-8{
    order: 8 !important;
  }

  .mobile\:u-order-9{
    order: 9 !important;
  }

  .mobile\:u-order-10{
    order: 10 !important;
  }

  .mobile\:u-order-11{
    order: 11 !important;
  }

  .mobile\:u-order-12{
    order: 12 !important;
  }

  .mobile\:u-order-first{
    order: -9999 !important;
  }

  .mobile\:u-order-last{
    order: 9999 !important;
  }

  .mobile\:u-order-none{
    order: 0 !important;
  }

  .mobile\:u-col-auto{
    grid-column: auto !important;
  }

  .mobile\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .mobile\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .mobile\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .mobile\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .mobile\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .mobile\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .mobile\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .mobile\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .mobile\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .mobile\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .mobile\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .mobile\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .mobile\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .mobile\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .mobile\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .mobile\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .mobile\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .mobile\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .mobile\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .mobile\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .mobile\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .mobile\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .mobile\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .mobile\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .mobile\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .mobile\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .mobile\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .mobile\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .mobile\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .mobile\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .mobile\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .mobile\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .mobile\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .mobile\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .mobile\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .mobile\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .mobile\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .mobile\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .mobile\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .mobile\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .mobile\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .mobile\:u-row-auto{
    grid-row: auto !important;
  }

  .mobile\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .mobile\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .mobile\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .mobile\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .mobile\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .mobile\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .mobile\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .mobile\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .mobile\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .mobile\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .mobile\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .mobile\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .mobile\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .mobile\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .mobile\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .mobile\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .mobile\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .mobile\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .mobile\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .mobile\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .mobile\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .mobile\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .mobile\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .mobile\:u-float-right{
    float: right !important;
  }

  .mobile\:u-float-left{
    float: left !important;
  }

  .mobile\:u-float-none{
    float: none !important;
  }

  .mobile\:u-clear-left{
    clear: left !important;
  }

  .mobile\:u-clear-right{
    clear: right !important;
  }

  .mobile\:u-clear-both{
    clear: both !important;
  }

  .mobile\:u-clear-none{
    clear: none !important;
  }

  .mobile\:u-m-0{
    margin: 0px !important;
  }

  .mobile\:u-m-1{
    margin: 0.25rem !important;
  }

  .mobile\:u-m-2{
    margin: 0.5rem !important;
  }

  .mobile\:u-m-3{
    margin: 0.75rem !important;
  }

  .mobile\:u-m-4{
    margin: 1rem !important;
  }

  .mobile\:u-m-5{
    margin: 1.25rem !important;
  }

  .mobile\:u-m-6{
    margin: 1.5rem !important;
  }

  .mobile\:u-m-7{
    margin: 1.75rem !important;
  }

  .mobile\:u-m-8{
    margin: 2rem !important;
  }

  .mobile\:u-m-9{
    margin: 2.25rem !important;
  }

  .mobile\:u-m-10{
    margin: 2.5rem !important;
  }

  .mobile\:u-m-11{
    margin: 2.75rem !important;
  }

  .mobile\:u-m-12{
    margin: 3rem !important;
  }

  .mobile\:u-m-14{
    margin: 3.5rem !important;
  }

  .mobile\:u-m-16{
    margin: 4rem !important;
  }

  .mobile\:u-m-20{
    margin: 5rem !important;
  }

  .mobile\:u-m-24{
    margin: 6rem !important;
  }

  .mobile\:u-m-28{
    margin: 7rem !important;
  }

  .mobile\:u-m-32{
    margin: 8rem !important;
  }

  .mobile\:u-m-36{
    margin: 9rem !important;
  }

  .mobile\:u-m-40{
    margin: 10rem !important;
  }

  .mobile\:u-m-44{
    margin: 11rem !important;
  }

  .mobile\:u-m-48{
    margin: 12rem !important;
  }

  .mobile\:u-m-52{
    margin: 13rem !important;
  }

  .mobile\:u-m-56{
    margin: 14rem !important;
  }

  .mobile\:u-m-60{
    margin: 15rem !important;
  }

  .mobile\:u-m-64{
    margin: 16rem !important;
  }

  .mobile\:u-m-72{
    margin: 18rem !important;
  }

  .mobile\:u-m-80{
    margin: 20rem !important;
  }

  .mobile\:u-m-96{
    margin: 24rem !important;
  }

  .mobile\:u-m-auto{
    margin: auto !important;
  }

  .mobile\:u-m-px{
    margin: 1px !important;
  }

  .mobile\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .mobile\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .mobile\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .mobile\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .mobile\:u--m-0{
    margin: 0px !important;
  }

  .mobile\:u--m-1{
    margin: -0.25rem !important;
  }

  .mobile\:u--m-2{
    margin: -0.5rem !important;
  }

  .mobile\:u--m-3{
    margin: -0.75rem !important;
  }

  .mobile\:u--m-4{
    margin: -1rem !important;
  }

  .mobile\:u--m-5{
    margin: -1.25rem !important;
  }

  .mobile\:u--m-6{
    margin: -1.5rem !important;
  }

  .mobile\:u--m-7{
    margin: -1.75rem !important;
  }

  .mobile\:u--m-8{
    margin: -2rem !important;
  }

  .mobile\:u--m-9{
    margin: -2.25rem !important;
  }

  .mobile\:u--m-10{
    margin: -2.5rem !important;
  }

  .mobile\:u--m-11{
    margin: -2.75rem !important;
  }

  .mobile\:u--m-12{
    margin: -3rem !important;
  }

  .mobile\:u--m-14{
    margin: -3.5rem !important;
  }

  .mobile\:u--m-16{
    margin: -4rem !important;
  }

  .mobile\:u--m-20{
    margin: -5rem !important;
  }

  .mobile\:u--m-24{
    margin: -6rem !important;
  }

  .mobile\:u--m-28{
    margin: -7rem !important;
  }

  .mobile\:u--m-32{
    margin: -8rem !important;
  }

  .mobile\:u--m-36{
    margin: -9rem !important;
  }

  .mobile\:u--m-40{
    margin: -10rem !important;
  }

  .mobile\:u--m-44{
    margin: -11rem !important;
  }

  .mobile\:u--m-48{
    margin: -12rem !important;
  }

  .mobile\:u--m-52{
    margin: -13rem !important;
  }

  .mobile\:u--m-56{
    margin: -14rem !important;
  }

  .mobile\:u--m-60{
    margin: -15rem !important;
  }

  .mobile\:u--m-64{
    margin: -16rem !important;
  }

  .mobile\:u--m-72{
    margin: -18rem !important;
  }

  .mobile\:u--m-80{
    margin: -20rem !important;
  }

  .mobile\:u--m-96{
    margin: -24rem !important;
  }

  .mobile\:u--m-px{
    margin: -1px !important;
  }

  .mobile\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .mobile\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .mobile\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .mobile\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .mobile\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .mobile\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mobile\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mobile\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .mobile\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mobile\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .mobile\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mobile\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .mobile\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .mobile\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .mobile\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .mobile\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .mobile\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mobile\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .mobile\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .mobile\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mobile\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mobile\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mobile\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mobile\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mobile\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mobile\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mobile\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mobile\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mobile\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mobile\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mobile\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mobile\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mobile\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mobile\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .mobile\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mobile\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .mobile\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .mobile\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .mobile\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .mobile\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .mobile\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .mobile\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mobile\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mobile\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .mobile\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mobile\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .mobile\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mobile\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .mobile\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .mobile\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .mobile\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .mobile\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .mobile\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mobile\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .mobile\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .mobile\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mobile\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mobile\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mobile\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mobile\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mobile\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mobile\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mobile\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mobile\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mobile\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mobile\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mobile\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mobile\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mobile\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mobile\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .mobile\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .mobile\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .mobile\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .mobile\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .mobile\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .mobile\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .mobile\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .mobile\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .mobile\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .mobile\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mobile\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .mobile\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .mobile\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .mobile\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .mobile\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .mobile\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .mobile\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .mobile\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .mobile\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .mobile\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .mobile\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .mobile\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .mobile\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .mobile\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .mobile\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .mobile\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .mobile\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .mobile\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .mobile\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .mobile\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .mobile\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .mobile\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .mobile\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .mobile\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .mobile\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .mobile\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mobile\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .mobile\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .mobile\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .mobile\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .mobile\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .mobile\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .mobile\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .mobile\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .mobile\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .mobile\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .mobile\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .mobile\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .mobile\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .mobile\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .mobile\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .mobile\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .mobile\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .mobile\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mobile\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .mobile\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .mobile\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mobile\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .mobile\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .mobile\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .mobile\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .mobile\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .mobile\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .mobile\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .mobile\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .mobile\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .mobile\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .mobile\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .mobile\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .mobile\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .mobile\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .mobile\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .mobile\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .mobile\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .mobile\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .mobile\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .mobile\:u-mt-0{
    margin-top: 0px !important;
  }

  .mobile\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .mobile\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .mobile\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .mobile\:u-mt-4{
    margin-top: 1rem !important;
  }

  .mobile\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .mobile\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .mobile\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .mobile\:u-mt-8{
    margin-top: 2rem !important;
  }

  .mobile\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .mobile\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .mobile\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .mobile\:u-mt-12{
    margin-top: 3rem !important;
  }

  .mobile\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .mobile\:u-mt-16{
    margin-top: 4rem !important;
  }

  .mobile\:u-mt-20{
    margin-top: 5rem !important;
  }

  .mobile\:u-mt-24{
    margin-top: 6rem !important;
  }

  .mobile\:u-mt-28{
    margin-top: 7rem !important;
  }

  .mobile\:u-mt-32{
    margin-top: 8rem !important;
  }

  .mobile\:u-mt-36{
    margin-top: 9rem !important;
  }

  .mobile\:u-mt-40{
    margin-top: 10rem !important;
  }

  .mobile\:u-mt-44{
    margin-top: 11rem !important;
  }

  .mobile\:u-mt-48{
    margin-top: 12rem !important;
  }

  .mobile\:u-mt-52{
    margin-top: 13rem !important;
  }

  .mobile\:u-mt-56{
    margin-top: 14rem !important;
  }

  .mobile\:u-mt-60{
    margin-top: 15rem !important;
  }

  .mobile\:u-mt-64{
    margin-top: 16rem !important;
  }

  .mobile\:u-mt-72{
    margin-top: 18rem !important;
  }

  .mobile\:u-mt-80{
    margin-top: 20rem !important;
  }

  .mobile\:u-mt-96{
    margin-top: 24rem !important;
  }

  .mobile\:u-mt-auto{
    margin-top: auto !important;
  }

  .mobile\:u-mt-px{
    margin-top: 1px !important;
  }

  .mobile\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .mobile\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .mobile\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .mobile\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .mobile\:u--mt-0{
    margin-top: 0px !important;
  }

  .mobile\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .mobile\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .mobile\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .mobile\:u--mt-4{
    margin-top: -1rem !important;
  }

  .mobile\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .mobile\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .mobile\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .mobile\:u--mt-8{
    margin-top: -2rem !important;
  }

  .mobile\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .mobile\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .mobile\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .mobile\:u--mt-12{
    margin-top: -3rem !important;
  }

  .mobile\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .mobile\:u--mt-16{
    margin-top: -4rem !important;
  }

  .mobile\:u--mt-20{
    margin-top: -5rem !important;
  }

  .mobile\:u--mt-24{
    margin-top: -6rem !important;
  }

  .mobile\:u--mt-28{
    margin-top: -7rem !important;
  }

  .mobile\:u--mt-32{
    margin-top: -8rem !important;
  }

  .mobile\:u--mt-36{
    margin-top: -9rem !important;
  }

  .mobile\:u--mt-40{
    margin-top: -10rem !important;
  }

  .mobile\:u--mt-44{
    margin-top: -11rem !important;
  }

  .mobile\:u--mt-48{
    margin-top: -12rem !important;
  }

  .mobile\:u--mt-52{
    margin-top: -13rem !important;
  }

  .mobile\:u--mt-56{
    margin-top: -14rem !important;
  }

  .mobile\:u--mt-60{
    margin-top: -15rem !important;
  }

  .mobile\:u--mt-64{
    margin-top: -16rem !important;
  }

  .mobile\:u--mt-72{
    margin-top: -18rem !important;
  }

  .mobile\:u--mt-80{
    margin-top: -20rem !important;
  }

  .mobile\:u--mt-96{
    margin-top: -24rem !important;
  }

  .mobile\:u--mt-px{
    margin-top: -1px !important;
  }

  .mobile\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .mobile\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .mobile\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .mobile\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .mobile\:u-mr-0{
    margin-right: 0px !important;
  }

  .mobile\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .mobile\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .mobile\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .mobile\:u-mr-4{
    margin-right: 1rem !important;
  }

  .mobile\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .mobile\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .mobile\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .mobile\:u-mr-8{
    margin-right: 2rem !important;
  }

  .mobile\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .mobile\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .mobile\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .mobile\:u-mr-12{
    margin-right: 3rem !important;
  }

  .mobile\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .mobile\:u-mr-16{
    margin-right: 4rem !important;
  }

  .mobile\:u-mr-20{
    margin-right: 5rem !important;
  }

  .mobile\:u-mr-24{
    margin-right: 6rem !important;
  }

  .mobile\:u-mr-28{
    margin-right: 7rem !important;
  }

  .mobile\:u-mr-32{
    margin-right: 8rem !important;
  }

  .mobile\:u-mr-36{
    margin-right: 9rem !important;
  }

  .mobile\:u-mr-40{
    margin-right: 10rem !important;
  }

  .mobile\:u-mr-44{
    margin-right: 11rem !important;
  }

  .mobile\:u-mr-48{
    margin-right: 12rem !important;
  }

  .mobile\:u-mr-52{
    margin-right: 13rem !important;
  }

  .mobile\:u-mr-56{
    margin-right: 14rem !important;
  }

  .mobile\:u-mr-60{
    margin-right: 15rem !important;
  }

  .mobile\:u-mr-64{
    margin-right: 16rem !important;
  }

  .mobile\:u-mr-72{
    margin-right: 18rem !important;
  }

  .mobile\:u-mr-80{
    margin-right: 20rem !important;
  }

  .mobile\:u-mr-96{
    margin-right: 24rem !important;
  }

  .mobile\:u-mr-auto{
    margin-right: auto !important;
  }

  .mobile\:u-mr-px{
    margin-right: 1px !important;
  }

  .mobile\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .mobile\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .mobile\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .mobile\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .mobile\:u--mr-0{
    margin-right: 0px !important;
  }

  .mobile\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .mobile\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .mobile\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .mobile\:u--mr-4{
    margin-right: -1rem !important;
  }

  .mobile\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .mobile\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .mobile\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .mobile\:u--mr-8{
    margin-right: -2rem !important;
  }

  .mobile\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .mobile\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .mobile\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .mobile\:u--mr-12{
    margin-right: -3rem !important;
  }

  .mobile\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .mobile\:u--mr-16{
    margin-right: -4rem !important;
  }

  .mobile\:u--mr-20{
    margin-right: -5rem !important;
  }

  .mobile\:u--mr-24{
    margin-right: -6rem !important;
  }

  .mobile\:u--mr-28{
    margin-right: -7rem !important;
  }

  .mobile\:u--mr-32{
    margin-right: -8rem !important;
  }

  .mobile\:u--mr-36{
    margin-right: -9rem !important;
  }

  .mobile\:u--mr-40{
    margin-right: -10rem !important;
  }

  .mobile\:u--mr-44{
    margin-right: -11rem !important;
  }

  .mobile\:u--mr-48{
    margin-right: -12rem !important;
  }

  .mobile\:u--mr-52{
    margin-right: -13rem !important;
  }

  .mobile\:u--mr-56{
    margin-right: -14rem !important;
  }

  .mobile\:u--mr-60{
    margin-right: -15rem !important;
  }

  .mobile\:u--mr-64{
    margin-right: -16rem !important;
  }

  .mobile\:u--mr-72{
    margin-right: -18rem !important;
  }

  .mobile\:u--mr-80{
    margin-right: -20rem !important;
  }

  .mobile\:u--mr-96{
    margin-right: -24rem !important;
  }

  .mobile\:u--mr-px{
    margin-right: -1px !important;
  }

  .mobile\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .mobile\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .mobile\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .mobile\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .mobile\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .mobile\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .mobile\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .mobile\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .mobile\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .mobile\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .mobile\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .mobile\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .mobile\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .mobile\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .mobile\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .mobile\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .mobile\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .mobile\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .mobile\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .mobile\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .mobile\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .mobile\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .mobile\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .mobile\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .mobile\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .mobile\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .mobile\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .mobile\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .mobile\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .mobile\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .mobile\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .mobile\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .mobile\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .mobile\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .mobile\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .mobile\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .mobile\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .mobile\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .mobile\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .mobile\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .mobile\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .mobile\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .mobile\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .mobile\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .mobile\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .mobile\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .mobile\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .mobile\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .mobile\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .mobile\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .mobile\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .mobile\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .mobile\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .mobile\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .mobile\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .mobile\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .mobile\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .mobile\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .mobile\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .mobile\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .mobile\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .mobile\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .mobile\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .mobile\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .mobile\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .mobile\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .mobile\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .mobile\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .mobile\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .mobile\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .mobile\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .mobile\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .mobile\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .mobile\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .mobile\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .mobile\:u-ml-0{
    margin-left: 0px !important;
  }

  .mobile\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .mobile\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .mobile\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .mobile\:u-ml-4{
    margin-left: 1rem !important;
  }

  .mobile\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .mobile\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .mobile\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .mobile\:u-ml-8{
    margin-left: 2rem !important;
  }

  .mobile\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .mobile\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .mobile\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .mobile\:u-ml-12{
    margin-left: 3rem !important;
  }

  .mobile\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .mobile\:u-ml-16{
    margin-left: 4rem !important;
  }

  .mobile\:u-ml-20{
    margin-left: 5rem !important;
  }

  .mobile\:u-ml-24{
    margin-left: 6rem !important;
  }

  .mobile\:u-ml-28{
    margin-left: 7rem !important;
  }

  .mobile\:u-ml-32{
    margin-left: 8rem !important;
  }

  .mobile\:u-ml-36{
    margin-left: 9rem !important;
  }

  .mobile\:u-ml-40{
    margin-left: 10rem !important;
  }

  .mobile\:u-ml-44{
    margin-left: 11rem !important;
  }

  .mobile\:u-ml-48{
    margin-left: 12rem !important;
  }

  .mobile\:u-ml-52{
    margin-left: 13rem !important;
  }

  .mobile\:u-ml-56{
    margin-left: 14rem !important;
  }

  .mobile\:u-ml-60{
    margin-left: 15rem !important;
  }

  .mobile\:u-ml-64{
    margin-left: 16rem !important;
  }

  .mobile\:u-ml-72{
    margin-left: 18rem !important;
  }

  .mobile\:u-ml-80{
    margin-left: 20rem !important;
  }

  .mobile\:u-ml-96{
    margin-left: 24rem !important;
  }

  .mobile\:u-ml-auto{
    margin-left: auto !important;
  }

  .mobile\:u-ml-px{
    margin-left: 1px !important;
  }

  .mobile\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .mobile\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .mobile\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .mobile\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .mobile\:u--ml-0{
    margin-left: 0px !important;
  }

  .mobile\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .mobile\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .mobile\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .mobile\:u--ml-4{
    margin-left: -1rem !important;
  }

  .mobile\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .mobile\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .mobile\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .mobile\:u--ml-8{
    margin-left: -2rem !important;
  }

  .mobile\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .mobile\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .mobile\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .mobile\:u--ml-12{
    margin-left: -3rem !important;
  }

  .mobile\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .mobile\:u--ml-16{
    margin-left: -4rem !important;
  }

  .mobile\:u--ml-20{
    margin-left: -5rem !important;
  }

  .mobile\:u--ml-24{
    margin-left: -6rem !important;
  }

  .mobile\:u--ml-28{
    margin-left: -7rem !important;
  }

  .mobile\:u--ml-32{
    margin-left: -8rem !important;
  }

  .mobile\:u--ml-36{
    margin-left: -9rem !important;
  }

  .mobile\:u--ml-40{
    margin-left: -10rem !important;
  }

  .mobile\:u--ml-44{
    margin-left: -11rem !important;
  }

  .mobile\:u--ml-48{
    margin-left: -12rem !important;
  }

  .mobile\:u--ml-52{
    margin-left: -13rem !important;
  }

  .mobile\:u--ml-56{
    margin-left: -14rem !important;
  }

  .mobile\:u--ml-60{
    margin-left: -15rem !important;
  }

  .mobile\:u--ml-64{
    margin-left: -16rem !important;
  }

  .mobile\:u--ml-72{
    margin-left: -18rem !important;
  }

  .mobile\:u--ml-80{
    margin-left: -20rem !important;
  }

  .mobile\:u--ml-96{
    margin-left: -24rem !important;
  }

  .mobile\:u--ml-px{
    margin-left: -1px !important;
  }

  .mobile\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .mobile\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .mobile\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .mobile\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .mobile\:u-box-border{
    box-sizing: border-box !important;
  }

  .mobile\:u-box-content{
    box-sizing: content-box !important;
  }

  .mobile\:u-block{
    display: block !important;
  }

  .mobile\:u-inline-block{
    display: inline-block !important;
  }

  .mobile\:u-inline{
    display: inline !important;
  }

  .mobile\:u-flex{
    display: flex !important;
  }

  .mobile\:u-inline-flex{
    display: inline-flex !important;
  }

  .mobile\:u-table{
    display: table !important;
  }

  .mobile\:u-inline-table{
    display: inline-table !important;
  }

  .mobile\:u-table-caption{
    display: table-caption !important;
  }

  .mobile\:u-table-cell{
    display: table-cell !important;
  }

  .mobile\:u-table-column{
    display: table-column !important;
  }

  .mobile\:u-table-column-group{
    display: table-column-group !important;
  }

  .mobile\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .mobile\:u-table-header-group{
    display: table-header-group !important;
  }

  .mobile\:u-table-row-group{
    display: table-row-group !important;
  }

  .mobile\:u-table-row{
    display: table-row !important;
  }

  .mobile\:u-flow-root{
    display: flow-root !important;
  }

  .mobile\:u-grid{
    display: grid !important;
  }

  .mobile\:u-inline-grid{
    display: inline-grid !important;
  }

  .mobile\:u-contents{
    display: contents !important;
  }

  .mobile\:u-list-item{
    display: list-item !important;
  }

  .mobile\:u-hidden{
    display: none !important;
  }

  .mobile\:u-h-0{
    height: 0px !important;
  }

  .mobile\:u-h-1{
    height: 0.25rem !important;
  }

  .mobile\:u-h-2{
    height: 0.5rem !important;
  }

  .mobile\:u-h-3{
    height: 0.75rem !important;
  }

  .mobile\:u-h-4{
    height: 1rem !important;
  }

  .mobile\:u-h-5{
    height: 1.25rem !important;
  }

  .mobile\:u-h-6{
    height: 1.5rem !important;
  }

  .mobile\:u-h-7{
    height: 1.75rem !important;
  }

  .mobile\:u-h-8{
    height: 2rem !important;
  }

  .mobile\:u-h-9{
    height: 2.25rem !important;
  }

  .mobile\:u-h-10{
    height: 2.5rem !important;
  }

  .mobile\:u-h-11{
    height: 2.75rem !important;
  }

  .mobile\:u-h-12{
    height: 3rem !important;
  }

  .mobile\:u-h-14{
    height: 3.5rem !important;
  }

  .mobile\:u-h-16{
    height: 4rem !important;
  }

  .mobile\:u-h-20{
    height: 5rem !important;
  }

  .mobile\:u-h-24{
    height: 6rem !important;
  }

  .mobile\:u-h-28{
    height: 7rem !important;
  }

  .mobile\:u-h-32{
    height: 8rem !important;
  }

  .mobile\:u-h-36{
    height: 9rem !important;
  }

  .mobile\:u-h-40{
    height: 10rem !important;
  }

  .mobile\:u-h-44{
    height: 11rem !important;
  }

  .mobile\:u-h-48{
    height: 12rem !important;
  }

  .mobile\:u-h-52{
    height: 13rem !important;
  }

  .mobile\:u-h-56{
    height: 14rem !important;
  }

  .mobile\:u-h-60{
    height: 15rem !important;
  }

  .mobile\:u-h-64{
    height: 16rem !important;
  }

  .mobile\:u-h-72{
    height: 18rem !important;
  }

  .mobile\:u-h-80{
    height: 20rem !important;
  }

  .mobile\:u-h-96{
    height: 24rem !important;
  }

  .mobile\:u-h-auto{
    height: auto !important;
  }

  .mobile\:u-h-px{
    height: 1px !important;
  }

  .mobile\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .mobile\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .mobile\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .mobile\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .mobile\:u-h-1\/2{
    height: 50% !important;
  }

  .mobile\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .mobile\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .mobile\:u-h-1\/4{
    height: 25% !important;
  }

  .mobile\:u-h-2\/4{
    height: 50% !important;
  }

  .mobile\:u-h-3\/4{
    height: 75% !important;
  }

  .mobile\:u-h-1\/5{
    height: 20% !important;
  }

  .mobile\:u-h-2\/5{
    height: 40% !important;
  }

  .mobile\:u-h-3\/5{
    height: 60% !important;
  }

  .mobile\:u-h-4\/5{
    height: 80% !important;
  }

  .mobile\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .mobile\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .mobile\:u-h-3\/6{
    height: 50% !important;
  }

  .mobile\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .mobile\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .mobile\:u-h-full{
    height: 100% !important;
  }

  .mobile\:u-h-screen{
    height: 100vh !important;
  }

  .mobile\:u-max-h-0{
    max-height: 0px !important;
  }

  .mobile\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .mobile\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .mobile\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .mobile\:u-max-h-4{
    max-height: 1rem !important;
  }

  .mobile\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .mobile\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .mobile\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .mobile\:u-max-h-8{
    max-height: 2rem !important;
  }

  .mobile\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .mobile\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .mobile\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .mobile\:u-max-h-12{
    max-height: 3rem !important;
  }

  .mobile\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .mobile\:u-max-h-16{
    max-height: 4rem !important;
  }

  .mobile\:u-max-h-20{
    max-height: 5rem !important;
  }

  .mobile\:u-max-h-24{
    max-height: 6rem !important;
  }

  .mobile\:u-max-h-28{
    max-height: 7rem !important;
  }

  .mobile\:u-max-h-32{
    max-height: 8rem !important;
  }

  .mobile\:u-max-h-36{
    max-height: 9rem !important;
  }

  .mobile\:u-max-h-40{
    max-height: 10rem !important;
  }

  .mobile\:u-max-h-44{
    max-height: 11rem !important;
  }

  .mobile\:u-max-h-48{
    max-height: 12rem !important;
  }

  .mobile\:u-max-h-52{
    max-height: 13rem !important;
  }

  .mobile\:u-max-h-56{
    max-height: 14rem !important;
  }

  .mobile\:u-max-h-60{
    max-height: 15rem !important;
  }

  .mobile\:u-max-h-64{
    max-height: 16rem !important;
  }

  .mobile\:u-max-h-72{
    max-height: 18rem !important;
  }

  .mobile\:u-max-h-80{
    max-height: 20rem !important;
  }

  .mobile\:u-max-h-96{
    max-height: 24rem !important;
  }

  .mobile\:u-max-h-px{
    max-height: 1px !important;
  }

  .mobile\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .mobile\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .mobile\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .mobile\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .mobile\:u-max-h-full{
    max-height: 100% !important;
  }

  .mobile\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .mobile\:u-min-h-0{
    min-height: 0px !important;
  }

  .mobile\:u-min-h-full{
    min-height: 100% !important;
  }

  .mobile\:u-min-h-screen{
    min-height: 100vh !important;
  }

  .mobile\:u-w-0{
    width: 0px !important;
  }

  .mobile\:u-w-1{
    width: 0.25rem !important;
  }

  .mobile\:u-w-2{
    width: 0.5rem !important;
  }

  .mobile\:u-w-3{
    width: 0.75rem !important;
  }

  .mobile\:u-w-4{
    width: 1rem !important;
  }

  .mobile\:u-w-5{
    width: 1.25rem !important;
  }

  .mobile\:u-w-6{
    width: 1.5rem !important;
  }

  .mobile\:u-w-7{
    width: 1.75rem !important;
  }

  .mobile\:u-w-8{
    width: 2rem !important;
  }

  .mobile\:u-w-9{
    width: 2.25rem !important;
  }

  .mobile\:u-w-10{
    width: 2.5rem !important;
  }

  .mobile\:u-w-11{
    width: 2.75rem !important;
  }

  .mobile\:u-w-12{
    width: 3rem !important;
  }

  .mobile\:u-w-14{
    width: 3.5rem !important;
  }

  .mobile\:u-w-16{
    width: 4rem !important;
  }

  .mobile\:u-w-20{
    width: 5rem !important;
  }

  .mobile\:u-w-24{
    width: 6rem !important;
  }

  .mobile\:u-w-28{
    width: 7rem !important;
  }

  .mobile\:u-w-32{
    width: 8rem !important;
  }

  .mobile\:u-w-36{
    width: 9rem !important;
  }

  .mobile\:u-w-40{
    width: 10rem !important;
  }

  .mobile\:u-w-44{
    width: 11rem !important;
  }

  .mobile\:u-w-48{
    width: 12rem !important;
  }

  .mobile\:u-w-52{
    width: 13rem !important;
  }

  .mobile\:u-w-56{
    width: 14rem !important;
  }

  .mobile\:u-w-60{
    width: 15rem !important;
  }

  .mobile\:u-w-64{
    width: 16rem !important;
  }

  .mobile\:u-w-72{
    width: 18rem !important;
  }

  .mobile\:u-w-80{
    width: 20rem !important;
  }

  .mobile\:u-w-96{
    width: 24rem !important;
  }

  .mobile\:u-w-auto{
    width: auto !important;
  }

  .mobile\:u-w-px{
    width: 1px !important;
  }

  .mobile\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .mobile\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .mobile\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .mobile\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .mobile\:u-w-1\/2{
    width: 50% !important;
  }

  .mobile\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .mobile\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .mobile\:u-w-1\/4{
    width: 25% !important;
  }

  .mobile\:u-w-2\/4{
    width: 50% !important;
  }

  .mobile\:u-w-3\/4{
    width: 75% !important;
  }

  .mobile\:u-w-1\/5{
    width: 20% !important;
  }

  .mobile\:u-w-2\/5{
    width: 40% !important;
  }

  .mobile\:u-w-3\/5{
    width: 60% !important;
  }

  .mobile\:u-w-4\/5{
    width: 80% !important;
  }

  .mobile\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .mobile\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .mobile\:u-w-3\/6{
    width: 50% !important;
  }

  .mobile\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .mobile\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .mobile\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .mobile\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .mobile\:u-w-3\/12{
    width: 25% !important;
  }

  .mobile\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .mobile\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .mobile\:u-w-6\/12{
    width: 50% !important;
  }

  .mobile\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .mobile\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .mobile\:u-w-9\/12{
    width: 75% !important;
  }

  .mobile\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .mobile\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .mobile\:u-w-full{
    width: 100% !important;
  }

  .mobile\:u-w-screen{
    width: 100vw !important;
  }

  .mobile\:u-w-min{
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .mobile\:u-w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .mobile\:u-min-w-0{
    min-width: 0px !important;
  }

  .mobile\:u-min-w-full{
    min-width: 100% !important;
  }

  .mobile\:u-min-w-min{
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .mobile\:u-min-w-max{
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .mobile\:u-max-w-0{
    max-width: 0rem !important;
  }

  .mobile\:u-max-w-none{
    max-width: none !important;
  }

  .mobile\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .mobile\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .mobile\:u-max-w-md{
    max-width: 28rem !important;
  }

  .mobile\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .mobile\:u-max-w-xl{
    max-width: 36rem !important;
  }

  .mobile\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .mobile\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .mobile\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .mobile\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .mobile\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .mobile\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .mobile\:u-max-w-full{
    max-width: 100% !important;
  }

  .mobile\:u-max-w-min{
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .mobile\:u-max-w-max{
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .mobile\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .mobile\:u-max-w-screen-mobile{
    max-width: 375px !important;
  }

  .mobile\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .mobile\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .mobile\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .mobile\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .mobile\:u-max-w-screen-desktop{
    max-width: 1280px !important;
  }

  .mobile\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .mobile\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .mobile\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .mobile\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .mobile\:u-max-w-desktop{
    max-width: 1280px !important;
  }

  .mobile\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .mobile\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .mobile\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .mobile\:u-flex-none{
    flex: none !important;
  }

  .mobile\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .mobile\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .mobile\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .mobile\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .mobile\:u-table-auto{
    table-layout: auto !important;
  }

  .mobile\:u-table-fixed{
    table-layout: fixed !important;
  }

  .mobile\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .mobile\:u-border-separate{
    border-collapse: separate !important;
  }

  .mobile\:u-origin-center{
    transform-origin: center !important;
  }

  .mobile\:u-origin-top{
    transform-origin: top !important;
  }

  .mobile\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .mobile\:u-origin-right{
    transform-origin: right !important;
  }

  .mobile\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .mobile\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .mobile\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .mobile\:u-origin-left{
    transform-origin: left !important;
  }

  .mobile\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .mobile\: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\: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\:u-transform-none{
    transform: none !important;
  }

  .mobile\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .mobile\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .mobile\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .mobile\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .mobile\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .mobile\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .mobile\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .mobile\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .mobile\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .mobile\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .mobile\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .mobile\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .mobile\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .mobile\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .mobile\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .mobile\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .mobile\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .mobile\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .mobile\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .mobile\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .mobile\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .mobile\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .mobile\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .mobile\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .mobile\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .mobile\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .mobile\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .mobile\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .mobile\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .mobile\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .mobile\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .mobile\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .mobile\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .mobile\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .mobile\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .mobile\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .mobile\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .mobile\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .mobile\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .mobile\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .mobile\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .mobile\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .mobile\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .mobile\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .mobile\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .mobile\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .mobile\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .mobile\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .mobile\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .mobile\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .mobile\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .mobile\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .mobile\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .mobile\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .mobile\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .mobile\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .mobile\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .mobile\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .mobile\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .mobile\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .mobile\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .mobile\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .mobile\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .mobile\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .mobile\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .mobile\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .mobile\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .mobile\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .mobile\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .mobile\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .mobile\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .mobile\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .mobile\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .mobile\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .mobile\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .mobile\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .mobile\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .mobile\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .mobile\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .mobile\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .mobile\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .mobile\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .mobile\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .mobile\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .mobile\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .mobile\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .mobile\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .mobile\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .mobile\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .mobile\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .mobile\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .mobile\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .mobile\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .mobile\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .mobile\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .mobile\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .mobile\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .mobile\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .mobile\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .mobile\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .mobile\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .mobile\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .mobile\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .mobile\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .mobile\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .mobile\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .mobile\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .mobile\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .mobile\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .mobile\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .mobile\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .mobile\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .mobile\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .mobile\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .mobile\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .mobile\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .mobile\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .mobile\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .mobile\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .mobile\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .mobile\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .mobile\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .mobile\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .mobile\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .mobile\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .mobile\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .mobile\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .mobile\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .mobile\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .mobile\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .mobile\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .mobile\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .mobile\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .mobile\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .mobile\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .mobile\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .mobile\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .mobile\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .mobile\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .mobile\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .mobile\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .mobile\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .mobile\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .mobile\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .mobile\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .mobile\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .mobile\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .mobile\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .mobile\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .mobile\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .mobile\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .mobile\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .mobile\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .mobile\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .mobile\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .mobile\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .mobile\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .mobile\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .mobile\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .mobile\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .mobile\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .mobile\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .mobile\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .mobile\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .mobile\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .mobile\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .mobile\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .mobile\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .mobile\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .mobile\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .mobile\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .mobile\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .mobile\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .mobile\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .mobile\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .mobile\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .mobile\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .mobile\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .mobile\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .mobile\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .mobile\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .mobile\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .mobile\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .mobile\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .mobile\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .mobile\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .mobile\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .mobile\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .mobile\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .mobile\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .mobile\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .mobile\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .mobile\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .mobile\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .mobile\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .mobile\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .mobile\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .mobile\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .mobile\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .mobile\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .mobile\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .mobile\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .mobile\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .mobile\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .mobile\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .mobile\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .mobile\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .mobile\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .mobile\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .mobile\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .mobile\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .mobile\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .mobile\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .mobile\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .mobile\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .mobile\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .mobile\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .mobile\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .mobile\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .mobile\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .mobile\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .mobile\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .mobile\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .mobile\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .mobile\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .mobile\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .mobile\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .mobile\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .mobile\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .mobile\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .mobile\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .mobile\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .mobile\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .mobile\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .mobile\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .mobile\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .mobile\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .mobile\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .mobile\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .mobile\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .mobile\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .mobile\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .mobile\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .mobile\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .mobile\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .mobile\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .mobile\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .mobile\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .mobile\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .mobile\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .mobile\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .mobile\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .mobile\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .mobile\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .mobile\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .mobile\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .mobile\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .mobile\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .mobile\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .mobile\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .mobile\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .mobile\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .mobile\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .mobile\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .mobile\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .mobile\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .mobile\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .mobile\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .mobile\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .mobile\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .mobile\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .mobile\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .mobile\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .mobile\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .mobile\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .mobile\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .mobile\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .mobile\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .mobile\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .mobile\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .mobile\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .mobile\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .mobile\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .mobile\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .mobile\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .mobile\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .mobile\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .mobile\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .mobile\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .mobile\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .mobile\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .mobile\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .mobile\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .mobile\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .mobile\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .mobile\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .mobile\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .mobile\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .mobile\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .mobile\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .mobile\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .mobile\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .mobile\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .mobile\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .mobile\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .mobile\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .mobile\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .mobile\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .mobile\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .mobile\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .mobile\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .mobile\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .mobile\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .mobile\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .mobile\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .mobile\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .mobile\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .mobile\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .mobile\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .mobile\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .mobile\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .mobile\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .mobile\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .mobile\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .mobile\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .mobile\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .mobile\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .mobile\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .mobile\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .mobile\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .mobile\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .mobile\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .mobile\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .mobile\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .mobile\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .mobile\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .mobile\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .mobile\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .mobile\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .mobile\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .mobile\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .mobile\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .mobile\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .mobile\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .mobile\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .mobile\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .mobile\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .mobile\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .mobile\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .mobile\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .mobile\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .mobile\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .mobile\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .mobile\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .mobile\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .mobile\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .mobile\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .mobile\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .mobile\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .mobile\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .mobile\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .mobile\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .mobile\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .mobile\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .mobile\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .mobile\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .mobile\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .mobile\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .mobile\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .mobile\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .mobile\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .mobile\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .mobile\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .mobile\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .mobile\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .mobile\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .mobile\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .mobile\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .mobile\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .mobile\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .mobile\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .mobile\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .mobile\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .mobile\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .mobile\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .mobile\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .mobile\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .mobile\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .mobile\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .mobile\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .mobile\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .mobile\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .mobile\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .mobile\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .mobile\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .mobile\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .mobile\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .mobile\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .mobile\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .mobile\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .mobile\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .mobile\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .mobile\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .mobile\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .mobile\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .mobile\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .mobile\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .mobile\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .mobile\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .mobile\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .mobile\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .mobile\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .mobile\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .mobile\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .mobile\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .mobile\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .mobile\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .mobile\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .mobile\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .mobile\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .mobile\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .mobile\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .mobile\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .mobile\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .mobile\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .mobile\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .mobile\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .mobile\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .mobile\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .mobile\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .mobile\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .mobile\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .mobile\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .mobile\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .mobile\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .mobile\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .mobile\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .mobile\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .mobile\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .mobile\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .mobile\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .mobile\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .mobile\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .mobile\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .mobile\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .mobile\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .mobile\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .mobile\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .mobile\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .mobile\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .mobile\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .mobile\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .mobile\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .mobile\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .mobile\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .mobile\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .mobile\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .mobile\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .mobile\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .mobile\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .mobile\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .mobile\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .mobile\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .mobile\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .mobile\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .mobile\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .mobile\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .mobile\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .mobile\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .mobile\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .mobile\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .mobile\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .mobile\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .mobile\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .mobile\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .mobile\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .mobile\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .mobile\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .mobile\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .mobile\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .mobile\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .mobile\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .mobile\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .mobile\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .mobile\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .mobile\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .mobile\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .mobile\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .mobile\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .mobile\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .mobile\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .mobile\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .mobile\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .mobile\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .mobile\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .mobile\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .mobile\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .mobile\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .mobile\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .mobile\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .mobile\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .mobile\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .mobile\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .mobile\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .mobile\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .mobile\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .mobile\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .mobile\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .mobile\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .mobile\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .mobile\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .mobile\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .mobile\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .mobile\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .mobile\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .mobile\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .mobile\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .mobile\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .mobile\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .mobile\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .mobile\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .mobile\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .mobile\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .mobile\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .mobile\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .mobile\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .mobile\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .mobile\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .mobile\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .mobile\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .mobile\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .mobile\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .mobile\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .mobile\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .mobile\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .mobile\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .mobile\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .mobile\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .mobile\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .mobile\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .mobile\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .mobile\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .mobile\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .mobile\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .mobile\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .mobile\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .mobile\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .mobile\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .mobile\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .mobile\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .mobile\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .mobile\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .mobile\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .mobile\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .mobile\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .mobile\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .mobile\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .mobile\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .mobile\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .mobile\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .mobile\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .mobile\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .mobile\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .mobile\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .mobile\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .mobile\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .mobile\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .mobile\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .mobile\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .mobile\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .mobile\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .mobile\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .mobile\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .mobile\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .mobile\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .mobile\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .mobile\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .mobile\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .mobile\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .mobile\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .mobile\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .mobile\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .mobile\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .mobile\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .mobile\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .mobile\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .mobile\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .mobile\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .mobile\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .mobile\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .mobile\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .mobile\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .mobile\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .mobile\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .mobile\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .mobile\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .mobile\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .mobile\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .mobile\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .mobile\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .mobile\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .mobile\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .mobile\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .mobile\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .mobile\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .mobile\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .mobile\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .mobile\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .mobile\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .mobile\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .mobile\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .mobile\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .mobile\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .mobile\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .mobile\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .mobile\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .mobile\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .mobile\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .mobile\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .mobile\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .mobile\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .mobile\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .mobile\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .mobile\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .mobile\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .mobile\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .mobile\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .mobile\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .mobile\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .mobile\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .mobile\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .mobile\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .mobile\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .mobile\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .mobile\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .mobile\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .mobile\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .mobile\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .mobile\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .mobile\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .mobile\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .mobile\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .mobile\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .mobile\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .mobile\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .mobile\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .mobile\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .mobile\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .mobile\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .mobile\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .mobile\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .mobile\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .mobile\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .mobile\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .mobile\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .mobile\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .mobile\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .mobile\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .mobile\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .mobile\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .mobile\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .mobile\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .mobile\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .mobile\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .mobile\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .mobile\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .mobile\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .mobile\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .mobile\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .mobile\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .mobile\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .mobile\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .mobile\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .mobile\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .mobile\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .mobile\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .mobile\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .mobile\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .mobile\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .mobile\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .mobile\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .mobile\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .mobile\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .mobile\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .mobile\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .mobile\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .mobile\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .mobile\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .mobile\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .mobile\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .mobile\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .mobile\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .mobile\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .mobile\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .mobile\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .mobile\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .mobile\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .mobile\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .mobile\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .mobile\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .mobile\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .mobile\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .mobile\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .mobile\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .mobile\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .mobile\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .mobile\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .mobile\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .mobile\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .mobile\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .mobile\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .mobile\:u-animate-none{
    animation: none !important;
  }

  .mobile\:u-animate-spin{
    animation: u-spin 1s linear infinite !important;
  }

  .mobile\:u-animate-ping{
    animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .mobile\:u-animate-pulse{
    animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .mobile\:u-animate-bounce{
    animation: u-bounce 1s infinite !important;
  }

  .mobile\:u-cursor-auto{
    cursor: auto !important;
  }

  .mobile\:u-cursor-default{
    cursor: default !important;
  }

  .mobile\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .mobile\:u-cursor-wait{
    cursor: wait !important;
  }

  .mobile\:u-cursor-text{
    cursor: text !important;
  }

  .mobile\:u-cursor-move{
    cursor: move !important;
  }

  .mobile\:u-cursor-help{
    cursor: help !important;
  }

  .mobile\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .mobile\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .mobile\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .mobile\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .mobile\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .mobile\:u-resize-none{
    resize: none !important;
  }

  .mobile\:u-resize-y{
    resize: vertical !important;
  }

  .mobile\:u-resize-x{
    resize: horizontal !important;
  }

  .mobile\:u-resize{
    resize: both !important;
  }

  .mobile\:u-list-inside{
    list-style-position: inside !important;
  }

  .mobile\:u-list-outside{
    list-style-position: outside !important;
  }

  .mobile\:u-list-none{
    list-style-type: none !important;
  }

  .mobile\:u-list-disc{
    list-style-type: disc !important;
  }

  .mobile\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .mobile\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .mobile\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .mobile\:u-auto-cols-min{
    grid-auto-columns: min-content !important;
  }

  .mobile\:u-auto-cols-max{
    grid-auto-columns: max-content !important;
  }

  .mobile\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .mobile\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .mobile\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .mobile\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .mobile\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .mobile\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .mobile\:u-auto-rows-min{
    grid-auto-rows: min-content !important;
  }

  .mobile\:u-auto-rows-max{
    grid-auto-rows: max-content !important;
  }

  .mobile\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .mobile\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .mobile\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .mobile\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .mobile\:u-flex-row{
    flex-direction: row !important;
  }

  .mobile\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .mobile\:u-flex-col{
    flex-direction: column !important;
  }

  .mobile\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .mobile\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .mobile\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .mobile\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .mobile\:u-place-content-center{
    place-content: center !important;
  }

  .mobile\:u-place-content-start{
    place-content: start !important;
  }

  .mobile\:u-place-content-end{
    place-content: end !important;
  }

  .mobile\:u-place-content-between{
    place-content: space-between !important;
  }

  .mobile\:u-place-content-around{
    place-content: space-around !important;
  }

  .mobile\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .mobile\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .mobile\:u-place-items-start{
    place-items: start !important;
  }

  .mobile\:u-place-items-end{
    place-items: end !important;
  }

  .mobile\:u-place-items-center{
    place-items: center !important;
  }

  .mobile\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .mobile\:u-content-center{
    align-content: center !important;
  }

  .mobile\:u-content-start{
    align-content: flex-start !important;
  }

  .mobile\:u-content-end{
    align-content: flex-end !important;
  }

  .mobile\:u-content-between{
    align-content: space-between !important;
  }

  .mobile\:u-content-around{
    align-content: space-around !important;
  }

  .mobile\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .mobile\:u-items-start{
    align-items: flex-start !important;
  }

  .mobile\:u-items-end{
    align-items: flex-end !important;
  }

  .mobile\:u-items-center{
    align-items: center !important;
  }

  .mobile\:u-items-baseline{
    align-items: baseline !important;
  }

  .mobile\:u-items-stretch{
    align-items: stretch !important;
  }

  .mobile\:u-justify-start{
    justify-content: flex-start !important;
  }

  .mobile\:u-justify-end{
    justify-content: flex-end !important;
  }

  .mobile\:u-justify-center{
    justify-content: center !important;
  }

  .mobile\:u-justify-between{
    justify-content: space-between !important;
  }

  .mobile\:u-justify-around{
    justify-content: space-around !important;
  }

  .mobile\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .mobile\:u-justify-items-start{
    justify-items: start !important;
  }

  .mobile\:u-justify-items-end{
    justify-items: end !important;
  }

  .mobile\:u-justify-items-center{
    justify-items: center !important;
  }

  .mobile\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .mobile\:u-gap-0{
    gap: 0px !important;
  }

  .mobile\:u-gap-1{
    gap: 0.25rem !important;
  }

  .mobile\:u-gap-2{
    gap: 0.5rem !important;
  }

  .mobile\:u-gap-3{
    gap: 0.75rem !important;
  }

  .mobile\:u-gap-4{
    gap: 1rem !important;
  }

  .mobile\:u-gap-5{
    gap: 1.25rem !important;
  }

  .mobile\:u-gap-6{
    gap: 1.5rem !important;
  }

  .mobile\:u-gap-7{
    gap: 1.75rem !important;
  }

  .mobile\:u-gap-8{
    gap: 2rem !important;
  }

  .mobile\:u-gap-9{
    gap: 2.25rem !important;
  }

  .mobile\:u-gap-10{
    gap: 2.5rem !important;
  }

  .mobile\:u-gap-11{
    gap: 2.75rem !important;
  }

  .mobile\:u-gap-12{
    gap: 3rem !important;
  }

  .mobile\:u-gap-14{
    gap: 3.5rem !important;
  }

  .mobile\:u-gap-16{
    gap: 4rem !important;
  }

  .mobile\:u-gap-20{
    gap: 5rem !important;
  }

  .mobile\:u-gap-24{
    gap: 6rem !important;
  }

  .mobile\:u-gap-28{
    gap: 7rem !important;
  }

  .mobile\:u-gap-32{
    gap: 8rem !important;
  }

  .mobile\:u-gap-36{
    gap: 9rem !important;
  }

  .mobile\:u-gap-40{
    gap: 10rem !important;
  }

  .mobile\:u-gap-44{
    gap: 11rem !important;
  }

  .mobile\:u-gap-48{
    gap: 12rem !important;
  }

  .mobile\:u-gap-52{
    gap: 13rem !important;
  }

  .mobile\:u-gap-56{
    gap: 14rem !important;
  }

  .mobile\:u-gap-60{
    gap: 15rem !important;
  }

  .mobile\:u-gap-64{
    gap: 16rem !important;
  }

  .mobile\:u-gap-72{
    gap: 18rem !important;
  }

  .mobile\:u-gap-80{
    gap: 20rem !important;
  }

  .mobile\:u-gap-96{
    gap: 24rem !important;
  }

  .mobile\:u-gap-px{
    gap: 1px !important;
  }

  .mobile\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .mobile\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .mobile\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .mobile\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .mobile\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .mobile\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .mobile\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .mobile\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .mobile\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .mobile\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .mobile\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .mobile\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .mobile\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .mobile\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .mobile\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .mobile\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .mobile\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .mobile\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .mobile\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .mobile\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .mobile\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .mobile\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .mobile\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .mobile\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .mobile\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .mobile\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .mobile\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .mobile\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .mobile\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .mobile\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .mobile\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .mobile\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .mobile\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .mobile\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .mobile\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .mobile\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .mobile\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .mobile\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .mobile\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .mobile\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .mobile\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .mobile\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .mobile\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .mobile\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .mobile\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .mobile\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .mobile\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .mobile\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .mobile\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .mobile\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .mobile\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .mobile\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .mobile\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .mobile\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .mobile\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .mobile\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .mobile\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .mobile\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .mobile\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .mobile\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .mobile\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .mobile\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .mobile\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .mobile\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .mobile\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .mobile\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .mobile\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .mobile\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .mobile\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .mobile\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .mobile\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .mobile\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .mobile\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .mobile\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .mobile\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .mobile\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .mobile\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .mobile\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .mobile\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .mobile\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .mobile\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .mobile\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .mobile\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .mobile\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-neutral-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 250, 250, var(--tw-divide-opacity)) !important;
  }

  .mobile\: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\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(38, 38, 38, var(--tw-divide-opacity)) !important;
  }

  .mobile\: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\:u-divide-primary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--primary) !important;
  }

  .mobile\:u-divide-secundary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--secundary) !important;
  }

  .mobile\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(159, 199, 52, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .mobile\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .mobile\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .mobile\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .mobile\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .mobile\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .mobile\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .mobile\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .mobile\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .mobile\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .mobile\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .mobile\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .mobile\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .mobile\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .mobile\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .mobile\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .mobile\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .mobile\:u-place-self-auto{
    place-self: auto !important;
  }

  .mobile\:u-place-self-start{
    place-self: start !important;
  }

  .mobile\:u-place-self-end{
    place-self: end !important;
  }

  .mobile\:u-place-self-center{
    place-self: center !important;
  }

  .mobile\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .mobile\:u-self-auto{
    align-self: auto !important;
  }

  .mobile\:u-self-start{
    align-self: flex-start !important;
  }

  .mobile\:u-self-end{
    align-self: flex-end !important;
  }

  .mobile\:u-self-center{
    align-self: center !important;
  }

  .mobile\:u-self-stretch{
    align-self: stretch !important;
  }

  .mobile\:u-self-baseline{
    align-self: baseline !important;
  }

  .mobile\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .mobile\:u-justify-self-start{
    justify-self: start !important;
  }

  .mobile\:u-justify-self-end{
    justify-self: end !important;
  }

  .mobile\:u-justify-self-center{
    justify-self: center !important;
  }

  .mobile\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .mobile\:u-overflow-auto{
    overflow: auto !important;
  }

  .mobile\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .mobile\:u-overflow-visible{
    overflow: visible !important;
  }

  .mobile\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .mobile\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .mobile\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .mobile\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .mobile\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .mobile\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .mobile\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .mobile\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .mobile\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .mobile\:u-overscroll-auto{
    overscroll-behavior: auto !important;
  }

  .mobile\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .mobile\:u-overscroll-none{
    overscroll-behavior: none !important;
  }

  .mobile\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .mobile\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .mobile\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .mobile\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .mobile\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .mobile\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .mobile\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .mobile\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .mobile\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .mobile\:u-whitespace-normal{
    white-space: normal !important;
  }

  .mobile\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .mobile\:u-whitespace-pre{
    white-space: pre !important;
  }

  .mobile\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .mobile\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .mobile\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .mobile\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .mobile\:u-break-all{
    word-break: break-all !important;
  }

  .mobile\:u-rounded-none{
    border-radius: 0px !important;
  }

  .mobile\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .mobile\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .mobile\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .mobile\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .mobile\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .mobile\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .mobile\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .mobile\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .mobile\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .mobile\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .mobile\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .mobile\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .mobile\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .mobile\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .mobile\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .mobile\:u-rounded-tl-none{
    border-top-left-radius: 0px !important;
  }

  .mobile\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .mobile\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .mobile\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .mobile\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .mobile\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .mobile\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .mobile\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .mobile\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .mobile\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .mobile\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .mobile\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .mobile\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .mobile\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .mobile\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .mobile\:u-border-0{
    border-width: 0px !important;
  }

  .mobile\:u-border-2{
    border-width: 2px !important;
  }

  .mobile\:u-border-4{
    border-width: 4px !important;
  }

  .mobile\:u-border-8{
    border-width: 8px !important;
  }

  .mobile\:u-border{
    border-width: 1px !important;
  }

  .mobile\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .mobile\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .mobile\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .mobile\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .mobile\:u-border-t{
    border-top-width: 1px !important;
  }

  .mobile\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .mobile\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .mobile\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .mobile\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .mobile\:u-border-r{
    border-right-width: 1px !important;
  }

  .mobile\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .mobile\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .mobile\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .mobile\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .mobile\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .mobile\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .mobile\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .mobile\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .mobile\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .mobile\:u-border-l{
    border-left-width: 1px !important;
  }

  .mobile\:u-border-solid{
    border-style: solid !important;
  }

  .mobile\:u-border-dashed{
    border-style: dashed !important;
  }

  .mobile\:u-border-dotted{
    border-style: dotted !important;
  }

  .mobile\:u-border-double{
    border-style: double !important;
  }

  .mobile\:u-border-none{
    border-style: none !important;
  }

  .mobile\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-primary{
    border-color: var(--primary) !important;
  }

  .mobile\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .mobile\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .mobile\: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\: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\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-neutral-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\: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\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\: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\:group-hover\:u-border-primary{
    border-color: var(--primary) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .mobile\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-neutral-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, var(--tw-border-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-border-primary:focus-within{
    border-color: var(--primary) !important;
  }

  .mobile\:focus-within\:u-border-secundary:focus-within{
    border-color: var(--secundary) !important;
  }

  .mobile\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .mobile\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-primary:hover{
    border-color: var(--primary) !important;
  }

  .mobile\:hover\:u-border-secundary:hover{
    border-color: var(--secundary) !important;
  }

  .mobile\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .mobile\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-primary:focus{
    border-color: var(--primary) !important;
  }

  .mobile\:focus\:u-border-secundary:focus{
    border-color: var(--secundary) !important;
  }

  .mobile\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .mobile\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .mobile\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .mobile\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .mobile\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .mobile\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .mobile\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .mobile\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .mobile\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .mobile\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-primary{
    background-color: var(--primary) !important;
  }

  .mobile\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .mobile\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .mobile\: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\: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\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-neutral-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\: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\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\: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\:group-hover\:u-bg-primary{
    background-color: var(--primary) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .mobile\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-neutral-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, var(--tw-bg-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-bg-primary:focus-within{
    background-color: var(--primary) !important;
  }

  .mobile\:focus-within\:u-bg-secundary:focus-within{
    background-color: var(--secundary) !important;
  }

  .mobile\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .mobile\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-primary:hover{
    background-color: var(--primary) !important;
  }

  .mobile\:hover\:u-bg-secundary:hover{
    background-color: var(--secundary) !important;
  }

  .mobile\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .mobile\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-primary:focus{
    background-color: var(--primary) !important;
  }

  .mobile\:focus\:u-bg-secundary:focus{
    background-color: var(--secundary) !important;
  }

  .mobile\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .mobile\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .mobile\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .mobile\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .mobile\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .mobile\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .mobile\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .mobile\:u-bg-none{
    background-image: none !important;
  }

  .mobile\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .mobile\:u-from-white{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-from-black{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:u-from-faded{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:u-from-neutral-0{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-from-neutral-10{
    --tw-gradient-from: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile\: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\:u-from-neutral-20{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile\:u-from-neutral-30{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile\:u-from-neutral-40{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile\:u-from-neutral-45{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:u-from-neutral-50{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 0)) !important;
  }

  .mobile\: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\:u-from-primary{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-from-secundary{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-from-success{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
  }

  .mobile\: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\: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\:hover\:u-from-white:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-from-black:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:hover\:u-from-faded:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:hover\:u-from-neutral-0:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile\: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\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 0)) !important;
  }

  .mobile\: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\:hover\:u-from-primary:hover{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-from-secundary:hover{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-from-success:hover{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
  }

  .mobile\: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\: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\:focus\:u-from-white:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-from-black:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:focus\:u-from-faded:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:focus\:u-from-neutral-0:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile\: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\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 0)) !important;
  }

  .mobile\: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\:focus\:u-from-primary:focus{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-from-secundary:focus{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-from-success:focus{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
  }

  .mobile\: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\: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\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:u-via-neutral-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 0)) !important;
  }

  .mobile\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:u-via-primary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-via-secundary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
  }

  .mobile\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:hover\:u-via-neutral-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile\: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\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 0)) !important;
  }

  .mobile\: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\:hover\:u-via-primary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-via-secundary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
  }

  .mobile\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:focus\:u-via-neutral-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile\: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\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 0)) !important;
  }

  .mobile\: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\:focus\:u-via-primary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-via-secundary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 0)) !important;
  }

  .mobile\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile\:u-to-white{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile\:u-to-black{
    --tw-gradient-to: #000000 !important;
  }

  .mobile\:u-to-faded{
    --tw-gradient-to: #666666 !important;
  }

  .mobile\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile\:u-to-neutral-10{
    --tw-gradient-to: #FAFAFA !important;
  }

  .mobile\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile\:u-to-neutral-20{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile\:u-to-neutral-30{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .mobile\:u-to-neutral-40{
    --tw-gradient-to: #9E9E9E !important;
  }

  .mobile\:u-to-neutral-45{
    --tw-gradient-to: #666666 !important;
  }

  .mobile\:u-to-neutral-50{
    --tw-gradient-to: #262626 !important;
  }

  .mobile\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .mobile\:u-to-primary{
    --tw-gradient-to: var(--primary) !important;
  }

  .mobile\:u-to-secundary{
    --tw-gradient-to: var(--secundary) !important;
  }

  .mobile\:u-to-success{
    --tw-gradient-to: #9FC734 !important;
  }

  .mobile\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .mobile\:hover\:u-to-white:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile\:hover\:u-to-black:hover{
    --tw-gradient-to: #000000 !important;
  }

  .mobile\:hover\:u-to-faded:hover{
    --tw-gradient-to: #666666 !important;
  }

  .mobile\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FAFAFA !important;
  }

  .mobile\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .mobile\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #9E9E9E !important;
  }

  .mobile\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #666666 !important;
  }

  .mobile\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #262626 !important;
  }

  .mobile\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .mobile\:hover\:u-to-primary:hover{
    --tw-gradient-to: var(--primary) !important;
  }

  .mobile\:hover\:u-to-secundary:hover{
    --tw-gradient-to: var(--secundary) !important;
  }

  .mobile\:hover\:u-to-success:hover{
    --tw-gradient-to: #9FC734 !important;
  }

  .mobile\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .mobile\:focus\:u-to-white:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile\:focus\:u-to-black:focus{
    --tw-gradient-to: #000000 !important;
  }

  .mobile\:focus\:u-to-faded:focus{
    --tw-gradient-to: #666666 !important;
  }

  .mobile\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FAFAFA !important;
  }

  .mobile\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .mobile\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #9E9E9E !important;
  }

  .mobile\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #666666 !important;
  }

  .mobile\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #262626 !important;
  }

  .mobile\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .mobile\:focus\:u-to-primary:focus{
    --tw-gradient-to: var(--primary) !important;
  }

  .mobile\:focus\:u-to-secundary:focus{
    --tw-gradient-to: var(--secundary) !important;
  }

  .mobile\:focus\:u-to-success:focus{
    --tw-gradient-to: #9FC734 !important;
  }

  .mobile\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .mobile\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .mobile\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !important;
  }

  .mobile\:u-bg-auto{
    background-size: auto !important;
  }

  .mobile\:u-bg-cover{
    background-size: cover !important;
  }

  .mobile\:u-bg-contain{
    background-size: contain !important;
  }

  .mobile\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .mobile\:u-bg-local{
    background-attachment: local !important;
  }

  .mobile\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .mobile\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .mobile\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .mobile\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .mobile\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .mobile\:u-bg-bottom{
    background-position: bottom !important;
  }

  .mobile\:u-bg-center{
    background-position: center !important;
  }

  .mobile\:u-bg-left{
    background-position: left !important;
  }

  .mobile\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .mobile\:u-bg-left-top{
    background-position: left top !important;
  }

  .mobile\:u-bg-right{
    background-position: right !important;
  }

  .mobile\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .mobile\:u-bg-right-top{
    background-position: right top !important;
  }

  .mobile\:u-bg-top{
    background-position: top !important;
  }

  .mobile\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .mobile\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .mobile\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .mobile\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .mobile\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .mobile\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .mobile\:u-bg-origin-border{
    background-origin: border-box !important;
  }

  .mobile\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .mobile\:u-bg-origin-content{
    background-origin: content-box !important;
  }

  .mobile\:u-fill-current{
    fill: currentColor !important;
  }

  .mobile\:u-stroke-current{
    stroke: currentColor !important;
  }

  .mobile\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .mobile\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .mobile\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .mobile\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .mobile\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .mobile\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .mobile\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .mobile\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .mobile\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .mobile\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .mobile\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .mobile\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .mobile\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .mobile\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .mobile\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .mobile\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .mobile\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .mobile\:u-p-0{
    padding: 0px !important;
  }

  .mobile\:u-p-1{
    padding: 0.25rem !important;
  }

  .mobile\:u-p-2{
    padding: 0.5rem !important;
  }

  .mobile\:u-p-3{
    padding: 0.75rem !important;
  }

  .mobile\:u-p-4{
    padding: 1rem !important;
  }

  .mobile\:u-p-5{
    padding: 1.25rem !important;
  }

  .mobile\:u-p-6{
    padding: 1.5rem !important;
  }

  .mobile\:u-p-7{
    padding: 1.75rem !important;
  }

  .mobile\:u-p-8{
    padding: 2rem !important;
  }

  .mobile\:u-p-9{
    padding: 2.25rem !important;
  }

  .mobile\:u-p-10{
    padding: 2.5rem !important;
  }

  .mobile\:u-p-11{
    padding: 2.75rem !important;
  }

  .mobile\:u-p-12{
    padding: 3rem !important;
  }

  .mobile\:u-p-14{
    padding: 3.5rem !important;
  }

  .mobile\:u-p-16{
    padding: 4rem !important;
  }

  .mobile\:u-p-20{
    padding: 5rem !important;
  }

  .mobile\:u-p-24{
    padding: 6rem !important;
  }

  .mobile\:u-p-28{
    padding: 7rem !important;
  }

  .mobile\:u-p-32{
    padding: 8rem !important;
  }

  .mobile\:u-p-36{
    padding: 9rem !important;
  }

  .mobile\:u-p-40{
    padding: 10rem !important;
  }

  .mobile\:u-p-44{
    padding: 11rem !important;
  }

  .mobile\:u-p-48{
    padding: 12rem !important;
  }

  .mobile\:u-p-52{
    padding: 13rem !important;
  }

  .mobile\:u-p-56{
    padding: 14rem !important;
  }

  .mobile\:u-p-60{
    padding: 15rem !important;
  }

  .mobile\:u-p-64{
    padding: 16rem !important;
  }

  .mobile\:u-p-72{
    padding: 18rem !important;
  }

  .mobile\:u-p-80{
    padding: 20rem !important;
  }

  .mobile\:u-p-96{
    padding: 24rem !important;
  }

  .mobile\:u-p-px{
    padding: 1px !important;
  }

  .mobile\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .mobile\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .mobile\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .mobile\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .mobile\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .mobile\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .mobile\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .mobile\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .mobile\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mobile\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .mobile\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .mobile\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .mobile\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .mobile\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .mobile\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .mobile\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .mobile\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .mobile\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .mobile\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .mobile\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .mobile\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .mobile\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .mobile\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .mobile\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .mobile\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .mobile\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .mobile\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .mobile\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .mobile\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .mobile\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .mobile\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .mobile\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .mobile\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .mobile\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .mobile\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .mobile\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .mobile\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .mobile\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .mobile\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .mobile\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .mobile\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .mobile\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .mobile\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .mobile\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .mobile\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .mobile\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mobile\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .mobile\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mobile\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .mobile\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .mobile\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .mobile\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mobile\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .mobile\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .mobile\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .mobile\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .mobile\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .mobile\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .mobile\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .mobile\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .mobile\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .mobile\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .mobile\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .mobile\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .mobile\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .mobile\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .mobile\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .mobile\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .mobile\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .mobile\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .mobile\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .mobile\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .mobile\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .mobile\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .mobile\:u-pt-0{
    padding-top: 0px !important;
  }

  .mobile\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .mobile\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .mobile\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .mobile\:u-pt-4{
    padding-top: 1rem !important;
  }

  .mobile\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .mobile\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .mobile\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .mobile\:u-pt-8{
    padding-top: 2rem !important;
  }

  .mobile\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .mobile\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .mobile\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .mobile\:u-pt-12{
    padding-top: 3rem !important;
  }

  .mobile\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .mobile\:u-pt-16{
    padding-top: 4rem !important;
  }

  .mobile\:u-pt-20{
    padding-top: 5rem !important;
  }

  .mobile\:u-pt-24{
    padding-top: 6rem !important;
  }

  .mobile\:u-pt-28{
    padding-top: 7rem !important;
  }

  .mobile\:u-pt-32{
    padding-top: 8rem !important;
  }

  .mobile\:u-pt-36{
    padding-top: 9rem !important;
  }

  .mobile\:u-pt-40{
    padding-top: 10rem !important;
  }

  .mobile\:u-pt-44{
    padding-top: 11rem !important;
  }

  .mobile\:u-pt-48{
    padding-top: 12rem !important;
  }

  .mobile\:u-pt-52{
    padding-top: 13rem !important;
  }

  .mobile\:u-pt-56{
    padding-top: 14rem !important;
  }

  .mobile\:u-pt-60{
    padding-top: 15rem !important;
  }

  .mobile\:u-pt-64{
    padding-top: 16rem !important;
  }

  .mobile\:u-pt-72{
    padding-top: 18rem !important;
  }

  .mobile\:u-pt-80{
    padding-top: 20rem !important;
  }

  .mobile\:u-pt-96{
    padding-top: 24rem !important;
  }

  .mobile\:u-pt-px{
    padding-top: 1px !important;
  }

  .mobile\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .mobile\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .mobile\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .mobile\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .mobile\:u-pr-0{
    padding-right: 0px !important;
  }

  .mobile\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .mobile\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .mobile\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .mobile\:u-pr-4{
    padding-right: 1rem !important;
  }

  .mobile\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .mobile\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .mobile\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .mobile\:u-pr-8{
    padding-right: 2rem !important;
  }

  .mobile\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .mobile\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .mobile\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .mobile\:u-pr-12{
    padding-right: 3rem !important;
  }

  .mobile\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .mobile\:u-pr-16{
    padding-right: 4rem !important;
  }

  .mobile\:u-pr-20{
    padding-right: 5rem !important;
  }

  .mobile\:u-pr-24{
    padding-right: 6rem !important;
  }

  .mobile\:u-pr-28{
    padding-right: 7rem !important;
  }

  .mobile\:u-pr-32{
    padding-right: 8rem !important;
  }

  .mobile\:u-pr-36{
    padding-right: 9rem !important;
  }

  .mobile\:u-pr-40{
    padding-right: 10rem !important;
  }

  .mobile\:u-pr-44{
    padding-right: 11rem !important;
  }

  .mobile\:u-pr-48{
    padding-right: 12rem !important;
  }

  .mobile\:u-pr-52{
    padding-right: 13rem !important;
  }

  .mobile\:u-pr-56{
    padding-right: 14rem !important;
  }

  .mobile\:u-pr-60{
    padding-right: 15rem !important;
  }

  .mobile\:u-pr-64{
    padding-right: 16rem !important;
  }

  .mobile\:u-pr-72{
    padding-right: 18rem !important;
  }

  .mobile\:u-pr-80{
    padding-right: 20rem !important;
  }

  .mobile\:u-pr-96{
    padding-right: 24rem !important;
  }

  .mobile\:u-pr-px{
    padding-right: 1px !important;
  }

  .mobile\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .mobile\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .mobile\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .mobile\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .mobile\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .mobile\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .mobile\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .mobile\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .mobile\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .mobile\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .mobile\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .mobile\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .mobile\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .mobile\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .mobile\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .mobile\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .mobile\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .mobile\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .mobile\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .mobile\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .mobile\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .mobile\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .mobile\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .mobile\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .mobile\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .mobile\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .mobile\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .mobile\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .mobile\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .mobile\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .mobile\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .mobile\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .mobile\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .mobile\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .mobile\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .mobile\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .mobile\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .mobile\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .mobile\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .mobile\:u-pl-0{
    padding-left: 0px !important;
  }

  .mobile\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .mobile\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .mobile\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .mobile\:u-pl-4{
    padding-left: 1rem !important;
  }

  .mobile\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .mobile\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .mobile\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .mobile\:u-pl-8{
    padding-left: 2rem !important;
  }

  .mobile\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .mobile\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .mobile\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .mobile\:u-pl-12{
    padding-left: 3rem !important;
  }

  .mobile\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .mobile\:u-pl-16{
    padding-left: 4rem !important;
  }

  .mobile\:u-pl-20{
    padding-left: 5rem !important;
  }

  .mobile\:u-pl-24{
    padding-left: 6rem !important;
  }

  .mobile\:u-pl-28{
    padding-left: 7rem !important;
  }

  .mobile\:u-pl-32{
    padding-left: 8rem !important;
  }

  .mobile\:u-pl-36{
    padding-left: 9rem !important;
  }

  .mobile\:u-pl-40{
    padding-left: 10rem !important;
  }

  .mobile\:u-pl-44{
    padding-left: 11rem !important;
  }

  .mobile\:u-pl-48{
    padding-left: 12rem !important;
  }

  .mobile\:u-pl-52{
    padding-left: 13rem !important;
  }

  .mobile\:u-pl-56{
    padding-left: 14rem !important;
  }

  .mobile\:u-pl-60{
    padding-left: 15rem !important;
  }

  .mobile\:u-pl-64{
    padding-left: 16rem !important;
  }

  .mobile\:u-pl-72{
    padding-left: 18rem !important;
  }

  .mobile\:u-pl-80{
    padding-left: 20rem !important;
  }

  .mobile\:u-pl-96{
    padding-left: 24rem !important;
  }

  .mobile\:u-pl-px{
    padding-left: 1px !important;
  }

  .mobile\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .mobile\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .mobile\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .mobile\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .mobile\:u-text-left{
    text-align: left !important;
  }

  .mobile\:u-text-center{
    text-align: center !important;
  }

  .mobile\:u-text-right{
    text-align: right !important;
  }

  .mobile\:u-text-justify{
    text-align: justify !important;
  }

  .mobile\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .mobile\:u-align-top{
    vertical-align: top !important;
  }

  .mobile\:u-align-middle{
    vertical-align: middle !important;
  }

  .mobile\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .mobile\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .mobile\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .mobile\:u-font-body{
    font-family: Public Sans, sans-serif !important;
  }

  .mobile\:u-font-heading{
    font-family: Public Sans, sans-serif !important;
  }

  .mobile\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .mobile\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .mobile\:u-text-base{
    font-size: 1rem !important;
  }

  .mobile\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .mobile\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .mobile\:u-text-2xl{
    font-size: 1.2rem !important;
  }

  .mobile\:u-text-3xl{
    font-size: 1.3rem !important;
  }

  .mobile\:u-text-4xl{
    font-size: 1.4rem !important;
  }

  .mobile\:u-text-5xl{
    font-size: 2rem !important;
  }

  .mobile\:u-text-6xl{
    font-size: 3rem !important;
  }

  .mobile\:u-text-8xl{
    font-size: 4rem !important;
  }

  .mobile\:u-font-thin{
    font-weight: 100 !important;
  }

  .mobile\:u-font-extralight{
    font-weight: 200 !important;
  }

  .mobile\:u-font-light{
    font-weight: 300 !important;
  }

  .mobile\:u-font-normal{
    font-weight: 400 !important;
  }

  .mobile\:u-font-medium{
    font-weight: 500 !important;
  }

  .mobile\:u-font-semibold{
    font-weight: 600 !important;
  }

  .mobile\:u-font-bold{
    font-weight: 700 !important;
  }

  .mobile\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .mobile\:u-font-black{
    font-weight: 900 !important;
  }

  .mobile\:u-uppercase{
    text-transform: uppercase !important;
  }

  .mobile\:u-lowercase{
    text-transform: lowercase !important;
  }

  .mobile\:u-capitalize{
    text-transform: capitalize !important;
  }

  .mobile\:u-normal-case{
    text-transform: none !important;
  }

  .mobile\:u-italic{
    font-style: italic !important;
  }

  .mobile\:u-not-italic{
    font-style: normal !important;
  }

  .mobile\:u-ordinal, .mobile\:u-slashed-zero, .mobile\:u-lining-nums, .mobile\:u-oldstyle-nums, .mobile\:u-proportional-nums, .mobile\:u-tabular-nums, .mobile\:u-diagonal-fractions, .mobile\: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\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .mobile\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .mobile\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .mobile\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .mobile\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .mobile\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .mobile\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .mobile\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .mobile\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .mobile\:u-leading-3{
    line-height: .75rem !important;
  }

  .mobile\:u-leading-4{
    line-height: 1rem !important;
  }

  .mobile\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .mobile\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .mobile\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .mobile\:u-leading-8{
    line-height: 2rem !important;
  }

  .mobile\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .mobile\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .mobile\:u-leading-none{
    line-height: 1 !important;
  }

  .mobile\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .mobile\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .mobile\:u-leading-normal{
    line-height: 1.5 !important;
  }

  .mobile\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .mobile\:u-leading-loose{
    line-height: 2 !important;
  }

  .mobile\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .mobile\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .mobile\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .mobile\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .mobile\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .mobile\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .mobile\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-0{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-primary{
    color: var(--primary) !important;
  }

  .mobile\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .mobile\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-neutral-0{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\: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\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\: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\:group-hover\:u-text-primary{
    color: var(--primary) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .mobile\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-primary:focus-within{
    color: var(--primary) !important;
  }

  .mobile\:focus-within\:u-text-secundary:focus-within{
    color: var(--secundary) !important;
  }

  .mobile\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .mobile\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-primary:hover{
    color: var(--primary) !important;
  }

  .mobile\:hover\:u-text-secundary:hover{
    color: var(--secundary) !important;
  }

  .mobile\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .mobile\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-primary:focus{
    color: var(--primary) !important;
  }

  .mobile\:focus\:u-text-secundary:focus{
    color: var(--secundary) !important;
  }

  .mobile\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .mobile\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .mobile\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .mobile\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .mobile\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .mobile\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .mobile\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .mobile\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .mobile\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .mobile\:u-underline{
    text-decoration: underline !important;
  }

  .mobile\:u-line-through{
    text-decoration: line-through !important;
  }

  .mobile\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .mobile\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .mobile\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .mobile\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .mobile\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .mobile\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .mobile\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .mobile\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .mobile\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .mobile\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .mobile\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .mobile\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .mobile\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .mobile\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .mobile\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .mobile\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-primary::-moz-placeholder{
    color: var(--primary) !important;
  }

  .mobile\:u-placeholder-primary::placeholder{
    color: var(--primary) !important;
  }

  .mobile\:u-placeholder-secundary::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .mobile\:u-placeholder-secundary::placeholder{
    color: var(--secundary) !important;
  }

  .mobile\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .mobile\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .mobile\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-primary:focus::-moz-placeholder{
    color: var(--primary) !important;
  }

  .mobile\:focus\:u-placeholder-primary:focus::placeholder{
    color: var(--primary) !important;
  }

  .mobile\:focus\:u-placeholder-secundary:focus::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .mobile\:focus\:u-placeholder-secundary:focus::placeholder{
    color: var(--secundary) !important;
  }

  .mobile\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .mobile\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .mobile\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile\:u-opacity-0{
    opacity: 0 !important;
  }

  .mobile\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .mobile\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .mobile\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .mobile\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .mobile\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .mobile\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .mobile\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .mobile\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .mobile\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .mobile\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .mobile\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .mobile\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .mobile\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .mobile\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .mobile\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .mobile\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .mobile\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .mobile\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .mobile\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .mobile\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .mobile\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .mobile\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .mobile\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .mobile\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .mobile\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .mobile\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .mobile\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .mobile\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .mobile\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .mobile\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .mobile\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .mobile\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .mobile\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .mobile\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .mobile\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .mobile\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .mobile\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .mobile\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .mobile\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .mobile\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .mobile\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .mobile\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .mobile\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .mobile\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .mobile\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .mobile\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .mobile\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .mobile\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .mobile\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .mobile\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .mobile\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .mobile\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .mobile\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .mobile\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .mobile\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .mobile\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .mobile\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .mobile\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .mobile\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .mobile\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .mobile\:u-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .mobile\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .mobile\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .mobile\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .mobile\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .mobile\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .mobile\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .mobile\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .mobile\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .mobile\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .mobile\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .mobile\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .mobile\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .mobile\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .mobile\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .mobile\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .mobile\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .mobile\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .mobile\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .mobile\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .mobile\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .mobile\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .mobile\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .mobile\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .mobile\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .mobile\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .mobile\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .mobile\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .mobile\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .mobile\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .mobile\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .mobile\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !important;
  }

  .mobile\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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;
  }

  .mobile\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .mobile\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .mobile\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .mobile\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .mobile\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .mobile\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .mobile\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .mobile\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .mobile\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .mobile\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\: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\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .mobile\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .mobile\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .mobile\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-primary{
    --tw-ring-color: var(--primary) !important;
  }

  .mobile\:u-ring-secundary{
    --tw-ring-color: var(--secundary) !important;
  }

  .mobile\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .mobile\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .mobile\: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\: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\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus-within\:u-ring-neutral-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, var(--tw-ring-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-ring-primary:focus-within{
    --tw-ring-color: var(--primary) !important;
  }

  .mobile\:focus-within\:u-ring-secundary:focus-within{
    --tw-ring-color: var(--secundary) !important;
  }

  .mobile\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, var(--tw-ring-opacity)) !important;
  }

  .mobile\: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\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .mobile\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-primary:focus{
    --tw-ring-color: var(--primary) !important;
  }

  .mobile\:focus\:u-ring-secundary:focus{
    --tw-ring-color: var(--secundary) !important;
  }

  .mobile\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .mobile\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .mobile\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .mobile\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .mobile\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .mobile\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .mobile\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .mobile\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .mobile\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .mobile\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .mobile\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .mobile\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .mobile\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .mobile\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .mobile\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .mobile\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .mobile\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .mobile\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .mobile\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .mobile\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .mobile\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .mobile\:u-ring-offset-white{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile\:u-ring-offset-black{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile\:u-ring-offset-faded{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FAFAFA !important;
  }

  .mobile\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .mobile\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .mobile\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .mobile\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .mobile\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #262626 !important;
  }

  .mobile\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile\:u-ring-offset-primary{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .mobile\:u-ring-offset-secundary{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .mobile\:u-ring-offset-success{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .mobile\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FAFAFA !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #262626 !important;
  }

  .mobile\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile\:focus-within\:u-ring-offset-primary:focus-within{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .mobile\:focus-within\:u-ring-offset-secundary:focus-within{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .mobile\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .mobile\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FAFAFA !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #262626 !important;
  }

  .mobile\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile\:focus\:u-ring-offset-primary:focus{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .mobile\:focus\:u-ring-offset-secundary:focus{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .mobile\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .mobile\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile\:u-filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
  }

  .mobile\:u-filter-none{
    filter: none !important;
  }

  .mobile\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .mobile\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .mobile\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .mobile\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .mobile\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .mobile\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .mobile\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .mobile\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .mobile\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .mobile\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .mobile\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .mobile\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .mobile\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .mobile\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .mobile\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .mobile\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .mobile\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .mobile\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .mobile\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .mobile\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .mobile\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .mobile\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .mobile\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .mobile\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .mobile\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .mobile\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .mobile\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .mobile\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .mobile\:u-drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
  }

  .mobile\:u-drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
  }

  .mobile\:u-drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
  }

  .mobile\:u-drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
  }

  .mobile\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .mobile\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .mobile\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .mobile\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .mobile\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .mobile\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .mobile\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .mobile\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .mobile\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .mobile\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .mobile\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .mobile\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .mobile\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .mobile\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .mobile\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .mobile\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .mobile\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .mobile\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .mobile\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .mobile\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .mobile\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .mobile\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .mobile\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .mobile\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .mobile\:u-backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
  }

  .mobile\:u-backdrop-filter-none{
    backdrop-filter: none !important;
  }

  .mobile\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .mobile\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .mobile\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .mobile\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .mobile\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .mobile\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .mobile\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .mobile\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .mobile\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .mobile\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .mobile\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .mobile\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .mobile\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .mobile\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .mobile\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .mobile\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .mobile\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .mobile\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .mobile\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .mobile\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .mobile\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .mobile\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .mobile\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .mobile\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .mobile\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .mobile\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .mobile\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .mobile\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .mobile\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .mobile\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .mobile\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .mobile\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .mobile\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .mobile\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .mobile\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .mobile\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .mobile\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .mobile\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .mobile\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .mobile\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .mobile\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .mobile\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .mobile\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .mobile\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .mobile\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .mobile\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .mobile\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .mobile\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .mobile\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .mobile\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .mobile\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .mobile\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .mobile\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .mobile\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .mobile\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .mobile\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .mobile\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .mobile\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .mobile\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .mobile\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .mobile\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .mobile\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .mobile\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .mobile\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !important;
  }

  .mobile\:u-transition-none{
    transition-property: none !important;
  }

  .mobile\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile\: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\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile\: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\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .mobile\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .mobile\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .mobile\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .mobile\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .mobile\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .mobile\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .mobile\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .mobile\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .mobile\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .mobile\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .mobile\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .mobile\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .mobile\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .mobile\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .mobile\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .mobile\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .mobile\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .mobile\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .mobile\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}

@media (min-width: 450px){
  .mobile-large\:u-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 375px){
    .mobile-large\:u-container{
      max-width: 375px;
    }
  }

  @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: 1280px){
    .mobile-large\:u-container{
      max-width: 1280px;
    }
  }

  .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-pointer-events-none{
    pointer-events: none !important;
  }

  .mobile-large\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .mobile-large\:u-visible{
    visibility: visible !important;
  }

  .mobile-large\:u-invisible{
    visibility: hidden !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-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .mobile-large\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .mobile-large\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .mobile-large\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .mobile-large\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .mobile-large\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .mobile-large\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .mobile-large\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .mobile-large\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .mobile-large\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .mobile-large\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .mobile-large\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .mobile-large\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .mobile-large\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .mobile-large\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .mobile-large\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .mobile-large\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .mobile-large\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .mobile-large\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .mobile-large\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .mobile-large\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .mobile-large\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .mobile-large\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .mobile-large\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .mobile-large\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .mobile-large\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .mobile-large\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .mobile-large\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .mobile-large\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .mobile-large\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .mobile-large\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .mobile-large\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .mobile-large\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .mobile-large\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .mobile-large\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .mobile-large\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .mobile-large\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .mobile-large\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .mobile-large\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .mobile-large\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .mobile-large\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .mobile-large\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .mobile-large\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .mobile-large\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .mobile-large\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .mobile-large\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .mobile-large\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .mobile-large\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .mobile-large\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .mobile-large\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .mobile-large\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .mobile-large\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .mobile-large\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .mobile-large\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .mobile-large\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .mobile-large\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .mobile-large\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .mobile-large\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .mobile-large\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .mobile-large\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .mobile-large\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .mobile-large\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .mobile-large\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .mobile-large\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .mobile-large\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .mobile-large\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .mobile-large\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .mobile-large\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .mobile-large\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .mobile-large\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .mobile-large\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .mobile-large\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .mobile-large\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .mobile-large\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .mobile-large\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .mobile-large\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .mobile-large\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .mobile-large\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .mobile-large\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .mobile-large\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .mobile-large\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .mobile-large\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .mobile-large\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .mobile-large\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .mobile-large\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .mobile-large\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .mobile-large\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .mobile-large\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .mobile-large\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .mobile-large\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .mobile-large\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .mobile-large\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .mobile-large\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .mobile-large\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .mobile-large\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .mobile-large\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .mobile-large\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .mobile-large\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .mobile-large\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .mobile-large\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .mobile-large\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .mobile-large\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .mobile-large\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .mobile-large\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .mobile-large\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .mobile-large\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .mobile-large\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .mobile-large\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .mobile-large\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .mobile-large\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .mobile-large\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .mobile-large\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .mobile-large\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .mobile-large\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .mobile-large\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .mobile-large\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .mobile-large\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .mobile-large\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .mobile-large\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .mobile-large\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .mobile-large\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .mobile-large\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .mobile-large\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .mobile-large\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .mobile-large\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .mobile-large\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .mobile-large\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .mobile-large\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .mobile-large\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .mobile-large\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .mobile-large\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .mobile-large\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .mobile-large\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .mobile-large\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .mobile-large\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .mobile-large\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .mobile-large\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .mobile-large\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .mobile-large\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .mobile-large\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .mobile-large\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .mobile-large\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .mobile-large\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .mobile-large\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .mobile-large\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .mobile-large\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .mobile-large\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .mobile-large\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .mobile-large\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .mobile-large\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .mobile-large\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .mobile-large\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .mobile-large\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .mobile-large\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .mobile-large\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .mobile-large\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .mobile-large\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .mobile-large\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .mobile-large\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .mobile-large\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .mobile-large\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .mobile-large\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .mobile-large\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .mobile-large\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .mobile-large\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .mobile-large\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .mobile-large\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .mobile-large\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .mobile-large\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .mobile-large\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .mobile-large\:u-top-0{
    top: 0px !important;
  }

  .mobile-large\:u-top-1{
    top: 0.25rem !important;
  }

  .mobile-large\:u-top-2{
    top: 0.5rem !important;
  }

  .mobile-large\:u-top-3{
    top: 0.75rem !important;
  }

  .mobile-large\:u-top-4{
    top: 1rem !important;
  }

  .mobile-large\:u-top-5{
    top: 1.25rem !important;
  }

  .mobile-large\:u-top-6{
    top: 1.5rem !important;
  }

  .mobile-large\:u-top-7{
    top: 1.75rem !important;
  }

  .mobile-large\:u-top-8{
    top: 2rem !important;
  }

  .mobile-large\:u-top-9{
    top: 2.25rem !important;
  }

  .mobile-large\:u-top-10{
    top: 2.5rem !important;
  }

  .mobile-large\:u-top-11{
    top: 2.75rem !important;
  }

  .mobile-large\:u-top-12{
    top: 3rem !important;
  }

  .mobile-large\:u-top-14{
    top: 3.5rem !important;
  }

  .mobile-large\:u-top-16{
    top: 4rem !important;
  }

  .mobile-large\:u-top-20{
    top: 5rem !important;
  }

  .mobile-large\:u-top-24{
    top: 6rem !important;
  }

  .mobile-large\:u-top-28{
    top: 7rem !important;
  }

  .mobile-large\:u-top-32{
    top: 8rem !important;
  }

  .mobile-large\:u-top-36{
    top: 9rem !important;
  }

  .mobile-large\:u-top-40{
    top: 10rem !important;
  }

  .mobile-large\:u-top-44{
    top: 11rem !important;
  }

  .mobile-large\:u-top-48{
    top: 12rem !important;
  }

  .mobile-large\:u-top-52{
    top: 13rem !important;
  }

  .mobile-large\:u-top-56{
    top: 14rem !important;
  }

  .mobile-large\:u-top-60{
    top: 15rem !important;
  }

  .mobile-large\:u-top-64{
    top: 16rem !important;
  }

  .mobile-large\:u-top-72{
    top: 18rem !important;
  }

  .mobile-large\:u-top-80{
    top: 20rem !important;
  }

  .mobile-large\:u-top-96{
    top: 24rem !important;
  }

  .mobile-large\:u-top-auto{
    top: auto !important;
  }

  .mobile-large\:u-top-px{
    top: 1px !important;
  }

  .mobile-large\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .mobile-large\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .mobile-large\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .mobile-large\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .mobile-large\:u--top-0{
    top: 0px !important;
  }

  .mobile-large\:u--top-1{
    top: -0.25rem !important;
  }

  .mobile-large\:u--top-2{
    top: -0.5rem !important;
  }

  .mobile-large\:u--top-3{
    top: -0.75rem !important;
  }

  .mobile-large\:u--top-4{
    top: -1rem !important;
  }

  .mobile-large\:u--top-5{
    top: -1.25rem !important;
  }

  .mobile-large\:u--top-6{
    top: -1.5rem !important;
  }

  .mobile-large\:u--top-7{
    top: -1.75rem !important;
  }

  .mobile-large\:u--top-8{
    top: -2rem !important;
  }

  .mobile-large\:u--top-9{
    top: -2.25rem !important;
  }

  .mobile-large\:u--top-10{
    top: -2.5rem !important;
  }

  .mobile-large\:u--top-11{
    top: -2.75rem !important;
  }

  .mobile-large\:u--top-12{
    top: -3rem !important;
  }

  .mobile-large\:u--top-14{
    top: -3.5rem !important;
  }

  .mobile-large\:u--top-16{
    top: -4rem !important;
  }

  .mobile-large\:u--top-20{
    top: -5rem !important;
  }

  .mobile-large\:u--top-24{
    top: -6rem !important;
  }

  .mobile-large\:u--top-28{
    top: -7rem !important;
  }

  .mobile-large\:u--top-32{
    top: -8rem !important;
  }

  .mobile-large\:u--top-36{
    top: -9rem !important;
  }

  .mobile-large\:u--top-40{
    top: -10rem !important;
  }

  .mobile-large\:u--top-44{
    top: -11rem !important;
  }

  .mobile-large\:u--top-48{
    top: -12rem !important;
  }

  .mobile-large\:u--top-52{
    top: -13rem !important;
  }

  .mobile-large\:u--top-56{
    top: -14rem !important;
  }

  .mobile-large\:u--top-60{
    top: -15rem !important;
  }

  .mobile-large\:u--top-64{
    top: -16rem !important;
  }

  .mobile-large\:u--top-72{
    top: -18rem !important;
  }

  .mobile-large\:u--top-80{
    top: -20rem !important;
  }

  .mobile-large\:u--top-96{
    top: -24rem !important;
  }

  .mobile-large\:u--top-px{
    top: -1px !important;
  }

  .mobile-large\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .mobile-large\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .mobile-large\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .mobile-large\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .mobile-large\:u-top-1\/2{
    top: 50% !important;
  }

  .mobile-large\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .mobile-large\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .mobile-large\:u-top-1\/4{
    top: 25% !important;
  }

  .mobile-large\:u-top-2\/4{
    top: 50% !important;
  }

  .mobile-large\:u-top-3\/4{
    top: 75% !important;
  }

  .mobile-large\:u-top-full{
    top: 100% !important;
  }

  .mobile-large\:u--top-1\/2{
    top: -50% !important;
  }

  .mobile-large\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .mobile-large\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .mobile-large\:u--top-1\/4{
    top: -25% !important;
  }

  .mobile-large\:u--top-2\/4{
    top: -50% !important;
  }

  .mobile-large\:u--top-3\/4{
    top: -75% !important;
  }

  .mobile-large\:u--top-full{
    top: -100% !important;
  }

  .mobile-large\:u-right-0{
    right: 0px !important;
  }

  .mobile-large\:u-right-1{
    right: 0.25rem !important;
  }

  .mobile-large\:u-right-2{
    right: 0.5rem !important;
  }

  .mobile-large\:u-right-3{
    right: 0.75rem !important;
  }

  .mobile-large\:u-right-4{
    right: 1rem !important;
  }

  .mobile-large\:u-right-5{
    right: 1.25rem !important;
  }

  .mobile-large\:u-right-6{
    right: 1.5rem !important;
  }

  .mobile-large\:u-right-7{
    right: 1.75rem !important;
  }

  .mobile-large\:u-right-8{
    right: 2rem !important;
  }

  .mobile-large\:u-right-9{
    right: 2.25rem !important;
  }

  .mobile-large\:u-right-10{
    right: 2.5rem !important;
  }

  .mobile-large\:u-right-11{
    right: 2.75rem !important;
  }

  .mobile-large\:u-right-12{
    right: 3rem !important;
  }

  .mobile-large\:u-right-14{
    right: 3.5rem !important;
  }

  .mobile-large\:u-right-16{
    right: 4rem !important;
  }

  .mobile-large\:u-right-20{
    right: 5rem !important;
  }

  .mobile-large\:u-right-24{
    right: 6rem !important;
  }

  .mobile-large\:u-right-28{
    right: 7rem !important;
  }

  .mobile-large\:u-right-32{
    right: 8rem !important;
  }

  .mobile-large\:u-right-36{
    right: 9rem !important;
  }

  .mobile-large\:u-right-40{
    right: 10rem !important;
  }

  .mobile-large\:u-right-44{
    right: 11rem !important;
  }

  .mobile-large\:u-right-48{
    right: 12rem !important;
  }

  .mobile-large\:u-right-52{
    right: 13rem !important;
  }

  .mobile-large\:u-right-56{
    right: 14rem !important;
  }

  .mobile-large\:u-right-60{
    right: 15rem !important;
  }

  .mobile-large\:u-right-64{
    right: 16rem !important;
  }

  .mobile-large\:u-right-72{
    right: 18rem !important;
  }

  .mobile-large\:u-right-80{
    right: 20rem !important;
  }

  .mobile-large\:u-right-96{
    right: 24rem !important;
  }

  .mobile-large\:u-right-auto{
    right: auto !important;
  }

  .mobile-large\:u-right-px{
    right: 1px !important;
  }

  .mobile-large\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .mobile-large\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .mobile-large\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .mobile-large\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .mobile-large\:u--right-0{
    right: 0px !important;
  }

  .mobile-large\:u--right-1{
    right: -0.25rem !important;
  }

  .mobile-large\:u--right-2{
    right: -0.5rem !important;
  }

  .mobile-large\:u--right-3{
    right: -0.75rem !important;
  }

  .mobile-large\:u--right-4{
    right: -1rem !important;
  }

  .mobile-large\:u--right-5{
    right: -1.25rem !important;
  }

  .mobile-large\:u--right-6{
    right: -1.5rem !important;
  }

  .mobile-large\:u--right-7{
    right: -1.75rem !important;
  }

  .mobile-large\:u--right-8{
    right: -2rem !important;
  }

  .mobile-large\:u--right-9{
    right: -2.25rem !important;
  }

  .mobile-large\:u--right-10{
    right: -2.5rem !important;
  }

  .mobile-large\:u--right-11{
    right: -2.75rem !important;
  }

  .mobile-large\:u--right-12{
    right: -3rem !important;
  }

  .mobile-large\:u--right-14{
    right: -3.5rem !important;
  }

  .mobile-large\:u--right-16{
    right: -4rem !important;
  }

  .mobile-large\:u--right-20{
    right: -5rem !important;
  }

  .mobile-large\:u--right-24{
    right: -6rem !important;
  }

  .mobile-large\:u--right-28{
    right: -7rem !important;
  }

  .mobile-large\:u--right-32{
    right: -8rem !important;
  }

  .mobile-large\:u--right-36{
    right: -9rem !important;
  }

  .mobile-large\:u--right-40{
    right: -10rem !important;
  }

  .mobile-large\:u--right-44{
    right: -11rem !important;
  }

  .mobile-large\:u--right-48{
    right: -12rem !important;
  }

  .mobile-large\:u--right-52{
    right: -13rem !important;
  }

  .mobile-large\:u--right-56{
    right: -14rem !important;
  }

  .mobile-large\:u--right-60{
    right: -15rem !important;
  }

  .mobile-large\:u--right-64{
    right: -16rem !important;
  }

  .mobile-large\:u--right-72{
    right: -18rem !important;
  }

  .mobile-large\:u--right-80{
    right: -20rem !important;
  }

  .mobile-large\:u--right-96{
    right: -24rem !important;
  }

  .mobile-large\:u--right-px{
    right: -1px !important;
  }

  .mobile-large\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .mobile-large\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .mobile-large\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .mobile-large\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .mobile-large\:u-right-1\/2{
    right: 50% !important;
  }

  .mobile-large\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .mobile-large\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .mobile-large\:u-right-1\/4{
    right: 25% !important;
  }

  .mobile-large\:u-right-2\/4{
    right: 50% !important;
  }

  .mobile-large\:u-right-3\/4{
    right: 75% !important;
  }

  .mobile-large\:u-right-full{
    right: 100% !important;
  }

  .mobile-large\:u--right-1\/2{
    right: -50% !important;
  }

  .mobile-large\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .mobile-large\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .mobile-large\:u--right-1\/4{
    right: -25% !important;
  }

  .mobile-large\:u--right-2\/4{
    right: -50% !important;
  }

  .mobile-large\:u--right-3\/4{
    right: -75% !important;
  }

  .mobile-large\:u--right-full{
    right: -100% !important;
  }

  .mobile-large\:u-bottom-0{
    bottom: 0px !important;
  }

  .mobile-large\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .mobile-large\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .mobile-large\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .mobile-large\:u-bottom-4{
    bottom: 1rem !important;
  }

  .mobile-large\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .mobile-large\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .mobile-large\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .mobile-large\:u-bottom-8{
    bottom: 2rem !important;
  }

  .mobile-large\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .mobile-large\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .mobile-large\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .mobile-large\:u-bottom-12{
    bottom: 3rem !important;
  }

  .mobile-large\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .mobile-large\:u-bottom-16{
    bottom: 4rem !important;
  }

  .mobile-large\:u-bottom-20{
    bottom: 5rem !important;
  }

  .mobile-large\:u-bottom-24{
    bottom: 6rem !important;
  }

  .mobile-large\:u-bottom-28{
    bottom: 7rem !important;
  }

  .mobile-large\:u-bottom-32{
    bottom: 8rem !important;
  }

  .mobile-large\:u-bottom-36{
    bottom: 9rem !important;
  }

  .mobile-large\:u-bottom-40{
    bottom: 10rem !important;
  }

  .mobile-large\:u-bottom-44{
    bottom: 11rem !important;
  }

  .mobile-large\:u-bottom-48{
    bottom: 12rem !important;
  }

  .mobile-large\:u-bottom-52{
    bottom: 13rem !important;
  }

  .mobile-large\:u-bottom-56{
    bottom: 14rem !important;
  }

  .mobile-large\:u-bottom-60{
    bottom: 15rem !important;
  }

  .mobile-large\:u-bottom-64{
    bottom: 16rem !important;
  }

  .mobile-large\:u-bottom-72{
    bottom: 18rem !important;
  }

  .mobile-large\:u-bottom-80{
    bottom: 20rem !important;
  }

  .mobile-large\:u-bottom-96{
    bottom: 24rem !important;
  }

  .mobile-large\:u-bottom-auto{
    bottom: auto !important;
  }

  .mobile-large\:u-bottom-px{
    bottom: 1px !important;
  }

  .mobile-large\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .mobile-large\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .mobile-large\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .mobile-large\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .mobile-large\:u--bottom-0{
    bottom: 0px !important;
  }

  .mobile-large\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .mobile-large\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .mobile-large\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .mobile-large\:u--bottom-4{
    bottom: -1rem !important;
  }

  .mobile-large\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .mobile-large\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .mobile-large\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .mobile-large\:u--bottom-8{
    bottom: -2rem !important;
  }

  .mobile-large\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .mobile-large\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .mobile-large\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .mobile-large\:u--bottom-12{
    bottom: -3rem !important;
  }

  .mobile-large\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .mobile-large\:u--bottom-16{
    bottom: -4rem !important;
  }

  .mobile-large\:u--bottom-20{
    bottom: -5rem !important;
  }

  .mobile-large\:u--bottom-24{
    bottom: -6rem !important;
  }

  .mobile-large\:u--bottom-28{
    bottom: -7rem !important;
  }

  .mobile-large\:u--bottom-32{
    bottom: -8rem !important;
  }

  .mobile-large\:u--bottom-36{
    bottom: -9rem !important;
  }

  .mobile-large\:u--bottom-40{
    bottom: -10rem !important;
  }

  .mobile-large\:u--bottom-44{
    bottom: -11rem !important;
  }

  .mobile-large\:u--bottom-48{
    bottom: -12rem !important;
  }

  .mobile-large\:u--bottom-52{
    bottom: -13rem !important;
  }

  .mobile-large\:u--bottom-56{
    bottom: -14rem !important;
  }

  .mobile-large\:u--bottom-60{
    bottom: -15rem !important;
  }

  .mobile-large\:u--bottom-64{
    bottom: -16rem !important;
  }

  .mobile-large\:u--bottom-72{
    bottom: -18rem !important;
  }

  .mobile-large\:u--bottom-80{
    bottom: -20rem !important;
  }

  .mobile-large\:u--bottom-96{
    bottom: -24rem !important;
  }

  .mobile-large\:u--bottom-px{
    bottom: -1px !important;
  }

  .mobile-large\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .mobile-large\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .mobile-large\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .mobile-large\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .mobile-large\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .mobile-large\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .mobile-large\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .mobile-large\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .mobile-large\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .mobile-large\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .mobile-large\:u-bottom-full{
    bottom: 100% !important;
  }

  .mobile-large\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .mobile-large\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .mobile-large\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .mobile-large\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .mobile-large\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .mobile-large\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .mobile-large\:u--bottom-full{
    bottom: -100% !important;
  }

  .mobile-large\:u-left-0{
    left: 0px !important;
  }

  .mobile-large\:u-left-1{
    left: 0.25rem !important;
  }

  .mobile-large\:u-left-2{
    left: 0.5rem !important;
  }

  .mobile-large\:u-left-3{
    left: 0.75rem !important;
  }

  .mobile-large\:u-left-4{
    left: 1rem !important;
  }

  .mobile-large\:u-left-5{
    left: 1.25rem !important;
  }

  .mobile-large\:u-left-6{
    left: 1.5rem !important;
  }

  .mobile-large\:u-left-7{
    left: 1.75rem !important;
  }

  .mobile-large\:u-left-8{
    left: 2rem !important;
  }

  .mobile-large\:u-left-9{
    left: 2.25rem !important;
  }

  .mobile-large\:u-left-10{
    left: 2.5rem !important;
  }

  .mobile-large\:u-left-11{
    left: 2.75rem !important;
  }

  .mobile-large\:u-left-12{
    left: 3rem !important;
  }

  .mobile-large\:u-left-14{
    left: 3.5rem !important;
  }

  .mobile-large\:u-left-16{
    left: 4rem !important;
  }

  .mobile-large\:u-left-20{
    left: 5rem !important;
  }

  .mobile-large\:u-left-24{
    left: 6rem !important;
  }

  .mobile-large\:u-left-28{
    left: 7rem !important;
  }

  .mobile-large\:u-left-32{
    left: 8rem !important;
  }

  .mobile-large\:u-left-36{
    left: 9rem !important;
  }

  .mobile-large\:u-left-40{
    left: 10rem !important;
  }

  .mobile-large\:u-left-44{
    left: 11rem !important;
  }

  .mobile-large\:u-left-48{
    left: 12rem !important;
  }

  .mobile-large\:u-left-52{
    left: 13rem !important;
  }

  .mobile-large\:u-left-56{
    left: 14rem !important;
  }

  .mobile-large\:u-left-60{
    left: 15rem !important;
  }

  .mobile-large\:u-left-64{
    left: 16rem !important;
  }

  .mobile-large\:u-left-72{
    left: 18rem !important;
  }

  .mobile-large\:u-left-80{
    left: 20rem !important;
  }

  .mobile-large\:u-left-96{
    left: 24rem !important;
  }

  .mobile-large\:u-left-auto{
    left: auto !important;
  }

  .mobile-large\:u-left-px{
    left: 1px !important;
  }

  .mobile-large\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .mobile-large\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .mobile-large\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .mobile-large\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .mobile-large\:u--left-0{
    left: 0px !important;
  }

  .mobile-large\:u--left-1{
    left: -0.25rem !important;
  }

  .mobile-large\:u--left-2{
    left: -0.5rem !important;
  }

  .mobile-large\:u--left-3{
    left: -0.75rem !important;
  }

  .mobile-large\:u--left-4{
    left: -1rem !important;
  }

  .mobile-large\:u--left-5{
    left: -1.25rem !important;
  }

  .mobile-large\:u--left-6{
    left: -1.5rem !important;
  }

  .mobile-large\:u--left-7{
    left: -1.75rem !important;
  }

  .mobile-large\:u--left-8{
    left: -2rem !important;
  }

  .mobile-large\:u--left-9{
    left: -2.25rem !important;
  }

  .mobile-large\:u--left-10{
    left: -2.5rem !important;
  }

  .mobile-large\:u--left-11{
    left: -2.75rem !important;
  }

  .mobile-large\:u--left-12{
    left: -3rem !important;
  }

  .mobile-large\:u--left-14{
    left: -3.5rem !important;
  }

  .mobile-large\:u--left-16{
    left: -4rem !important;
  }

  .mobile-large\:u--left-20{
    left: -5rem !important;
  }

  .mobile-large\:u--left-24{
    left: -6rem !important;
  }

  .mobile-large\:u--left-28{
    left: -7rem !important;
  }

  .mobile-large\:u--left-32{
    left: -8rem !important;
  }

  .mobile-large\:u--left-36{
    left: -9rem !important;
  }

  .mobile-large\:u--left-40{
    left: -10rem !important;
  }

  .mobile-large\:u--left-44{
    left: -11rem !important;
  }

  .mobile-large\:u--left-48{
    left: -12rem !important;
  }

  .mobile-large\:u--left-52{
    left: -13rem !important;
  }

  .mobile-large\:u--left-56{
    left: -14rem !important;
  }

  .mobile-large\:u--left-60{
    left: -15rem !important;
  }

  .mobile-large\:u--left-64{
    left: -16rem !important;
  }

  .mobile-large\:u--left-72{
    left: -18rem !important;
  }

  .mobile-large\:u--left-80{
    left: -20rem !important;
  }

  .mobile-large\:u--left-96{
    left: -24rem !important;
  }

  .mobile-large\:u--left-px{
    left: -1px !important;
  }

  .mobile-large\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .mobile-large\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .mobile-large\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .mobile-large\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .mobile-large\:u-left-1\/2{
    left: 50% !important;
  }

  .mobile-large\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .mobile-large\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .mobile-large\:u-left-1\/4{
    left: 25% !important;
  }

  .mobile-large\:u-left-2\/4{
    left: 50% !important;
  }

  .mobile-large\:u-left-3\/4{
    left: 75% !important;
  }

  .mobile-large\:u-left-full{
    left: 100% !important;
  }

  .mobile-large\:u--left-1\/2{
    left: -50% !important;
  }

  .mobile-large\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .mobile-large\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .mobile-large\:u--left-1\/4{
    left: -25% !important;
  }

  .mobile-large\:u--left-2\/4{
    left: -50% !important;
  }

  .mobile-large\:u--left-3\/4{
    left: -75% !important;
  }

  .mobile-large\:u--left-full{
    left: -100% !important;
  }

  .mobile-large\:u-isolate{
    isolation: isolate !important;
  }

  .mobile-large\:u-isolation-auto{
    isolation: auto !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-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-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-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-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-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-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .mobile-large\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mobile-large\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mobile-large\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .mobile-large\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mobile-large\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .mobile-large\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mobile-large\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .mobile-large\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .mobile-large\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .mobile-large\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .mobile-large\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .mobile-large\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mobile-large\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .mobile-large\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .mobile-large\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mobile-large\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mobile-large\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mobile-large\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mobile-large\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mobile-large\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mobile-large\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mobile-large\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mobile-large\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mobile-large\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mobile-large\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mobile-large\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mobile-large\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mobile-large\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mobile-large\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .mobile-large\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mobile-large\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .mobile-large\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .mobile-large\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .mobile-large\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .mobile-large\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .mobile-large\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .mobile-large\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mobile-large\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mobile-large\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .mobile-large\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mobile-large\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .mobile-large\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mobile-large\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .mobile-large\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .mobile-large\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .mobile-large\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .mobile-large\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .mobile-large\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mobile-large\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .mobile-large\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .mobile-large\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mobile-large\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mobile-large\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mobile-large\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mobile-large\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mobile-large\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mobile-large\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mobile-large\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mobile-large\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mobile-large\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mobile-large\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mobile-large\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mobile-large\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mobile-large\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mobile-large\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .mobile-large\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .mobile-large\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .mobile-large\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .mobile-large\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !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-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .mobile-large\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .mobile-large\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .mobile-large\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mobile-large\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .mobile-large\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .mobile-large\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .mobile-large\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .mobile-large\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .mobile-large\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .mobile-large\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .mobile-large\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .mobile-large\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .mobile-large\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .mobile-large\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .mobile-large\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .mobile-large\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .mobile-large\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .mobile-large\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .mobile-large\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .mobile-large\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .mobile-large\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .mobile-large\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .mobile-large\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .mobile-large\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .mobile-large\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .mobile-large\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .mobile-large\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .mobile-large\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .mobile-large\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mobile-large\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .mobile-large\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .mobile-large\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .mobile-large\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .mobile-large\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .mobile-large\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .mobile-large\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .mobile-large\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .mobile-large\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .mobile-large\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .mobile-large\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .mobile-large\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .mobile-large\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .mobile-large\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .mobile-large\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .mobile-large\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .mobile-large\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .mobile-large\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mobile-large\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .mobile-large\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .mobile-large\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mobile-large\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .mobile-large\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .mobile-large\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .mobile-large\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .mobile-large\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .mobile-large\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .mobile-large\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .mobile-large\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .mobile-large\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .mobile-large\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .mobile-large\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .mobile-large\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .mobile-large\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .mobile-large\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .mobile-large\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .mobile-large\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .mobile-large\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .mobile-large\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .mobile-large\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .mobile-large\:u-mt-0{
    margin-top: 0px !important;
  }

  .mobile-large\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .mobile-large\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .mobile-large\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .mobile-large\:u-mt-4{
    margin-top: 1rem !important;
  }

  .mobile-large\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .mobile-large\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .mobile-large\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .mobile-large\:u-mt-8{
    margin-top: 2rem !important;
  }

  .mobile-large\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .mobile-large\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .mobile-large\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .mobile-large\:u-mt-12{
    margin-top: 3rem !important;
  }

  .mobile-large\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .mobile-large\:u-mt-16{
    margin-top: 4rem !important;
  }

  .mobile-large\:u-mt-20{
    margin-top: 5rem !important;
  }

  .mobile-large\:u-mt-24{
    margin-top: 6rem !important;
  }

  .mobile-large\:u-mt-28{
    margin-top: 7rem !important;
  }

  .mobile-large\:u-mt-32{
    margin-top: 8rem !important;
  }

  .mobile-large\:u-mt-36{
    margin-top: 9rem !important;
  }

  .mobile-large\:u-mt-40{
    margin-top: 10rem !important;
  }

  .mobile-large\:u-mt-44{
    margin-top: 11rem !important;
  }

  .mobile-large\:u-mt-48{
    margin-top: 12rem !important;
  }

  .mobile-large\:u-mt-52{
    margin-top: 13rem !important;
  }

  .mobile-large\:u-mt-56{
    margin-top: 14rem !important;
  }

  .mobile-large\:u-mt-60{
    margin-top: 15rem !important;
  }

  .mobile-large\:u-mt-64{
    margin-top: 16rem !important;
  }

  .mobile-large\:u-mt-72{
    margin-top: 18rem !important;
  }

  .mobile-large\:u-mt-80{
    margin-top: 20rem !important;
  }

  .mobile-large\:u-mt-96{
    margin-top: 24rem !important;
  }

  .mobile-large\:u-mt-auto{
    margin-top: auto !important;
  }

  .mobile-large\:u-mt-px{
    margin-top: 1px !important;
  }

  .mobile-large\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .mobile-large\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .mobile-large\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .mobile-large\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .mobile-large\:u--mt-0{
    margin-top: 0px !important;
  }

  .mobile-large\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .mobile-large\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .mobile-large\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .mobile-large\:u--mt-4{
    margin-top: -1rem !important;
  }

  .mobile-large\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .mobile-large\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .mobile-large\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .mobile-large\:u--mt-8{
    margin-top: -2rem !important;
  }

  .mobile-large\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .mobile-large\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .mobile-large\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .mobile-large\:u--mt-12{
    margin-top: -3rem !important;
  }

  .mobile-large\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .mobile-large\:u--mt-16{
    margin-top: -4rem !important;
  }

  .mobile-large\:u--mt-20{
    margin-top: -5rem !important;
  }

  .mobile-large\:u--mt-24{
    margin-top: -6rem !important;
  }

  .mobile-large\:u--mt-28{
    margin-top: -7rem !important;
  }

  .mobile-large\:u--mt-32{
    margin-top: -8rem !important;
  }

  .mobile-large\:u--mt-36{
    margin-top: -9rem !important;
  }

  .mobile-large\:u--mt-40{
    margin-top: -10rem !important;
  }

  .mobile-large\:u--mt-44{
    margin-top: -11rem !important;
  }

  .mobile-large\:u--mt-48{
    margin-top: -12rem !important;
  }

  .mobile-large\:u--mt-52{
    margin-top: -13rem !important;
  }

  .mobile-large\:u--mt-56{
    margin-top: -14rem !important;
  }

  .mobile-large\:u--mt-60{
    margin-top: -15rem !important;
  }

  .mobile-large\:u--mt-64{
    margin-top: -16rem !important;
  }

  .mobile-large\:u--mt-72{
    margin-top: -18rem !important;
  }

  .mobile-large\:u--mt-80{
    margin-top: -20rem !important;
  }

  .mobile-large\:u--mt-96{
    margin-top: -24rem !important;
  }

  .mobile-large\:u--mt-px{
    margin-top: -1px !important;
  }

  .mobile-large\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .mobile-large\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .mobile-large\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .mobile-large\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .mobile-large\:u-mr-0{
    margin-right: 0px !important;
  }

  .mobile-large\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .mobile-large\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .mobile-large\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .mobile-large\:u-mr-4{
    margin-right: 1rem !important;
  }

  .mobile-large\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .mobile-large\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .mobile-large\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .mobile-large\:u-mr-8{
    margin-right: 2rem !important;
  }

  .mobile-large\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .mobile-large\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .mobile-large\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .mobile-large\:u-mr-12{
    margin-right: 3rem !important;
  }

  .mobile-large\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .mobile-large\:u-mr-16{
    margin-right: 4rem !important;
  }

  .mobile-large\:u-mr-20{
    margin-right: 5rem !important;
  }

  .mobile-large\:u-mr-24{
    margin-right: 6rem !important;
  }

  .mobile-large\:u-mr-28{
    margin-right: 7rem !important;
  }

  .mobile-large\:u-mr-32{
    margin-right: 8rem !important;
  }

  .mobile-large\:u-mr-36{
    margin-right: 9rem !important;
  }

  .mobile-large\:u-mr-40{
    margin-right: 10rem !important;
  }

  .mobile-large\:u-mr-44{
    margin-right: 11rem !important;
  }

  .mobile-large\:u-mr-48{
    margin-right: 12rem !important;
  }

  .mobile-large\:u-mr-52{
    margin-right: 13rem !important;
  }

  .mobile-large\:u-mr-56{
    margin-right: 14rem !important;
  }

  .mobile-large\:u-mr-60{
    margin-right: 15rem !important;
  }

  .mobile-large\:u-mr-64{
    margin-right: 16rem !important;
  }

  .mobile-large\:u-mr-72{
    margin-right: 18rem !important;
  }

  .mobile-large\:u-mr-80{
    margin-right: 20rem !important;
  }

  .mobile-large\:u-mr-96{
    margin-right: 24rem !important;
  }

  .mobile-large\:u-mr-auto{
    margin-right: auto !important;
  }

  .mobile-large\:u-mr-px{
    margin-right: 1px !important;
  }

  .mobile-large\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .mobile-large\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .mobile-large\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .mobile-large\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .mobile-large\:u--mr-0{
    margin-right: 0px !important;
  }

  .mobile-large\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .mobile-large\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .mobile-large\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .mobile-large\:u--mr-4{
    margin-right: -1rem !important;
  }

  .mobile-large\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .mobile-large\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .mobile-large\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .mobile-large\:u--mr-8{
    margin-right: -2rem !important;
  }

  .mobile-large\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .mobile-large\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .mobile-large\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .mobile-large\:u--mr-12{
    margin-right: -3rem !important;
  }

  .mobile-large\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .mobile-large\:u--mr-16{
    margin-right: -4rem !important;
  }

  .mobile-large\:u--mr-20{
    margin-right: -5rem !important;
  }

  .mobile-large\:u--mr-24{
    margin-right: -6rem !important;
  }

  .mobile-large\:u--mr-28{
    margin-right: -7rem !important;
  }

  .mobile-large\:u--mr-32{
    margin-right: -8rem !important;
  }

  .mobile-large\:u--mr-36{
    margin-right: -9rem !important;
  }

  .mobile-large\:u--mr-40{
    margin-right: -10rem !important;
  }

  .mobile-large\:u--mr-44{
    margin-right: -11rem !important;
  }

  .mobile-large\:u--mr-48{
    margin-right: -12rem !important;
  }

  .mobile-large\:u--mr-52{
    margin-right: -13rem !important;
  }

  .mobile-large\:u--mr-56{
    margin-right: -14rem !important;
  }

  .mobile-large\:u--mr-60{
    margin-right: -15rem !important;
  }

  .mobile-large\:u--mr-64{
    margin-right: -16rem !important;
  }

  .mobile-large\:u--mr-72{
    margin-right: -18rem !important;
  }

  .mobile-large\:u--mr-80{
    margin-right: -20rem !important;
  }

  .mobile-large\:u--mr-96{
    margin-right: -24rem !important;
  }

  .mobile-large\:u--mr-px{
    margin-right: -1px !important;
  }

  .mobile-large\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .mobile-large\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .mobile-large\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .mobile-large\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .mobile-large\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .mobile-large\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .mobile-large\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .mobile-large\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .mobile-large\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .mobile-large\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .mobile-large\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .mobile-large\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .mobile-large\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .mobile-large\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .mobile-large\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .mobile-large\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .mobile-large\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .mobile-large\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .mobile-large\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .mobile-large\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .mobile-large\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .mobile-large\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .mobile-large\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .mobile-large\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .mobile-large\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .mobile-large\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .mobile-large\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .mobile-large\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .mobile-large\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .mobile-large\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .mobile-large\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .mobile-large\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .mobile-large\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .mobile-large\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .mobile-large\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .mobile-large\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .mobile-large\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .mobile-large\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .mobile-large\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .mobile-large\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .mobile-large\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .mobile-large\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .mobile-large\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .mobile-large\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .mobile-large\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .mobile-large\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .mobile-large\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .mobile-large\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .mobile-large\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .mobile-large\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .mobile-large\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .mobile-large\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .mobile-large\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .mobile-large\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .mobile-large\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .mobile-large\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .mobile-large\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .mobile-large\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .mobile-large\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .mobile-large\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .mobile-large\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .mobile-large\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .mobile-large\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .mobile-large\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .mobile-large\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .mobile-large\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .mobile-large\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .mobile-large\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .mobile-large\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .mobile-large\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .mobile-large\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .mobile-large\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .mobile-large\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .mobile-large\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .mobile-large\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .mobile-large\:u-ml-0{
    margin-left: 0px !important;
  }

  .mobile-large\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .mobile-large\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .mobile-large\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .mobile-large\:u-ml-4{
    margin-left: 1rem !important;
  }

  .mobile-large\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .mobile-large\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .mobile-large\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .mobile-large\:u-ml-8{
    margin-left: 2rem !important;
  }

  .mobile-large\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .mobile-large\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .mobile-large\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .mobile-large\:u-ml-12{
    margin-left: 3rem !important;
  }

  .mobile-large\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .mobile-large\:u-ml-16{
    margin-left: 4rem !important;
  }

  .mobile-large\:u-ml-20{
    margin-left: 5rem !important;
  }

  .mobile-large\:u-ml-24{
    margin-left: 6rem !important;
  }

  .mobile-large\:u-ml-28{
    margin-left: 7rem !important;
  }

  .mobile-large\:u-ml-32{
    margin-left: 8rem !important;
  }

  .mobile-large\:u-ml-36{
    margin-left: 9rem !important;
  }

  .mobile-large\:u-ml-40{
    margin-left: 10rem !important;
  }

  .mobile-large\:u-ml-44{
    margin-left: 11rem !important;
  }

  .mobile-large\:u-ml-48{
    margin-left: 12rem !important;
  }

  .mobile-large\:u-ml-52{
    margin-left: 13rem !important;
  }

  .mobile-large\:u-ml-56{
    margin-left: 14rem !important;
  }

  .mobile-large\:u-ml-60{
    margin-left: 15rem !important;
  }

  .mobile-large\:u-ml-64{
    margin-left: 16rem !important;
  }

  .mobile-large\:u-ml-72{
    margin-left: 18rem !important;
  }

  .mobile-large\:u-ml-80{
    margin-left: 20rem !important;
  }

  .mobile-large\:u-ml-96{
    margin-left: 24rem !important;
  }

  .mobile-large\:u-ml-auto{
    margin-left: auto !important;
  }

  .mobile-large\:u-ml-px{
    margin-left: 1px !important;
  }

  .mobile-large\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .mobile-large\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .mobile-large\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .mobile-large\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .mobile-large\:u--ml-0{
    margin-left: 0px !important;
  }

  .mobile-large\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .mobile-large\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .mobile-large\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .mobile-large\:u--ml-4{
    margin-left: -1rem !important;
  }

  .mobile-large\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .mobile-large\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .mobile-large\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .mobile-large\:u--ml-8{
    margin-left: -2rem !important;
  }

  .mobile-large\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .mobile-large\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .mobile-large\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .mobile-large\:u--ml-12{
    margin-left: -3rem !important;
  }

  .mobile-large\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .mobile-large\:u--ml-16{
    margin-left: -4rem !important;
  }

  .mobile-large\:u--ml-20{
    margin-left: -5rem !important;
  }

  .mobile-large\:u--ml-24{
    margin-left: -6rem !important;
  }

  .mobile-large\:u--ml-28{
    margin-left: -7rem !important;
  }

  .mobile-large\:u--ml-32{
    margin-left: -8rem !important;
  }

  .mobile-large\:u--ml-36{
    margin-left: -9rem !important;
  }

  .mobile-large\:u--ml-40{
    margin-left: -10rem !important;
  }

  .mobile-large\:u--ml-44{
    margin-left: -11rem !important;
  }

  .mobile-large\:u--ml-48{
    margin-left: -12rem !important;
  }

  .mobile-large\:u--ml-52{
    margin-left: -13rem !important;
  }

  .mobile-large\:u--ml-56{
    margin-left: -14rem !important;
  }

  .mobile-large\:u--ml-60{
    margin-left: -15rem !important;
  }

  .mobile-large\:u--ml-64{
    margin-left: -16rem !important;
  }

  .mobile-large\:u--ml-72{
    margin-left: -18rem !important;
  }

  .mobile-large\:u--ml-80{
    margin-left: -20rem !important;
  }

  .mobile-large\:u--ml-96{
    margin-left: -24rem !important;
  }

  .mobile-large\:u--ml-px{
    margin-left: -1px !important;
  }

  .mobile-large\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .mobile-large\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .mobile-large\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .mobile-large\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .mobile-large\:u-box-border{
    box-sizing: border-box !important;
  }

  .mobile-large\:u-box-content{
    box-sizing: content-box !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-inline-table{
    display: inline-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-list-item{
    display: list-item !important;
  }

  .mobile-large\:u-hidden{
    display: none !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-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-min-h-0{
    min-height: 0px !important;
  }

  .mobile-large\:u-min-h-full{
    min-height: 100% !important;
  }

  .mobile-large\:u-min-h-screen{
    min-height: 100vh !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: -moz-min-content !important;
    width: min-content !important;
  }

  .mobile-large\:u-w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .mobile-large\:u-min-w-0{
    min-width: 0px !important;
  }

  .mobile-large\:u-min-w-full{
    min-width: 100% !important;
  }

  .mobile-large\:u-min-w-min{
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .mobile-large\:u-min-w-max{
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .mobile-large\:u-max-w-0{
    max-width: 0rem !important;
  }

  .mobile-large\:u-max-w-none{
    max-width: none !important;
  }

  .mobile-large\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .mobile-large\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .mobile-large\:u-max-w-md{
    max-width: 28rem !important;
  }

  .mobile-large\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .mobile-large\:u-max-w-xl{
    max-width: 36rem !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-7xl{
    max-width: 80rem !important;
  }

  .mobile-large\:u-max-w-full{
    max-width: 100% !important;
  }

  .mobile-large\:u-max-w-min{
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .mobile-large\:u-max-w-max{
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .mobile-large\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .mobile-large\:u-max-w-screen-mobile{
    max-width: 375px !important;
  }

  .mobile-large\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .mobile-large\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .mobile-large\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .mobile-large\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .mobile-large\:u-max-w-screen-desktop{
    max-width: 1280px !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: 1280px !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-none{
    flex: none !important;
  }

  .mobile-large\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .mobile-large\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .mobile-large\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .mobile-large\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .mobile-large\:u-table-auto{
    table-layout: auto !important;
  }

  .mobile-large\:u-table-fixed{
    table-layout: fixed !important;
  }

  .mobile-large\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .mobile-large\:u-border-separate{
    border-collapse: separate !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-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-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-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-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-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\: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\: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\: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-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-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-animate-none{
    animation: none !important;
  }

  .mobile-large\:u-animate-spin{
    animation: u-spin 1s linear infinite !important;
  }

  .mobile-large\:u-animate-ping{
    animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .mobile-large\:u-animate-pulse{
    animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .mobile-large\:u-animate-bounce{
    animation: u-bounce 1s infinite !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-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .mobile-large\:u-select-text{
    -webkit-user-select: text !important;
       -moz-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;
            user-select: auto !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-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-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .mobile-large\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .mobile-large\:u-auto-cols-min{
    grid-auto-columns: min-content !important;
  }

  .mobile-large\:u-auto-cols-max{
    grid-auto-columns: max-content !important;
  }

  .mobile-large\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !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-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .mobile-large\:u-auto-rows-min{
    grid-auto-rows: min-content !important;
  }

  .mobile-large\:u-auto-rows-max{
    grid-auto-rows: max-content !important;
  }

  .mobile-large\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-0 > :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(250, 250, 250, 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(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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 > :not([hidden]) ~ :not([hidden]){
    border-color: var(--primary) !important;
  }

  .mobile-large\:u-divide-secundary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--secundary) !important;
  }

  .mobile-large\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !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-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-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-self-baseline{
    align-self: baseline !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-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{
    overscroll-behavior: auto !important;
  }

  .mobile-large\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .mobile-large\:u-overscroll-none{
    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-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-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-rounded-none{
    border-radius: 0px !important;
  }

  .mobile-large\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !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-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-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-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !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-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !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-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !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-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !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-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !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-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !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-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !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: 0px !important;
  }

  .mobile-large\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .mobile-large\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .mobile-large\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .mobile-large\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .mobile-large\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .mobile-large\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .mobile-large\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .mobile-large\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !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-t-2{
    border-top-width: 2px !important;
  }

  .mobile-large\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .mobile-large\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .mobile-large\:u-border-t{
    border-top-width: 1px !important;
  }

  .mobile-large\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .mobile-large\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .mobile-large\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .mobile-large\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .mobile-large\:u-border-r{
    border-right-width: 1px !important;
  }

  .mobile-large\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .mobile-large\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .mobile-large\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .mobile-large\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .mobile-large\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .mobile-large\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .mobile-large\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .mobile-large\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .mobile-large\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .mobile-large\:u-border-l{
    border-left-width: 1px !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-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .mobile-large\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .mobile-large\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .mobile-large\:u-border-transparent{
    border-color: transparent !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-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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-transparent{
    border-color: transparent !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-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-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus-within{
    border-color: var(--primary) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary:focus-within{
    border-color: var(--secundary) !important;
  }

  .mobile-large\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !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-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:hover{
    border-color: var(--primary) !important;
  }

  .mobile-large\:hover\:u-border-secundary:hover{
    border-color: var(--secundary) !important;
  }

  .mobile-large\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:hover\:u-border-transparent:hover{
    border-color: transparent !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-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus{
    border-color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-border-secundary:focus{
    border-color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus\:u-border-transparent:focus{
    border-color: transparent !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-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .mobile-large\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .mobile-large\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .mobile-large\:u-bg-transparent{
    background-color: transparent !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-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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-transparent{
    background-color: transparent !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-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-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus-within{
    background-color: var(--primary) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary:focus-within{
    background-color: var(--secundary) !important;
  }

  .mobile-large\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !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-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:hover{
    background-color: var(--primary) !important;
  }

  .mobile-large\:hover\:u-bg-secundary:hover{
    background-color: var(--secundary) !important;
  }

  .mobile-large\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:hover\:u-bg-transparent:hover{
    background-color: transparent !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-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus{
    background-color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-bg-secundary:focus{
    background-color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus\:u-bg-transparent:focus{
    background-color: transparent !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-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-white{
    --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-black{
    --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-faded{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:u-from-neutral-0{
    --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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:u-from-neutral-30{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile-large\:u-from-neutral-40{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile-large\:u-from-neutral-45{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:u-from-neutral-50{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-from-secundary{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-from-success{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:hover\:u-from-white: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-black: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-faded:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #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-30:hover{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary:hover{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-from-success:hover{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:focus\:u-from-white: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-black: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-faded:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #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-30:focus{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary:focus{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-from-success:focus{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:u-via-neutral-0{
    --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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-via-secundary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-to-white{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:u-to-black{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:u-to-faded{
    --tw-gradient-to: #666666 !important;
  }

  .mobile-large\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:u-to-neutral-10{
    --tw-gradient-to: #FAFAFA !important;
  }

  .mobile-large\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile-large\:u-to-neutral-20{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile-large\:u-to-neutral-30{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .mobile-large\:u-to-neutral-40{
    --tw-gradient-to: #9E9E9E !important;
  }

  .mobile-large\:u-to-neutral-45{
    --tw-gradient-to: #666666 !important;
  }

  .mobile-large\:u-to-neutral-50{
    --tw-gradient-to: #262626 !important;
  }

  .mobile-large\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:u-to-primary{
    --tw-gradient-to: var(--primary) !important;
  }

  .mobile-large\:u-to-secundary{
    --tw-gradient-to: var(--secundary) !important;
  }

  .mobile-large\:u-to-success{
    --tw-gradient-to: #9FC734 !important;
  }

  .mobile-large\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .mobile-large\:hover\:u-to-white:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:hover\:u-to-black:hover{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:hover\:u-to-faded:hover{
    --tw-gradient-to: #666666 !important;
  }

  .mobile-large\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FAFAFA !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: #F7F7F7 !important;
  }

  .mobile-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .mobile-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #9E9E9E !important;
  }

  .mobile-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #666666 !important;
  }

  .mobile-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #262626 !important;
  }

  .mobile-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:hover\:u-to-primary:hover{
    --tw-gradient-to: var(--primary) !important;
  }

  .mobile-large\:hover\:u-to-secundary:hover{
    --tw-gradient-to: var(--secundary) !important;
  }

  .mobile-large\:hover\:u-to-success:hover{
    --tw-gradient-to: #9FC734 !important;
  }

  .mobile-large\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .mobile-large\:focus\:u-to-white:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:focus\:u-to-black:focus{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:focus\:u-to-faded:focus{
    --tw-gradient-to: #666666 !important;
  }

  .mobile-large\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FAFAFA !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: #F7F7F7 !important;
  }

  .mobile-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .mobile-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #9E9E9E !important;
  }

  .mobile-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #666666 !important;
  }

  .mobile-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #262626 !important;
  }

  .mobile-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:focus\:u-to-primary:focus{
    --tw-gradient-to: var(--primary) !important;
  }

  .mobile-large\:focus\:u-to-secundary:focus{
    --tw-gradient-to: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-to-success:focus{
    --tw-gradient-to: #9FC734 !important;
  }

  .mobile-large\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .mobile-large\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .mobile-large\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !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-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-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-origin-border{
    background-origin: border-box !important;
  }

  .mobile-large\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .mobile-large\:u-bg-origin-content{
    background-origin: content-box !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-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-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-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .mobile-large\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .mobile-large\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .mobile-large\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .mobile-large\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mobile-large\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .mobile-large\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .mobile-large\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .mobile-large\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .mobile-large\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .mobile-large\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .mobile-large\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .mobile-large\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .mobile-large\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .mobile-large\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .mobile-large\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .mobile-large\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .mobile-large\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .mobile-large\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .mobile-large\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .mobile-large\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .mobile-large\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .mobile-large\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .mobile-large\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .mobile-large\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .mobile-large\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .mobile-large\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .mobile-large\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .mobile-large\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .mobile-large\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .mobile-large\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .mobile-large\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .mobile-large\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .mobile-large\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .mobile-large\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .mobile-large\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .mobile-large\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .mobile-large\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .mobile-large\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .mobile-large\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .mobile-large\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .mobile-large\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mobile-large\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .mobile-large\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mobile-large\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .mobile-large\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .mobile-large\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .mobile-large\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mobile-large\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .mobile-large\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .mobile-large\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .mobile-large\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .mobile-large\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .mobile-large\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .mobile-large\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .mobile-large\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .mobile-large\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .mobile-large\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .mobile-large\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .mobile-large\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .mobile-large\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .mobile-large\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .mobile-large\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .mobile-large\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .mobile-large\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .mobile-large\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .mobile-large\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .mobile-large\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .mobile-large\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .mobile-large\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .mobile-large\:u-pt-0{
    padding-top: 0px !important;
  }

  .mobile-large\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .mobile-large\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .mobile-large\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .mobile-large\:u-pt-4{
    padding-top: 1rem !important;
  }

  .mobile-large\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .mobile-large\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .mobile-large\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .mobile-large\:u-pt-8{
    padding-top: 2rem !important;
  }

  .mobile-large\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .mobile-large\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .mobile-large\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .mobile-large\:u-pt-12{
    padding-top: 3rem !important;
  }

  .mobile-large\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .mobile-large\:u-pt-16{
    padding-top: 4rem !important;
  }

  .mobile-large\:u-pt-20{
    padding-top: 5rem !important;
  }

  .mobile-large\:u-pt-24{
    padding-top: 6rem !important;
  }

  .mobile-large\:u-pt-28{
    padding-top: 7rem !important;
  }

  .mobile-large\:u-pt-32{
    padding-top: 8rem !important;
  }

  .mobile-large\:u-pt-36{
    padding-top: 9rem !important;
  }

  .mobile-large\:u-pt-40{
    padding-top: 10rem !important;
  }

  .mobile-large\:u-pt-44{
    padding-top: 11rem !important;
  }

  .mobile-large\:u-pt-48{
    padding-top: 12rem !important;
  }

  .mobile-large\:u-pt-52{
    padding-top: 13rem !important;
  }

  .mobile-large\:u-pt-56{
    padding-top: 14rem !important;
  }

  .mobile-large\:u-pt-60{
    padding-top: 15rem !important;
  }

  .mobile-large\:u-pt-64{
    padding-top: 16rem !important;
  }

  .mobile-large\:u-pt-72{
    padding-top: 18rem !important;
  }

  .mobile-large\:u-pt-80{
    padding-top: 20rem !important;
  }

  .mobile-large\:u-pt-96{
    padding-top: 24rem !important;
  }

  .mobile-large\:u-pt-px{
    padding-top: 1px !important;
  }

  .mobile-large\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .mobile-large\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .mobile-large\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .mobile-large\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .mobile-large\:u-pr-0{
    padding-right: 0px !important;
  }

  .mobile-large\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .mobile-large\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .mobile-large\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .mobile-large\:u-pr-4{
    padding-right: 1rem !important;
  }

  .mobile-large\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .mobile-large\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .mobile-large\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .mobile-large\:u-pr-8{
    padding-right: 2rem !important;
  }

  .mobile-large\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .mobile-large\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .mobile-large\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .mobile-large\:u-pr-12{
    padding-right: 3rem !important;
  }

  .mobile-large\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .mobile-large\:u-pr-16{
    padding-right: 4rem !important;
  }

  .mobile-large\:u-pr-20{
    padding-right: 5rem !important;
  }

  .mobile-large\:u-pr-24{
    padding-right: 6rem !important;
  }

  .mobile-large\:u-pr-28{
    padding-right: 7rem !important;
  }

  .mobile-large\:u-pr-32{
    padding-right: 8rem !important;
  }

  .mobile-large\:u-pr-36{
    padding-right: 9rem !important;
  }

  .mobile-large\:u-pr-40{
    padding-right: 10rem !important;
  }

  .mobile-large\:u-pr-44{
    padding-right: 11rem !important;
  }

  .mobile-large\:u-pr-48{
    padding-right: 12rem !important;
  }

  .mobile-large\:u-pr-52{
    padding-right: 13rem !important;
  }

  .mobile-large\:u-pr-56{
    padding-right: 14rem !important;
  }

  .mobile-large\:u-pr-60{
    padding-right: 15rem !important;
  }

  .mobile-large\:u-pr-64{
    padding-right: 16rem !important;
  }

  .mobile-large\:u-pr-72{
    padding-right: 18rem !important;
  }

  .mobile-large\:u-pr-80{
    padding-right: 20rem !important;
  }

  .mobile-large\:u-pr-96{
    padding-right: 24rem !important;
  }

  .mobile-large\:u-pr-px{
    padding-right: 1px !important;
  }

  .mobile-large\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .mobile-large\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .mobile-large\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .mobile-large\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .mobile-large\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .mobile-large\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .mobile-large\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .mobile-large\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .mobile-large\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .mobile-large\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .mobile-large\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .mobile-large\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .mobile-large\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .mobile-large\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .mobile-large\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .mobile-large\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .mobile-large\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .mobile-large\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .mobile-large\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .mobile-large\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .mobile-large\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .mobile-large\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .mobile-large\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .mobile-large\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .mobile-large\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .mobile-large\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .mobile-large\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .mobile-large\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .mobile-large\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .mobile-large\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .mobile-large\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .mobile-large\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .mobile-large\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .mobile-large\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .mobile-large\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .mobile-large\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .mobile-large\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .mobile-large\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .mobile-large\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .mobile-large\:u-pl-0{
    padding-left: 0px !important;
  }

  .mobile-large\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .mobile-large\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .mobile-large\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .mobile-large\:u-pl-4{
    padding-left: 1rem !important;
  }

  .mobile-large\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .mobile-large\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .mobile-large\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .mobile-large\:u-pl-8{
    padding-left: 2rem !important;
  }

  .mobile-large\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .mobile-large\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .mobile-large\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .mobile-large\:u-pl-12{
    padding-left: 3rem !important;
  }

  .mobile-large\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .mobile-large\:u-pl-16{
    padding-left: 4rem !important;
  }

  .mobile-large\:u-pl-20{
    padding-left: 5rem !important;
  }

  .mobile-large\:u-pl-24{
    padding-left: 6rem !important;
  }

  .mobile-large\:u-pl-28{
    padding-left: 7rem !important;
  }

  .mobile-large\:u-pl-32{
    padding-left: 8rem !important;
  }

  .mobile-large\:u-pl-36{
    padding-left: 9rem !important;
  }

  .mobile-large\:u-pl-40{
    padding-left: 10rem !important;
  }

  .mobile-large\:u-pl-44{
    padding-left: 11rem !important;
  }

  .mobile-large\:u-pl-48{
    padding-left: 12rem !important;
  }

  .mobile-large\:u-pl-52{
    padding-left: 13rem !important;
  }

  .mobile-large\:u-pl-56{
    padding-left: 14rem !important;
  }

  .mobile-large\:u-pl-60{
    padding-left: 15rem !important;
  }

  .mobile-large\:u-pl-64{
    padding-left: 16rem !important;
  }

  .mobile-large\:u-pl-72{
    padding-left: 18rem !important;
  }

  .mobile-large\:u-pl-80{
    padding-left: 20rem !important;
  }

  .mobile-large\:u-pl-96{
    padding-left: 24rem !important;
  }

  .mobile-large\:u-pl-px{
    padding-left: 1px !important;
  }

  .mobile-large\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .mobile-large\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .mobile-large\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .mobile-large\:u-pl-3\.5{
    padding-left: 0.875rem !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-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-font-body{
    font-family: Public Sans, sans-serif !important;
  }

  .mobile-large\:u-font-heading{
    font-family: Public Sans, sans-serif !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.2rem !important;
  }

  .mobile-large\:u-text-3xl{
    font-size: 1.3rem !important;
  }

  .mobile-large\:u-text-4xl{
    font-size: 1.4rem !important;
  }

  .mobile-large\:u-text-5xl{
    font-size: 2rem !important;
  }

  .mobile-large\:u-text-6xl{
    font-size: 3rem !important;
  }

  .mobile-large\:u-text-8xl{
    font-size: 4rem !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-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-italic{
    font-style: italic !important;
  }

  .mobile-large\:u-not-italic{
    font-style: normal !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-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.5 !important;
  }

  .mobile-large\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .mobile-large\:u-leading-loose{
    line-height: 2 !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-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !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-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .mobile-large\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .mobile-large\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .mobile-large\:u-text-transparent{
    color: transparent !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-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-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-transparent{
    color: transparent !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-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus-within{
    color: var(--primary) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary:focus-within{
    color: var(--secundary) !important;
  }

  .mobile-large\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus-within\:u-text-transparent:focus-within{
    color: transparent !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-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:hover{
    color: var(--primary) !important;
  }

  .mobile-large\:hover\:u-text-secundary:hover{
    color: var(--secundary) !important;
  }

  .mobile-large\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:hover\:u-text-transparent:hover{
    color: transparent !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-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus{
    color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-text-secundary:focus{
    color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus\:u-text-transparent:focus{
    color: transparent !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-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-placeholder-white::-moz-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-black::-moz-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-0::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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary::-moz-placeholder{
    color: var(--primary) !important;
  }

  .mobile-large\:u-placeholder-primary::placeholder{
    color: var(--primary) !important;
  }

  .mobile-large\:u-placeholder-secundary::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .mobile-large\:u-placeholder-secundary::placeholder{
    color: var(--secundary) !important;
  }

  .mobile-large\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .mobile-large\:u-placeholder-transparent::placeholder{
    color: transparent !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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-0: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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary:focus::-moz-placeholder{
    color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary:focus::placeholder{
    color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary:focus::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary:focus::placeholder{
    color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .mobile-large\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .mobile-large\:u-placeholder-opacity-0::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 1 !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-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .mobile-large\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .mobile-large\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .mobile-large\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .mobile-large\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .mobile-large\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .mobile-large\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .mobile-large\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .mobile-large\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .mobile-large\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .mobile-large\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .mobile-large\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .mobile-large\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .mobile-large\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .mobile-large\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .mobile-large\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .mobile-large\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .mobile-large\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .mobile-large\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .mobile-large\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .mobile-large\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .mobile-large\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .mobile-large\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .mobile-large\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .mobile-large\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .mobile-large\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .mobile-large\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .mobile-large\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .mobile-large\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .mobile-large\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .mobile-large\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .mobile-large\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !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;
  }

  .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;
  }

  .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\: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\: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\: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-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\: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\: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\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .mobile-large\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .mobile-large\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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{
    --tw-ring-color: var(--primary) !important;
  }

  .mobile-large\:u-ring-secundary{
    --tw-ring-color: var(--secundary) !important;
  }

  .mobile-large\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:u-ring-transparent{
    --tw-ring-color: transparent !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-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-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus-within{
    --tw-ring-color: var(--primary) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary:focus-within{
    --tw-ring-color: var(--secundary) !important;
  }

  .mobile-large\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !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-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus{
    --tw-ring-color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-ring-secundary:focus{
    --tw-ring-color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !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-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-offset-white{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:u-ring-offset-black{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:u-ring-offset-faded{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile-large\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .mobile-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .mobile-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .mobile-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #262626 !important;
  }

  .mobile-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:u-ring-offset-primary{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .mobile-large\:u-ring-offset-secundary{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .mobile-large\:u-ring-offset-success{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .mobile-large\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile-large\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #262626 !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:focus-within{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary:focus-within{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile-large\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #262626 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary:focus{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary:focus{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .mobile-large\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .mobile-large\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile-large\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile-large\:u-filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
  }

  .mobile-large\:u-filter-none{
    filter: none !important;
  }

  .mobile-large\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .mobile-large\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .mobile-large\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .mobile-large\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .mobile-large\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .mobile-large\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .mobile-large\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .mobile-large\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .mobile-large\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .mobile-large\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .mobile-large\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .mobile-large\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .mobile-large\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .mobile-large\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .mobile-large\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .mobile-large\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .mobile-large\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .mobile-large\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .mobile-large\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .mobile-large\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .mobile-large\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .mobile-large\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .mobile-large\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .mobile-large\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .mobile-large\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .mobile-large\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .mobile-large\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .mobile-large\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .mobile-large\:u-drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
  }

  .mobile-large\:u-drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
  }

  .mobile-large\:u-drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
  }

  .mobile-large\:u-drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
  }

  .mobile-large\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .mobile-large\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .mobile-large\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .mobile-large\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .mobile-large\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .mobile-large\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .mobile-large\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .mobile-large\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .mobile-large\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .mobile-large\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .mobile-large\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .mobile-large\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .mobile-large\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .mobile-large\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .mobile-large\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .mobile-large\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .mobile-large\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .mobile-large\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .mobile-large\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .mobile-large\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .mobile-large\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .mobile-large\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .mobile-large\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .mobile-large\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .mobile-large\:u-backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
  }

  .mobile-large\:u-backdrop-filter-none{
    backdrop-filter: none !important;
  }

  .mobile-large\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .mobile-large\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .mobile-large\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .mobile-large\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .mobile-large\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .mobile-large\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .mobile-large\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .mobile-large\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .mobile-large\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .mobile-large\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .mobile-large\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .mobile-large\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .mobile-large\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .mobile-large\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .mobile-large\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .mobile-large\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .mobile-large\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .mobile-large\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .mobile-large\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .mobile-large\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .mobile-large\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .mobile-large\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .mobile-large\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .mobile-large\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .mobile-large\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .mobile-large\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .mobile-large\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .mobile-large\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .mobile-large\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .mobile-large\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .mobile-large\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .mobile-large\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .mobile-large\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .mobile-large\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .mobile-large\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .mobile-large\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .mobile-large\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .mobile-large\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .mobile-large\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .mobile-large\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .mobile-large\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .mobile-large\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .mobile-large\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .mobile-large\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .mobile-large\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .mobile-large\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .mobile-large\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .mobile-large\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .mobile-large\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .mobile-large\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .mobile-large\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .mobile-large\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .mobile-large\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .mobile-large\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .mobile-large\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .mobile-large\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .mobile-large\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .mobile-large\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .mobile-large\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .mobile-large\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .mobile-large\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .mobile-large\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .mobile-large\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .mobile-large\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !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, filter, backdrop-filter !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-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-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-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;
  }
}

@media (min-width: 600px){
  .tablet-small\:u-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 375px){
    .tablet-small\:u-container{
      max-width: 375px;
    }
  }

  @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: 1280px){
    .tablet-small\:u-container{
      max-width: 1280px;
    }
  }

  .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-pointer-events-none{
    pointer-events: none !important;
  }

  .tablet-small\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .tablet-small\:u-visible{
    visibility: visible !important;
  }

  .tablet-small\:u-invisible{
    visibility: hidden !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-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .tablet-small\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .tablet-small\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .tablet-small\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .tablet-small\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .tablet-small\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .tablet-small\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .tablet-small\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .tablet-small\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .tablet-small\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .tablet-small\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .tablet-small\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .tablet-small\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .tablet-small\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .tablet-small\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .tablet-small\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .tablet-small\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .tablet-small\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .tablet-small\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .tablet-small\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .tablet-small\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .tablet-small\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .tablet-small\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .tablet-small\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .tablet-small\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .tablet-small\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .tablet-small\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .tablet-small\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .tablet-small\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .tablet-small\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .tablet-small\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .tablet-small\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .tablet-small\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .tablet-small\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .tablet-small\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .tablet-small\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .tablet-small\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .tablet-small\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .tablet-small\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .tablet-small\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .tablet-small\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .tablet-small\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .tablet-small\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .tablet-small\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .tablet-small\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .tablet-small\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .tablet-small\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .tablet-small\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .tablet-small\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .tablet-small\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .tablet-small\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .tablet-small\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .tablet-small\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .tablet-small\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .tablet-small\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .tablet-small\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .tablet-small\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .tablet-small\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .tablet-small\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .tablet-small\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .tablet-small\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .tablet-small\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .tablet-small\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .tablet-small\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .tablet-small\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .tablet-small\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .tablet-small\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .tablet-small\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .tablet-small\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .tablet-small\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .tablet-small\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .tablet-small\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .tablet-small\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .tablet-small\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .tablet-small\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .tablet-small\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .tablet-small\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .tablet-small\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .tablet-small\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .tablet-small\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .tablet-small\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .tablet-small\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .tablet-small\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .tablet-small\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .tablet-small\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .tablet-small\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-small\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .tablet-small\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .tablet-small\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .tablet-small\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .tablet-small\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .tablet-small\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .tablet-small\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .tablet-small\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .tablet-small\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .tablet-small\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .tablet-small\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .tablet-small\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .tablet-small\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .tablet-small\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .tablet-small\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .tablet-small\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .tablet-small\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .tablet-small\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .tablet-small\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .tablet-small\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .tablet-small\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .tablet-small\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .tablet-small\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .tablet-small\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .tablet-small\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .tablet-small\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .tablet-small\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .tablet-small\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .tablet-small\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .tablet-small\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .tablet-small\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .tablet-small\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .tablet-small\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .tablet-small\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .tablet-small\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .tablet-small\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-small\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .tablet-small\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .tablet-small\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .tablet-small\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .tablet-small\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .tablet-small\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .tablet-small\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .tablet-small\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .tablet-small\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .tablet-small\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .tablet-small\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .tablet-small\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .tablet-small\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .tablet-small\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .tablet-small\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .tablet-small\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .tablet-small\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .tablet-small\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .tablet-small\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .tablet-small\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .tablet-small\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .tablet-small\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .tablet-small\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .tablet-small\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .tablet-small\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .tablet-small\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .tablet-small\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .tablet-small\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .tablet-small\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .tablet-small\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .tablet-small\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .tablet-small\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .tablet-small\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .tablet-small\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .tablet-small\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-small\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .tablet-small\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .tablet-small\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .tablet-small\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-small\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .tablet-small\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .tablet-small\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-small\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .tablet-small\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .tablet-small\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .tablet-small\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-small\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .tablet-small\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .tablet-small\:u-top-0{
    top: 0px !important;
  }

  .tablet-small\:u-top-1{
    top: 0.25rem !important;
  }

  .tablet-small\:u-top-2{
    top: 0.5rem !important;
  }

  .tablet-small\:u-top-3{
    top: 0.75rem !important;
  }

  .tablet-small\:u-top-4{
    top: 1rem !important;
  }

  .tablet-small\:u-top-5{
    top: 1.25rem !important;
  }

  .tablet-small\:u-top-6{
    top: 1.5rem !important;
  }

  .tablet-small\:u-top-7{
    top: 1.75rem !important;
  }

  .tablet-small\:u-top-8{
    top: 2rem !important;
  }

  .tablet-small\:u-top-9{
    top: 2.25rem !important;
  }

  .tablet-small\:u-top-10{
    top: 2.5rem !important;
  }

  .tablet-small\:u-top-11{
    top: 2.75rem !important;
  }

  .tablet-small\:u-top-12{
    top: 3rem !important;
  }

  .tablet-small\:u-top-14{
    top: 3.5rem !important;
  }

  .tablet-small\:u-top-16{
    top: 4rem !important;
  }

  .tablet-small\:u-top-20{
    top: 5rem !important;
  }

  .tablet-small\:u-top-24{
    top: 6rem !important;
  }

  .tablet-small\:u-top-28{
    top: 7rem !important;
  }

  .tablet-small\:u-top-32{
    top: 8rem !important;
  }

  .tablet-small\:u-top-36{
    top: 9rem !important;
  }

  .tablet-small\:u-top-40{
    top: 10rem !important;
  }

  .tablet-small\:u-top-44{
    top: 11rem !important;
  }

  .tablet-small\:u-top-48{
    top: 12rem !important;
  }

  .tablet-small\:u-top-52{
    top: 13rem !important;
  }

  .tablet-small\:u-top-56{
    top: 14rem !important;
  }

  .tablet-small\:u-top-60{
    top: 15rem !important;
  }

  .tablet-small\:u-top-64{
    top: 16rem !important;
  }

  .tablet-small\:u-top-72{
    top: 18rem !important;
  }

  .tablet-small\:u-top-80{
    top: 20rem !important;
  }

  .tablet-small\:u-top-96{
    top: 24rem !important;
  }

  .tablet-small\:u-top-auto{
    top: auto !important;
  }

  .tablet-small\:u-top-px{
    top: 1px !important;
  }

  .tablet-small\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .tablet-small\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .tablet-small\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .tablet-small\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .tablet-small\:u--top-0{
    top: 0px !important;
  }

  .tablet-small\:u--top-1{
    top: -0.25rem !important;
  }

  .tablet-small\:u--top-2{
    top: -0.5rem !important;
  }

  .tablet-small\:u--top-3{
    top: -0.75rem !important;
  }

  .tablet-small\:u--top-4{
    top: -1rem !important;
  }

  .tablet-small\:u--top-5{
    top: -1.25rem !important;
  }

  .tablet-small\:u--top-6{
    top: -1.5rem !important;
  }

  .tablet-small\:u--top-7{
    top: -1.75rem !important;
  }

  .tablet-small\:u--top-8{
    top: -2rem !important;
  }

  .tablet-small\:u--top-9{
    top: -2.25rem !important;
  }

  .tablet-small\:u--top-10{
    top: -2.5rem !important;
  }

  .tablet-small\:u--top-11{
    top: -2.75rem !important;
  }

  .tablet-small\:u--top-12{
    top: -3rem !important;
  }

  .tablet-small\:u--top-14{
    top: -3.5rem !important;
  }

  .tablet-small\:u--top-16{
    top: -4rem !important;
  }

  .tablet-small\:u--top-20{
    top: -5rem !important;
  }

  .tablet-small\:u--top-24{
    top: -6rem !important;
  }

  .tablet-small\:u--top-28{
    top: -7rem !important;
  }

  .tablet-small\:u--top-32{
    top: -8rem !important;
  }

  .tablet-small\:u--top-36{
    top: -9rem !important;
  }

  .tablet-small\:u--top-40{
    top: -10rem !important;
  }

  .tablet-small\:u--top-44{
    top: -11rem !important;
  }

  .tablet-small\:u--top-48{
    top: -12rem !important;
  }

  .tablet-small\:u--top-52{
    top: -13rem !important;
  }

  .tablet-small\:u--top-56{
    top: -14rem !important;
  }

  .tablet-small\:u--top-60{
    top: -15rem !important;
  }

  .tablet-small\:u--top-64{
    top: -16rem !important;
  }

  .tablet-small\:u--top-72{
    top: -18rem !important;
  }

  .tablet-small\:u--top-80{
    top: -20rem !important;
  }

  .tablet-small\:u--top-96{
    top: -24rem !important;
  }

  .tablet-small\:u--top-px{
    top: -1px !important;
  }

  .tablet-small\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .tablet-small\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .tablet-small\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .tablet-small\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .tablet-small\:u-top-1\/2{
    top: 50% !important;
  }

  .tablet-small\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .tablet-small\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .tablet-small\:u-top-1\/4{
    top: 25% !important;
  }

  .tablet-small\:u-top-2\/4{
    top: 50% !important;
  }

  .tablet-small\:u-top-3\/4{
    top: 75% !important;
  }

  .tablet-small\:u-top-full{
    top: 100% !important;
  }

  .tablet-small\:u--top-1\/2{
    top: -50% !important;
  }

  .tablet-small\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .tablet-small\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .tablet-small\:u--top-1\/4{
    top: -25% !important;
  }

  .tablet-small\:u--top-2\/4{
    top: -50% !important;
  }

  .tablet-small\:u--top-3\/4{
    top: -75% !important;
  }

  .tablet-small\:u--top-full{
    top: -100% !important;
  }

  .tablet-small\:u-right-0{
    right: 0px !important;
  }

  .tablet-small\:u-right-1{
    right: 0.25rem !important;
  }

  .tablet-small\:u-right-2{
    right: 0.5rem !important;
  }

  .tablet-small\:u-right-3{
    right: 0.75rem !important;
  }

  .tablet-small\:u-right-4{
    right: 1rem !important;
  }

  .tablet-small\:u-right-5{
    right: 1.25rem !important;
  }

  .tablet-small\:u-right-6{
    right: 1.5rem !important;
  }

  .tablet-small\:u-right-7{
    right: 1.75rem !important;
  }

  .tablet-small\:u-right-8{
    right: 2rem !important;
  }

  .tablet-small\:u-right-9{
    right: 2.25rem !important;
  }

  .tablet-small\:u-right-10{
    right: 2.5rem !important;
  }

  .tablet-small\:u-right-11{
    right: 2.75rem !important;
  }

  .tablet-small\:u-right-12{
    right: 3rem !important;
  }

  .tablet-small\:u-right-14{
    right: 3.5rem !important;
  }

  .tablet-small\:u-right-16{
    right: 4rem !important;
  }

  .tablet-small\:u-right-20{
    right: 5rem !important;
  }

  .tablet-small\:u-right-24{
    right: 6rem !important;
  }

  .tablet-small\:u-right-28{
    right: 7rem !important;
  }

  .tablet-small\:u-right-32{
    right: 8rem !important;
  }

  .tablet-small\:u-right-36{
    right: 9rem !important;
  }

  .tablet-small\:u-right-40{
    right: 10rem !important;
  }

  .tablet-small\:u-right-44{
    right: 11rem !important;
  }

  .tablet-small\:u-right-48{
    right: 12rem !important;
  }

  .tablet-small\:u-right-52{
    right: 13rem !important;
  }

  .tablet-small\:u-right-56{
    right: 14rem !important;
  }

  .tablet-small\:u-right-60{
    right: 15rem !important;
  }

  .tablet-small\:u-right-64{
    right: 16rem !important;
  }

  .tablet-small\:u-right-72{
    right: 18rem !important;
  }

  .tablet-small\:u-right-80{
    right: 20rem !important;
  }

  .tablet-small\:u-right-96{
    right: 24rem !important;
  }

  .tablet-small\:u-right-auto{
    right: auto !important;
  }

  .tablet-small\:u-right-px{
    right: 1px !important;
  }

  .tablet-small\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .tablet-small\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .tablet-small\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .tablet-small\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .tablet-small\:u--right-0{
    right: 0px !important;
  }

  .tablet-small\:u--right-1{
    right: -0.25rem !important;
  }

  .tablet-small\:u--right-2{
    right: -0.5rem !important;
  }

  .tablet-small\:u--right-3{
    right: -0.75rem !important;
  }

  .tablet-small\:u--right-4{
    right: -1rem !important;
  }

  .tablet-small\:u--right-5{
    right: -1.25rem !important;
  }

  .tablet-small\:u--right-6{
    right: -1.5rem !important;
  }

  .tablet-small\:u--right-7{
    right: -1.75rem !important;
  }

  .tablet-small\:u--right-8{
    right: -2rem !important;
  }

  .tablet-small\:u--right-9{
    right: -2.25rem !important;
  }

  .tablet-small\:u--right-10{
    right: -2.5rem !important;
  }

  .tablet-small\:u--right-11{
    right: -2.75rem !important;
  }

  .tablet-small\:u--right-12{
    right: -3rem !important;
  }

  .tablet-small\:u--right-14{
    right: -3.5rem !important;
  }

  .tablet-small\:u--right-16{
    right: -4rem !important;
  }

  .tablet-small\:u--right-20{
    right: -5rem !important;
  }

  .tablet-small\:u--right-24{
    right: -6rem !important;
  }

  .tablet-small\:u--right-28{
    right: -7rem !important;
  }

  .tablet-small\:u--right-32{
    right: -8rem !important;
  }

  .tablet-small\:u--right-36{
    right: -9rem !important;
  }

  .tablet-small\:u--right-40{
    right: -10rem !important;
  }

  .tablet-small\:u--right-44{
    right: -11rem !important;
  }

  .tablet-small\:u--right-48{
    right: -12rem !important;
  }

  .tablet-small\:u--right-52{
    right: -13rem !important;
  }

  .tablet-small\:u--right-56{
    right: -14rem !important;
  }

  .tablet-small\:u--right-60{
    right: -15rem !important;
  }

  .tablet-small\:u--right-64{
    right: -16rem !important;
  }

  .tablet-small\:u--right-72{
    right: -18rem !important;
  }

  .tablet-small\:u--right-80{
    right: -20rem !important;
  }

  .tablet-small\:u--right-96{
    right: -24rem !important;
  }

  .tablet-small\:u--right-px{
    right: -1px !important;
  }

  .tablet-small\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .tablet-small\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .tablet-small\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .tablet-small\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .tablet-small\:u-right-1\/2{
    right: 50% !important;
  }

  .tablet-small\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .tablet-small\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .tablet-small\:u-right-1\/4{
    right: 25% !important;
  }

  .tablet-small\:u-right-2\/4{
    right: 50% !important;
  }

  .tablet-small\:u-right-3\/4{
    right: 75% !important;
  }

  .tablet-small\:u-right-full{
    right: 100% !important;
  }

  .tablet-small\:u--right-1\/2{
    right: -50% !important;
  }

  .tablet-small\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .tablet-small\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .tablet-small\:u--right-1\/4{
    right: -25% !important;
  }

  .tablet-small\:u--right-2\/4{
    right: -50% !important;
  }

  .tablet-small\:u--right-3\/4{
    right: -75% !important;
  }

  .tablet-small\:u--right-full{
    right: -100% !important;
  }

  .tablet-small\:u-bottom-0{
    bottom: 0px !important;
  }

  .tablet-small\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .tablet-small\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .tablet-small\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .tablet-small\:u-bottom-4{
    bottom: 1rem !important;
  }

  .tablet-small\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .tablet-small\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .tablet-small\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .tablet-small\:u-bottom-8{
    bottom: 2rem !important;
  }

  .tablet-small\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .tablet-small\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .tablet-small\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .tablet-small\:u-bottom-12{
    bottom: 3rem !important;
  }

  .tablet-small\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .tablet-small\:u-bottom-16{
    bottom: 4rem !important;
  }

  .tablet-small\:u-bottom-20{
    bottom: 5rem !important;
  }

  .tablet-small\:u-bottom-24{
    bottom: 6rem !important;
  }

  .tablet-small\:u-bottom-28{
    bottom: 7rem !important;
  }

  .tablet-small\:u-bottom-32{
    bottom: 8rem !important;
  }

  .tablet-small\:u-bottom-36{
    bottom: 9rem !important;
  }

  .tablet-small\:u-bottom-40{
    bottom: 10rem !important;
  }

  .tablet-small\:u-bottom-44{
    bottom: 11rem !important;
  }

  .tablet-small\:u-bottom-48{
    bottom: 12rem !important;
  }

  .tablet-small\:u-bottom-52{
    bottom: 13rem !important;
  }

  .tablet-small\:u-bottom-56{
    bottom: 14rem !important;
  }

  .tablet-small\:u-bottom-60{
    bottom: 15rem !important;
  }

  .tablet-small\:u-bottom-64{
    bottom: 16rem !important;
  }

  .tablet-small\:u-bottom-72{
    bottom: 18rem !important;
  }

  .tablet-small\:u-bottom-80{
    bottom: 20rem !important;
  }

  .tablet-small\:u-bottom-96{
    bottom: 24rem !important;
  }

  .tablet-small\:u-bottom-auto{
    bottom: auto !important;
  }

  .tablet-small\:u-bottom-px{
    bottom: 1px !important;
  }

  .tablet-small\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .tablet-small\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .tablet-small\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .tablet-small\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .tablet-small\:u--bottom-0{
    bottom: 0px !important;
  }

  .tablet-small\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .tablet-small\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .tablet-small\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .tablet-small\:u--bottom-4{
    bottom: -1rem !important;
  }

  .tablet-small\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .tablet-small\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .tablet-small\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .tablet-small\:u--bottom-8{
    bottom: -2rem !important;
  }

  .tablet-small\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .tablet-small\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .tablet-small\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .tablet-small\:u--bottom-12{
    bottom: -3rem !important;
  }

  .tablet-small\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .tablet-small\:u--bottom-16{
    bottom: -4rem !important;
  }

  .tablet-small\:u--bottom-20{
    bottom: -5rem !important;
  }

  .tablet-small\:u--bottom-24{
    bottom: -6rem !important;
  }

  .tablet-small\:u--bottom-28{
    bottom: -7rem !important;
  }

  .tablet-small\:u--bottom-32{
    bottom: -8rem !important;
  }

  .tablet-small\:u--bottom-36{
    bottom: -9rem !important;
  }

  .tablet-small\:u--bottom-40{
    bottom: -10rem !important;
  }

  .tablet-small\:u--bottom-44{
    bottom: -11rem !important;
  }

  .tablet-small\:u--bottom-48{
    bottom: -12rem !important;
  }

  .tablet-small\:u--bottom-52{
    bottom: -13rem !important;
  }

  .tablet-small\:u--bottom-56{
    bottom: -14rem !important;
  }

  .tablet-small\:u--bottom-60{
    bottom: -15rem !important;
  }

  .tablet-small\:u--bottom-64{
    bottom: -16rem !important;
  }

  .tablet-small\:u--bottom-72{
    bottom: -18rem !important;
  }

  .tablet-small\:u--bottom-80{
    bottom: -20rem !important;
  }

  .tablet-small\:u--bottom-96{
    bottom: -24rem !important;
  }

  .tablet-small\:u--bottom-px{
    bottom: -1px !important;
  }

  .tablet-small\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .tablet-small\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .tablet-small\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .tablet-small\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .tablet-small\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .tablet-small\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .tablet-small\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .tablet-small\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .tablet-small\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .tablet-small\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .tablet-small\:u-bottom-full{
    bottom: 100% !important;
  }

  .tablet-small\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .tablet-small\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .tablet-small\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .tablet-small\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .tablet-small\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .tablet-small\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .tablet-small\:u--bottom-full{
    bottom: -100% !important;
  }

  .tablet-small\:u-left-0{
    left: 0px !important;
  }

  .tablet-small\:u-left-1{
    left: 0.25rem !important;
  }

  .tablet-small\:u-left-2{
    left: 0.5rem !important;
  }

  .tablet-small\:u-left-3{
    left: 0.75rem !important;
  }

  .tablet-small\:u-left-4{
    left: 1rem !important;
  }

  .tablet-small\:u-left-5{
    left: 1.25rem !important;
  }

  .tablet-small\:u-left-6{
    left: 1.5rem !important;
  }

  .tablet-small\:u-left-7{
    left: 1.75rem !important;
  }

  .tablet-small\:u-left-8{
    left: 2rem !important;
  }

  .tablet-small\:u-left-9{
    left: 2.25rem !important;
  }

  .tablet-small\:u-left-10{
    left: 2.5rem !important;
  }

  .tablet-small\:u-left-11{
    left: 2.75rem !important;
  }

  .tablet-small\:u-left-12{
    left: 3rem !important;
  }

  .tablet-small\:u-left-14{
    left: 3.5rem !important;
  }

  .tablet-small\:u-left-16{
    left: 4rem !important;
  }

  .tablet-small\:u-left-20{
    left: 5rem !important;
  }

  .tablet-small\:u-left-24{
    left: 6rem !important;
  }

  .tablet-small\:u-left-28{
    left: 7rem !important;
  }

  .tablet-small\:u-left-32{
    left: 8rem !important;
  }

  .tablet-small\:u-left-36{
    left: 9rem !important;
  }

  .tablet-small\:u-left-40{
    left: 10rem !important;
  }

  .tablet-small\:u-left-44{
    left: 11rem !important;
  }

  .tablet-small\:u-left-48{
    left: 12rem !important;
  }

  .tablet-small\:u-left-52{
    left: 13rem !important;
  }

  .tablet-small\:u-left-56{
    left: 14rem !important;
  }

  .tablet-small\:u-left-60{
    left: 15rem !important;
  }

  .tablet-small\:u-left-64{
    left: 16rem !important;
  }

  .tablet-small\:u-left-72{
    left: 18rem !important;
  }

  .tablet-small\:u-left-80{
    left: 20rem !important;
  }

  .tablet-small\:u-left-96{
    left: 24rem !important;
  }

  .tablet-small\:u-left-auto{
    left: auto !important;
  }

  .tablet-small\:u-left-px{
    left: 1px !important;
  }

  .tablet-small\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .tablet-small\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .tablet-small\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .tablet-small\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .tablet-small\:u--left-0{
    left: 0px !important;
  }

  .tablet-small\:u--left-1{
    left: -0.25rem !important;
  }

  .tablet-small\:u--left-2{
    left: -0.5rem !important;
  }

  .tablet-small\:u--left-3{
    left: -0.75rem !important;
  }

  .tablet-small\:u--left-4{
    left: -1rem !important;
  }

  .tablet-small\:u--left-5{
    left: -1.25rem !important;
  }

  .tablet-small\:u--left-6{
    left: -1.5rem !important;
  }

  .tablet-small\:u--left-7{
    left: -1.75rem !important;
  }

  .tablet-small\:u--left-8{
    left: -2rem !important;
  }

  .tablet-small\:u--left-9{
    left: -2.25rem !important;
  }

  .tablet-small\:u--left-10{
    left: -2.5rem !important;
  }

  .tablet-small\:u--left-11{
    left: -2.75rem !important;
  }

  .tablet-small\:u--left-12{
    left: -3rem !important;
  }

  .tablet-small\:u--left-14{
    left: -3.5rem !important;
  }

  .tablet-small\:u--left-16{
    left: -4rem !important;
  }

  .tablet-small\:u--left-20{
    left: -5rem !important;
  }

  .tablet-small\:u--left-24{
    left: -6rem !important;
  }

  .tablet-small\:u--left-28{
    left: -7rem !important;
  }

  .tablet-small\:u--left-32{
    left: -8rem !important;
  }

  .tablet-small\:u--left-36{
    left: -9rem !important;
  }

  .tablet-small\:u--left-40{
    left: -10rem !important;
  }

  .tablet-small\:u--left-44{
    left: -11rem !important;
  }

  .tablet-small\:u--left-48{
    left: -12rem !important;
  }

  .tablet-small\:u--left-52{
    left: -13rem !important;
  }

  .tablet-small\:u--left-56{
    left: -14rem !important;
  }

  .tablet-small\:u--left-60{
    left: -15rem !important;
  }

  .tablet-small\:u--left-64{
    left: -16rem !important;
  }

  .tablet-small\:u--left-72{
    left: -18rem !important;
  }

  .tablet-small\:u--left-80{
    left: -20rem !important;
  }

  .tablet-small\:u--left-96{
    left: -24rem !important;
  }

  .tablet-small\:u--left-px{
    left: -1px !important;
  }

  .tablet-small\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .tablet-small\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .tablet-small\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .tablet-small\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .tablet-small\:u-left-1\/2{
    left: 50% !important;
  }

  .tablet-small\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .tablet-small\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .tablet-small\:u-left-1\/4{
    left: 25% !important;
  }

  .tablet-small\:u-left-2\/4{
    left: 50% !important;
  }

  .tablet-small\:u-left-3\/4{
    left: 75% !important;
  }

  .tablet-small\:u-left-full{
    left: 100% !important;
  }

  .tablet-small\:u--left-1\/2{
    left: -50% !important;
  }

  .tablet-small\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .tablet-small\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .tablet-small\:u--left-1\/4{
    left: -25% !important;
  }

  .tablet-small\:u--left-2\/4{
    left: -50% !important;
  }

  .tablet-small\:u--left-3\/4{
    left: -75% !important;
  }

  .tablet-small\:u--left-full{
    left: -100% !important;
  }

  .tablet-small\:u-isolate{
    isolation: isolate !important;
  }

  .tablet-small\:u-isolation-auto{
    isolation: auto !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-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-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-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-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-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-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-small\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .tablet-small\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .tablet-small\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .tablet-small\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .tablet-small\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .tablet-small\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .tablet-small\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .tablet-small\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .tablet-small\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .tablet-small\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .tablet-small\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .tablet-small\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .tablet-small\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .tablet-small\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .tablet-small\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .tablet-small\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .tablet-small\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .tablet-small\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .tablet-small\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .tablet-small\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .tablet-small\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .tablet-small\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .tablet-small\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .tablet-small\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .tablet-small\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .tablet-small\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .tablet-small\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .tablet-small\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .tablet-small\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .tablet-small\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tablet-small\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .tablet-small\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .tablet-small\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .tablet-small\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .tablet-small\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .tablet-small\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-small\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .tablet-small\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .tablet-small\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .tablet-small\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .tablet-small\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tablet-small\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .tablet-small\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .tablet-small\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .tablet-small\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .tablet-small\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .tablet-small\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .tablet-small\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .tablet-small\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .tablet-small\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .tablet-small\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .tablet-small\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .tablet-small\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .tablet-small\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .tablet-small\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .tablet-small\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .tablet-small\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .tablet-small\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .tablet-small\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .tablet-small\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .tablet-small\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .tablet-small\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .tablet-small\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .tablet-small\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .tablet-small\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .tablet-small\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .tablet-small\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .tablet-small\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .tablet-small\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !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-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .tablet-small\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tablet-small\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .tablet-small\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tablet-small\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .tablet-small\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tablet-small\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .tablet-small\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .tablet-small\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .tablet-small\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tablet-small\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .tablet-small\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .tablet-small\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .tablet-small\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .tablet-small\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .tablet-small\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .tablet-small\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .tablet-small\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .tablet-small\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .tablet-small\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .tablet-small\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .tablet-small\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .tablet-small\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .tablet-small\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .tablet-small\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .tablet-small\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .tablet-small\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .tablet-small\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .tablet-small\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .tablet-small\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .tablet-small\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .tablet-small\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .tablet-small\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .tablet-small\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .tablet-small\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .tablet-small\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet-small\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .tablet-small\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .tablet-small\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .tablet-small\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .tablet-small\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .tablet-small\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .tablet-small\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .tablet-small\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .tablet-small\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .tablet-small\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .tablet-small\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .tablet-small\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .tablet-small\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .tablet-small\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .tablet-small\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .tablet-small\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .tablet-small\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .tablet-small\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .tablet-small\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .tablet-small\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .tablet-small\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .tablet-small\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .tablet-small\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .tablet-small\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .tablet-small\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .tablet-small\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .tablet-small\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .tablet-small\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .tablet-small\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .tablet-small\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .tablet-small\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .tablet-small\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .tablet-small\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .tablet-small\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .tablet-small\:u-mt-0{
    margin-top: 0px !important;
  }

  .tablet-small\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .tablet-small\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .tablet-small\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .tablet-small\:u-mt-4{
    margin-top: 1rem !important;
  }

  .tablet-small\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .tablet-small\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .tablet-small\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .tablet-small\:u-mt-8{
    margin-top: 2rem !important;
  }

  .tablet-small\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .tablet-small\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .tablet-small\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .tablet-small\:u-mt-12{
    margin-top: 3rem !important;
  }

  .tablet-small\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .tablet-small\:u-mt-16{
    margin-top: 4rem !important;
  }

  .tablet-small\:u-mt-20{
    margin-top: 5rem !important;
  }

  .tablet-small\:u-mt-24{
    margin-top: 6rem !important;
  }

  .tablet-small\:u-mt-28{
    margin-top: 7rem !important;
  }

  .tablet-small\:u-mt-32{
    margin-top: 8rem !important;
  }

  .tablet-small\:u-mt-36{
    margin-top: 9rem !important;
  }

  .tablet-small\:u-mt-40{
    margin-top: 10rem !important;
  }

  .tablet-small\:u-mt-44{
    margin-top: 11rem !important;
  }

  .tablet-small\:u-mt-48{
    margin-top: 12rem !important;
  }

  .tablet-small\:u-mt-52{
    margin-top: 13rem !important;
  }

  .tablet-small\:u-mt-56{
    margin-top: 14rem !important;
  }

  .tablet-small\:u-mt-60{
    margin-top: 15rem !important;
  }

  .tablet-small\:u-mt-64{
    margin-top: 16rem !important;
  }

  .tablet-small\:u-mt-72{
    margin-top: 18rem !important;
  }

  .tablet-small\:u-mt-80{
    margin-top: 20rem !important;
  }

  .tablet-small\:u-mt-96{
    margin-top: 24rem !important;
  }

  .tablet-small\:u-mt-auto{
    margin-top: auto !important;
  }

  .tablet-small\:u-mt-px{
    margin-top: 1px !important;
  }

  .tablet-small\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .tablet-small\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .tablet-small\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .tablet-small\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .tablet-small\:u--mt-0{
    margin-top: 0px !important;
  }

  .tablet-small\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .tablet-small\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .tablet-small\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .tablet-small\:u--mt-4{
    margin-top: -1rem !important;
  }

  .tablet-small\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .tablet-small\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .tablet-small\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .tablet-small\:u--mt-8{
    margin-top: -2rem !important;
  }

  .tablet-small\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .tablet-small\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .tablet-small\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .tablet-small\:u--mt-12{
    margin-top: -3rem !important;
  }

  .tablet-small\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .tablet-small\:u--mt-16{
    margin-top: -4rem !important;
  }

  .tablet-small\:u--mt-20{
    margin-top: -5rem !important;
  }

  .tablet-small\:u--mt-24{
    margin-top: -6rem !important;
  }

  .tablet-small\:u--mt-28{
    margin-top: -7rem !important;
  }

  .tablet-small\:u--mt-32{
    margin-top: -8rem !important;
  }

  .tablet-small\:u--mt-36{
    margin-top: -9rem !important;
  }

  .tablet-small\:u--mt-40{
    margin-top: -10rem !important;
  }

  .tablet-small\:u--mt-44{
    margin-top: -11rem !important;
  }

  .tablet-small\:u--mt-48{
    margin-top: -12rem !important;
  }

  .tablet-small\:u--mt-52{
    margin-top: -13rem !important;
  }

  .tablet-small\:u--mt-56{
    margin-top: -14rem !important;
  }

  .tablet-small\:u--mt-60{
    margin-top: -15rem !important;
  }

  .tablet-small\:u--mt-64{
    margin-top: -16rem !important;
  }

  .tablet-small\:u--mt-72{
    margin-top: -18rem !important;
  }

  .tablet-small\:u--mt-80{
    margin-top: -20rem !important;
  }

  .tablet-small\:u--mt-96{
    margin-top: -24rem !important;
  }

  .tablet-small\:u--mt-px{
    margin-top: -1px !important;
  }

  .tablet-small\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .tablet-small\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .tablet-small\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .tablet-small\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .tablet-small\:u-mr-0{
    margin-right: 0px !important;
  }

  .tablet-small\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .tablet-small\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .tablet-small\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .tablet-small\:u-mr-4{
    margin-right: 1rem !important;
  }

  .tablet-small\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .tablet-small\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .tablet-small\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .tablet-small\:u-mr-8{
    margin-right: 2rem !important;
  }

  .tablet-small\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .tablet-small\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .tablet-small\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .tablet-small\:u-mr-12{
    margin-right: 3rem !important;
  }

  .tablet-small\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .tablet-small\:u-mr-16{
    margin-right: 4rem !important;
  }

  .tablet-small\:u-mr-20{
    margin-right: 5rem !important;
  }

  .tablet-small\:u-mr-24{
    margin-right: 6rem !important;
  }

  .tablet-small\:u-mr-28{
    margin-right: 7rem !important;
  }

  .tablet-small\:u-mr-32{
    margin-right: 8rem !important;
  }

  .tablet-small\:u-mr-36{
    margin-right: 9rem !important;
  }

  .tablet-small\:u-mr-40{
    margin-right: 10rem !important;
  }

  .tablet-small\:u-mr-44{
    margin-right: 11rem !important;
  }

  .tablet-small\:u-mr-48{
    margin-right: 12rem !important;
  }

  .tablet-small\:u-mr-52{
    margin-right: 13rem !important;
  }

  .tablet-small\:u-mr-56{
    margin-right: 14rem !important;
  }

  .tablet-small\:u-mr-60{
    margin-right: 15rem !important;
  }

  .tablet-small\:u-mr-64{
    margin-right: 16rem !important;
  }

  .tablet-small\:u-mr-72{
    margin-right: 18rem !important;
  }

  .tablet-small\:u-mr-80{
    margin-right: 20rem !important;
  }

  .tablet-small\:u-mr-96{
    margin-right: 24rem !important;
  }

  .tablet-small\:u-mr-auto{
    margin-right: auto !important;
  }

  .tablet-small\:u-mr-px{
    margin-right: 1px !important;
  }

  .tablet-small\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .tablet-small\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .tablet-small\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .tablet-small\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .tablet-small\:u--mr-0{
    margin-right: 0px !important;
  }

  .tablet-small\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .tablet-small\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .tablet-small\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .tablet-small\:u--mr-4{
    margin-right: -1rem !important;
  }

  .tablet-small\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .tablet-small\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .tablet-small\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .tablet-small\:u--mr-8{
    margin-right: -2rem !important;
  }

  .tablet-small\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .tablet-small\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .tablet-small\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .tablet-small\:u--mr-12{
    margin-right: -3rem !important;
  }

  .tablet-small\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .tablet-small\:u--mr-16{
    margin-right: -4rem !important;
  }

  .tablet-small\:u--mr-20{
    margin-right: -5rem !important;
  }

  .tablet-small\:u--mr-24{
    margin-right: -6rem !important;
  }

  .tablet-small\:u--mr-28{
    margin-right: -7rem !important;
  }

  .tablet-small\:u--mr-32{
    margin-right: -8rem !important;
  }

  .tablet-small\:u--mr-36{
    margin-right: -9rem !important;
  }

  .tablet-small\:u--mr-40{
    margin-right: -10rem !important;
  }

  .tablet-small\:u--mr-44{
    margin-right: -11rem !important;
  }

  .tablet-small\:u--mr-48{
    margin-right: -12rem !important;
  }

  .tablet-small\:u--mr-52{
    margin-right: -13rem !important;
  }

  .tablet-small\:u--mr-56{
    margin-right: -14rem !important;
  }

  .tablet-small\:u--mr-60{
    margin-right: -15rem !important;
  }

  .tablet-small\:u--mr-64{
    margin-right: -16rem !important;
  }

  .tablet-small\:u--mr-72{
    margin-right: -18rem !important;
  }

  .tablet-small\:u--mr-80{
    margin-right: -20rem !important;
  }

  .tablet-small\:u--mr-96{
    margin-right: -24rem !important;
  }

  .tablet-small\:u--mr-px{
    margin-right: -1px !important;
  }

  .tablet-small\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .tablet-small\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .tablet-small\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .tablet-small\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .tablet-small\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-small\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .tablet-small\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .tablet-small\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .tablet-small\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .tablet-small\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .tablet-small\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .tablet-small\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .tablet-small\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .tablet-small\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .tablet-small\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .tablet-small\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .tablet-small\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .tablet-small\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .tablet-small\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .tablet-small\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .tablet-small\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .tablet-small\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .tablet-small\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .tablet-small\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .tablet-small\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .tablet-small\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .tablet-small\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .tablet-small\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .tablet-small\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .tablet-small\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .tablet-small\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .tablet-small\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .tablet-small\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .tablet-small\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .tablet-small\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .tablet-small\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .tablet-small\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .tablet-small\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .tablet-small\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .tablet-small\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .tablet-small\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-small\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .tablet-small\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .tablet-small\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .tablet-small\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .tablet-small\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .tablet-small\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .tablet-small\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .tablet-small\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .tablet-small\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .tablet-small\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .tablet-small\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .tablet-small\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .tablet-small\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .tablet-small\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .tablet-small\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .tablet-small\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .tablet-small\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .tablet-small\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .tablet-small\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .tablet-small\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .tablet-small\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .tablet-small\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .tablet-small\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .tablet-small\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .tablet-small\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .tablet-small\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .tablet-small\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .tablet-small\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .tablet-small\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .tablet-small\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .tablet-small\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .tablet-small\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .tablet-small\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .tablet-small\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .tablet-small\:u-ml-0{
    margin-left: 0px !important;
  }

  .tablet-small\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .tablet-small\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .tablet-small\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .tablet-small\:u-ml-4{
    margin-left: 1rem !important;
  }

  .tablet-small\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .tablet-small\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .tablet-small\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .tablet-small\:u-ml-8{
    margin-left: 2rem !important;
  }

  .tablet-small\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .tablet-small\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .tablet-small\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .tablet-small\:u-ml-12{
    margin-left: 3rem !important;
  }

  .tablet-small\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .tablet-small\:u-ml-16{
    margin-left: 4rem !important;
  }

  .tablet-small\:u-ml-20{
    margin-left: 5rem !important;
  }

  .tablet-small\:u-ml-24{
    margin-left: 6rem !important;
  }

  .tablet-small\:u-ml-28{
    margin-left: 7rem !important;
  }

  .tablet-small\:u-ml-32{
    margin-left: 8rem !important;
  }

  .tablet-small\:u-ml-36{
    margin-left: 9rem !important;
  }

  .tablet-small\:u-ml-40{
    margin-left: 10rem !important;
  }

  .tablet-small\:u-ml-44{
    margin-left: 11rem !important;
  }

  .tablet-small\:u-ml-48{
    margin-left: 12rem !important;
  }

  .tablet-small\:u-ml-52{
    margin-left: 13rem !important;
  }

  .tablet-small\:u-ml-56{
    margin-left: 14rem !important;
  }

  .tablet-small\:u-ml-60{
    margin-left: 15rem !important;
  }

  .tablet-small\:u-ml-64{
    margin-left: 16rem !important;
  }

  .tablet-small\:u-ml-72{
    margin-left: 18rem !important;
  }

  .tablet-small\:u-ml-80{
    margin-left: 20rem !important;
  }

  .tablet-small\:u-ml-96{
    margin-left: 24rem !important;
  }

  .tablet-small\:u-ml-auto{
    margin-left: auto !important;
  }

  .tablet-small\:u-ml-px{
    margin-left: 1px !important;
  }

  .tablet-small\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .tablet-small\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .tablet-small\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .tablet-small\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .tablet-small\:u--ml-0{
    margin-left: 0px !important;
  }

  .tablet-small\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .tablet-small\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .tablet-small\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .tablet-small\:u--ml-4{
    margin-left: -1rem !important;
  }

  .tablet-small\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .tablet-small\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .tablet-small\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .tablet-small\:u--ml-8{
    margin-left: -2rem !important;
  }

  .tablet-small\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .tablet-small\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .tablet-small\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .tablet-small\:u--ml-12{
    margin-left: -3rem !important;
  }

  .tablet-small\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .tablet-small\:u--ml-16{
    margin-left: -4rem !important;
  }

  .tablet-small\:u--ml-20{
    margin-left: -5rem !important;
  }

  .tablet-small\:u--ml-24{
    margin-left: -6rem !important;
  }

  .tablet-small\:u--ml-28{
    margin-left: -7rem !important;
  }

  .tablet-small\:u--ml-32{
    margin-left: -8rem !important;
  }

  .tablet-small\:u--ml-36{
    margin-left: -9rem !important;
  }

  .tablet-small\:u--ml-40{
    margin-left: -10rem !important;
  }

  .tablet-small\:u--ml-44{
    margin-left: -11rem !important;
  }

  .tablet-small\:u--ml-48{
    margin-left: -12rem !important;
  }

  .tablet-small\:u--ml-52{
    margin-left: -13rem !important;
  }

  .tablet-small\:u--ml-56{
    margin-left: -14rem !important;
  }

  .tablet-small\:u--ml-60{
    margin-left: -15rem !important;
  }

  .tablet-small\:u--ml-64{
    margin-left: -16rem !important;
  }

  .tablet-small\:u--ml-72{
    margin-left: -18rem !important;
  }

  .tablet-small\:u--ml-80{
    margin-left: -20rem !important;
  }

  .tablet-small\:u--ml-96{
    margin-left: -24rem !important;
  }

  .tablet-small\:u--ml-px{
    margin-left: -1px !important;
  }

  .tablet-small\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .tablet-small\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .tablet-small\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .tablet-small\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .tablet-small\:u-box-border{
    box-sizing: border-box !important;
  }

  .tablet-small\:u-box-content{
    box-sizing: content-box !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-inline-table{
    display: inline-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-list-item{
    display: list-item !important;
  }

  .tablet-small\:u-hidden{
    display: none !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-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-min-h-0{
    min-height: 0px !important;
  }

  .tablet-small\:u-min-h-full{
    min-height: 100% !important;
  }

  .tablet-small\:u-min-h-screen{
    min-height: 100vh !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: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet-small\:u-w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet-small\:u-min-w-0{
    min-width: 0px !important;
  }

  .tablet-small\:u-min-w-full{
    min-width: 100% !important;
  }

  .tablet-small\:u-min-w-min{
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .tablet-small\:u-min-w-max{
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .tablet-small\:u-max-w-0{
    max-width: 0rem !important;
  }

  .tablet-small\:u-max-w-none{
    max-width: none !important;
  }

  .tablet-small\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .tablet-small\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .tablet-small\:u-max-w-md{
    max-width: 28rem !important;
  }

  .tablet-small\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .tablet-small\:u-max-w-xl{
    max-width: 36rem !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-7xl{
    max-width: 80rem !important;
  }

  .tablet-small\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet-small\:u-max-w-min{
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .tablet-small\:u-max-w-max{
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .tablet-small\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .tablet-small\:u-max-w-screen-mobile{
    max-width: 375px !important;
  }

  .tablet-small\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .tablet-small\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .tablet-small\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .tablet-small\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .tablet-small\:u-max-w-screen-desktop{
    max-width: 1280px !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: 1280px !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-none{
    flex: none !important;
  }

  .tablet-small\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .tablet-small\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .tablet-small\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .tablet-small\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .tablet-small\:u-table-auto{
    table-layout: auto !important;
  }

  .tablet-small\:u-table-fixed{
    table-layout: fixed !important;
  }

  .tablet-small\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .tablet-small\:u-border-separate{
    border-collapse: separate !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-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-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-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-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-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\: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\: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\: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-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-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-animate-none{
    animation: none !important;
  }

  .tablet-small\:u-animate-spin{
    animation: u-spin 1s linear infinite !important;
  }

  .tablet-small\:u-animate-ping{
    animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet-small\:u-animate-pulse{
    animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet-small\:u-animate-bounce{
    animation: u-bounce 1s infinite !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-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .tablet-small\:u-select-text{
    -webkit-user-select: text !important;
       -moz-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;
            user-select: auto !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-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-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .tablet-small\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .tablet-small\:u-auto-cols-min{
    grid-auto-columns: min-content !important;
  }

  .tablet-small\:u-auto-cols-max{
    grid-auto-columns: max-content !important;
  }

  .tablet-small\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !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-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .tablet-small\:u-auto-rows-min{
    grid-auto-rows: min-content !important;
  }

  .tablet-small\:u-auto-rows-max{
    grid-auto-rows: max-content !important;
  }

  .tablet-small\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-0 > :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(250, 250, 250, 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(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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 > :not([hidden]) ~ :not([hidden]){
    border-color: var(--primary) !important;
  }

  .tablet-small\:u-divide-secundary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--secundary) !important;
  }

  .tablet-small\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !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-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-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-self-baseline{
    align-self: baseline !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-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{
    overscroll-behavior: auto !important;
  }

  .tablet-small\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .tablet-small\:u-overscroll-none{
    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-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-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-rounded-none{
    border-radius: 0px !important;
  }

  .tablet-small\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !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-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-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-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !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-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !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-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !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-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !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-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !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-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !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-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !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: 0px !important;
  }

  .tablet-small\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .tablet-small\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .tablet-small\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .tablet-small\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet-small\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet-small\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .tablet-small\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .tablet-small\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !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-t-2{
    border-top-width: 2px !important;
  }

  .tablet-small\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .tablet-small\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .tablet-small\:u-border-t{
    border-top-width: 1px !important;
  }

  .tablet-small\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .tablet-small\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .tablet-small\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .tablet-small\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .tablet-small\:u-border-r{
    border-right-width: 1px !important;
  }

  .tablet-small\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .tablet-small\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .tablet-small\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .tablet-small\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .tablet-small\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .tablet-small\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .tablet-small\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .tablet-small\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .tablet-small\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .tablet-small\:u-border-l{
    border-left-width: 1px !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-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .tablet-small\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .tablet-small\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .tablet-small\:u-border-transparent{
    border-color: transparent !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-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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-transparent{
    border-color: transparent !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-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-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus-within{
    border-color: var(--primary) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary:focus-within{
    border-color: var(--secundary) !important;
  }

  .tablet-small\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !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-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:hover{
    border-color: var(--primary) !important;
  }

  .tablet-small\:hover\:u-border-secundary:hover{
    border-color: var(--secundary) !important;
  }

  .tablet-small\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:hover\:u-border-transparent:hover{
    border-color: transparent !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-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus{
    border-color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-border-secundary:focus{
    border-color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus\:u-border-transparent:focus{
    border-color: transparent !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-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .tablet-small\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .tablet-small\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .tablet-small\:u-bg-transparent{
    background-color: transparent !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-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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-transparent{
    background-color: transparent !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-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-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus-within{
    background-color: var(--primary) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary:focus-within{
    background-color: var(--secundary) !important;
  }

  .tablet-small\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !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-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:hover{
    background-color: var(--primary) !important;
  }

  .tablet-small\:hover\:u-bg-secundary:hover{
    background-color: var(--secundary) !important;
  }

  .tablet-small\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:hover\:u-bg-transparent:hover{
    background-color: transparent !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-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus{
    background-color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-bg-secundary:focus{
    background-color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus\:u-bg-transparent:focus{
    background-color: transparent !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-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-white{
    --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-black{
    --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-faded{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:u-from-neutral-0{
    --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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:u-from-neutral-30{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-small\:u-from-neutral-40{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-small\:u-from-neutral-45{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:u-from-neutral-50{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-from-secundary{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-from-success{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:hover\:u-from-white: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-black: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-faded:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #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-30:hover{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary:hover{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-from-success:hover{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:focus\:u-from-white: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-black: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-faded:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #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-30:focus{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary:focus{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-from-success:focus{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:u-via-neutral-0{
    --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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-small\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-small\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-via-secundary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-to-white{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:u-to-black{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:u-to-faded{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-small\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:u-to-neutral-10{
    --tw-gradient-to: #FAFAFA !important;
  }

  .tablet-small\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-small\:u-to-neutral-20{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-small\:u-to-neutral-30{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet-small\:u-to-neutral-40{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet-small\:u-to-neutral-45{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-small\:u-to-neutral-50{
    --tw-gradient-to: #262626 !important;
  }

  .tablet-small\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:u-to-primary{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet-small\:u-to-secundary{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet-small\:u-to-success{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet-small\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .tablet-small\:hover\:u-to-white:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:hover\:u-to-black:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:hover\:u-to-faded:hover{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-small\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-small\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet-small\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet-small\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-small\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #262626 !important;
  }

  .tablet-small\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:hover\:u-to-primary:hover{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet-small\:hover\:u-to-secundary:hover{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet-small\:hover\:u-to-success:hover{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet-small\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .tablet-small\:focus\:u-to-white:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:focus\:u-to-black:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:focus\:u-to-faded:focus{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-small\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-small\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet-small\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet-small\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-small\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #262626 !important;
  }

  .tablet-small\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:focus\:u-to-primary:focus{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet-small\:focus\:u-to-secundary:focus{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-to-success:focus{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet-small\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .tablet-small\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .tablet-small\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !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-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-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-origin-border{
    background-origin: border-box !important;
  }

  .tablet-small\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .tablet-small\:u-bg-origin-content{
    background-origin: content-box !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-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-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-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .tablet-small\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .tablet-small\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .tablet-small\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .tablet-small\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tablet-small\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .tablet-small\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .tablet-small\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .tablet-small\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .tablet-small\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .tablet-small\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .tablet-small\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .tablet-small\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .tablet-small\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .tablet-small\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .tablet-small\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .tablet-small\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .tablet-small\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .tablet-small\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .tablet-small\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .tablet-small\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .tablet-small\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .tablet-small\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .tablet-small\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .tablet-small\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .tablet-small\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .tablet-small\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .tablet-small\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .tablet-small\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .tablet-small\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .tablet-small\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .tablet-small\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .tablet-small\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .tablet-small\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .tablet-small\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .tablet-small\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .tablet-small\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .tablet-small\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .tablet-small\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .tablet-small\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tablet-small\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .tablet-small\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tablet-small\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .tablet-small\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .tablet-small\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .tablet-small\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .tablet-small\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .tablet-small\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .tablet-small\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .tablet-small\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .tablet-small\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .tablet-small\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .tablet-small\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .tablet-small\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .tablet-small\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .tablet-small\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .tablet-small\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .tablet-small\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .tablet-small\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .tablet-small\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .tablet-small\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .tablet-small\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .tablet-small\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .tablet-small\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .tablet-small\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .tablet-small\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .tablet-small\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .tablet-small\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .tablet-small\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .tablet-small\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .tablet-small\:u-pt-0{
    padding-top: 0px !important;
  }

  .tablet-small\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .tablet-small\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .tablet-small\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .tablet-small\:u-pt-4{
    padding-top: 1rem !important;
  }

  .tablet-small\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .tablet-small\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .tablet-small\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .tablet-small\:u-pt-8{
    padding-top: 2rem !important;
  }

  .tablet-small\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .tablet-small\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .tablet-small\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .tablet-small\:u-pt-12{
    padding-top: 3rem !important;
  }

  .tablet-small\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .tablet-small\:u-pt-16{
    padding-top: 4rem !important;
  }

  .tablet-small\:u-pt-20{
    padding-top: 5rem !important;
  }

  .tablet-small\:u-pt-24{
    padding-top: 6rem !important;
  }

  .tablet-small\:u-pt-28{
    padding-top: 7rem !important;
  }

  .tablet-small\:u-pt-32{
    padding-top: 8rem !important;
  }

  .tablet-small\:u-pt-36{
    padding-top: 9rem !important;
  }

  .tablet-small\:u-pt-40{
    padding-top: 10rem !important;
  }

  .tablet-small\:u-pt-44{
    padding-top: 11rem !important;
  }

  .tablet-small\:u-pt-48{
    padding-top: 12rem !important;
  }

  .tablet-small\:u-pt-52{
    padding-top: 13rem !important;
  }

  .tablet-small\:u-pt-56{
    padding-top: 14rem !important;
  }

  .tablet-small\:u-pt-60{
    padding-top: 15rem !important;
  }

  .tablet-small\:u-pt-64{
    padding-top: 16rem !important;
  }

  .tablet-small\:u-pt-72{
    padding-top: 18rem !important;
  }

  .tablet-small\:u-pt-80{
    padding-top: 20rem !important;
  }

  .tablet-small\:u-pt-96{
    padding-top: 24rem !important;
  }

  .tablet-small\:u-pt-px{
    padding-top: 1px !important;
  }

  .tablet-small\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .tablet-small\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .tablet-small\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .tablet-small\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .tablet-small\:u-pr-0{
    padding-right: 0px !important;
  }

  .tablet-small\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .tablet-small\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .tablet-small\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .tablet-small\:u-pr-4{
    padding-right: 1rem !important;
  }

  .tablet-small\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .tablet-small\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .tablet-small\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .tablet-small\:u-pr-8{
    padding-right: 2rem !important;
  }

  .tablet-small\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .tablet-small\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .tablet-small\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .tablet-small\:u-pr-12{
    padding-right: 3rem !important;
  }

  .tablet-small\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .tablet-small\:u-pr-16{
    padding-right: 4rem !important;
  }

  .tablet-small\:u-pr-20{
    padding-right: 5rem !important;
  }

  .tablet-small\:u-pr-24{
    padding-right: 6rem !important;
  }

  .tablet-small\:u-pr-28{
    padding-right: 7rem !important;
  }

  .tablet-small\:u-pr-32{
    padding-right: 8rem !important;
  }

  .tablet-small\:u-pr-36{
    padding-right: 9rem !important;
  }

  .tablet-small\:u-pr-40{
    padding-right: 10rem !important;
  }

  .tablet-small\:u-pr-44{
    padding-right: 11rem !important;
  }

  .tablet-small\:u-pr-48{
    padding-right: 12rem !important;
  }

  .tablet-small\:u-pr-52{
    padding-right: 13rem !important;
  }

  .tablet-small\:u-pr-56{
    padding-right: 14rem !important;
  }

  .tablet-small\:u-pr-60{
    padding-right: 15rem !important;
  }

  .tablet-small\:u-pr-64{
    padding-right: 16rem !important;
  }

  .tablet-small\:u-pr-72{
    padding-right: 18rem !important;
  }

  .tablet-small\:u-pr-80{
    padding-right: 20rem !important;
  }

  .tablet-small\:u-pr-96{
    padding-right: 24rem !important;
  }

  .tablet-small\:u-pr-px{
    padding-right: 1px !important;
  }

  .tablet-small\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .tablet-small\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .tablet-small\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .tablet-small\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .tablet-small\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .tablet-small\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .tablet-small\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .tablet-small\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .tablet-small\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .tablet-small\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .tablet-small\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .tablet-small\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .tablet-small\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .tablet-small\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .tablet-small\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .tablet-small\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .tablet-small\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .tablet-small\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .tablet-small\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .tablet-small\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .tablet-small\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .tablet-small\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .tablet-small\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .tablet-small\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .tablet-small\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .tablet-small\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .tablet-small\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .tablet-small\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .tablet-small\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .tablet-small\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .tablet-small\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .tablet-small\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .tablet-small\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .tablet-small\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .tablet-small\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .tablet-small\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .tablet-small\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .tablet-small\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .tablet-small\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .tablet-small\:u-pl-0{
    padding-left: 0px !important;
  }

  .tablet-small\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .tablet-small\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .tablet-small\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .tablet-small\:u-pl-4{
    padding-left: 1rem !important;
  }

  .tablet-small\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .tablet-small\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .tablet-small\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .tablet-small\:u-pl-8{
    padding-left: 2rem !important;
  }

  .tablet-small\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .tablet-small\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .tablet-small\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .tablet-small\:u-pl-12{
    padding-left: 3rem !important;
  }

  .tablet-small\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .tablet-small\:u-pl-16{
    padding-left: 4rem !important;
  }

  .tablet-small\:u-pl-20{
    padding-left: 5rem !important;
  }

  .tablet-small\:u-pl-24{
    padding-left: 6rem !important;
  }

  .tablet-small\:u-pl-28{
    padding-left: 7rem !important;
  }

  .tablet-small\:u-pl-32{
    padding-left: 8rem !important;
  }

  .tablet-small\:u-pl-36{
    padding-left: 9rem !important;
  }

  .tablet-small\:u-pl-40{
    padding-left: 10rem !important;
  }

  .tablet-small\:u-pl-44{
    padding-left: 11rem !important;
  }

  .tablet-small\:u-pl-48{
    padding-left: 12rem !important;
  }

  .tablet-small\:u-pl-52{
    padding-left: 13rem !important;
  }

  .tablet-small\:u-pl-56{
    padding-left: 14rem !important;
  }

  .tablet-small\:u-pl-60{
    padding-left: 15rem !important;
  }

  .tablet-small\:u-pl-64{
    padding-left: 16rem !important;
  }

  .tablet-small\:u-pl-72{
    padding-left: 18rem !important;
  }

  .tablet-small\:u-pl-80{
    padding-left: 20rem !important;
  }

  .tablet-small\:u-pl-96{
    padding-left: 24rem !important;
  }

  .tablet-small\:u-pl-px{
    padding-left: 1px !important;
  }

  .tablet-small\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .tablet-small\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .tablet-small\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .tablet-small\:u-pl-3\.5{
    padding-left: 0.875rem !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-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-font-body{
    font-family: Public Sans, sans-serif !important;
  }

  .tablet-small\:u-font-heading{
    font-family: Public Sans, sans-serif !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.2rem !important;
  }

  .tablet-small\:u-text-3xl{
    font-size: 1.3rem !important;
  }

  .tablet-small\:u-text-4xl{
    font-size: 1.4rem !important;
  }

  .tablet-small\:u-text-5xl{
    font-size: 2rem !important;
  }

  .tablet-small\:u-text-6xl{
    font-size: 3rem !important;
  }

  .tablet-small\:u-text-8xl{
    font-size: 4rem !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-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-italic{
    font-style: italic !important;
  }

  .tablet-small\:u-not-italic{
    font-style: normal !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-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.5 !important;
  }

  .tablet-small\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .tablet-small\:u-leading-loose{
    line-height: 2 !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-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !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-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .tablet-small\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .tablet-small\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .tablet-small\:u-text-transparent{
    color: transparent !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-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-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-transparent{
    color: transparent !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-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus-within{
    color: var(--primary) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary:focus-within{
    color: var(--secundary) !important;
  }

  .tablet-small\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus-within\:u-text-transparent:focus-within{
    color: transparent !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-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:hover{
    color: var(--primary) !important;
  }

  .tablet-small\:hover\:u-text-secundary:hover{
    color: var(--secundary) !important;
  }

  .tablet-small\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:hover\:u-text-transparent:hover{
    color: transparent !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-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus{
    color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-text-secundary:focus{
    color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus\:u-text-transparent:focus{
    color: transparent !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-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-placeholder-white::-moz-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-black::-moz-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-0::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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary::-moz-placeholder{
    color: var(--primary) !important;
  }

  .tablet-small\:u-placeholder-primary::placeholder{
    color: var(--primary) !important;
  }

  .tablet-small\:u-placeholder-secundary::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .tablet-small\:u-placeholder-secundary::placeholder{
    color: var(--secundary) !important;
  }

  .tablet-small\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-small\:u-placeholder-transparent::placeholder{
    color: transparent !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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-0: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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary:focus::-moz-placeholder{
    color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary:focus::placeholder{
    color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary:focus::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary:focus::placeholder{
    color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-small\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .tablet-small\:u-placeholder-opacity-0::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 1 !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-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .tablet-small\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .tablet-small\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .tablet-small\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .tablet-small\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .tablet-small\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .tablet-small\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .tablet-small\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .tablet-small\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .tablet-small\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .tablet-small\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .tablet-small\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .tablet-small\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .tablet-small\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .tablet-small\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .tablet-small\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .tablet-small\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .tablet-small\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .tablet-small\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .tablet-small\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .tablet-small\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .tablet-small\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .tablet-small\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .tablet-small\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .tablet-small\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .tablet-small\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .tablet-small\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .tablet-small\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .tablet-small\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .tablet-small\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .tablet-small\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .tablet-small\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !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;
  }

  .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;
  }

  .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\: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\: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\: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-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\: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\: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\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .tablet-small\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .tablet-small\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet-small\:u-ring-secundary{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet-small\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:u-ring-transparent{
    --tw-ring-color: transparent !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-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-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus-within{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary:focus-within{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet-small\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !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-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-ring-secundary:focus{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !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-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-offset-white{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:u-ring-offset-black{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:u-ring-offset-faded{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-small\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-small\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet-small\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet-small\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-small\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet-small\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:u-ring-offset-primary{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet-small\:u-ring-offset-secundary{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet-small\:u-ring-offset-success{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet-small\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-small\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #262626 !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:focus-within{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary:focus-within{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-small\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary:focus{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary:focus{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet-small\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet-small\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-small\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-small\:u-filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
  }

  .tablet-small\:u-filter-none{
    filter: none !important;
  }

  .tablet-small\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .tablet-small\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .tablet-small\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .tablet-small\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .tablet-small\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .tablet-small\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .tablet-small\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .tablet-small\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .tablet-small\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .tablet-small\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .tablet-small\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .tablet-small\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .tablet-small\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .tablet-small\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .tablet-small\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .tablet-small\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .tablet-small\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .tablet-small\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .tablet-small\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .tablet-small\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .tablet-small\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .tablet-small\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .tablet-small\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .tablet-small\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .tablet-small\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .tablet-small\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .tablet-small\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .tablet-small\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .tablet-small\:u-drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
  }

  .tablet-small\:u-drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
  }

  .tablet-small\:u-drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
  }

  .tablet-small\:u-drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
  }

  .tablet-small\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .tablet-small\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .tablet-small\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .tablet-small\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .tablet-small\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .tablet-small\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .tablet-small\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .tablet-small\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .tablet-small\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .tablet-small\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .tablet-small\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .tablet-small\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .tablet-small\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .tablet-small\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .tablet-small\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .tablet-small\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .tablet-small\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .tablet-small\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .tablet-small\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .tablet-small\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .tablet-small\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .tablet-small\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .tablet-small\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .tablet-small\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .tablet-small\:u-backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
  }

  .tablet-small\:u-backdrop-filter-none{
    backdrop-filter: none !important;
  }

  .tablet-small\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .tablet-small\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .tablet-small\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .tablet-small\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .tablet-small\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .tablet-small\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .tablet-small\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .tablet-small\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .tablet-small\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .tablet-small\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .tablet-small\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .tablet-small\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .tablet-small\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .tablet-small\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .tablet-small\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .tablet-small\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .tablet-small\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .tablet-small\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .tablet-small\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .tablet-small\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .tablet-small\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .tablet-small\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .tablet-small\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .tablet-small\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .tablet-small\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .tablet-small\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .tablet-small\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .tablet-small\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .tablet-small\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .tablet-small\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .tablet-small\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .tablet-small\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .tablet-small\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .tablet-small\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .tablet-small\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .tablet-small\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .tablet-small\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .tablet-small\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .tablet-small\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .tablet-small\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .tablet-small\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .tablet-small\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .tablet-small\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .tablet-small\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .tablet-small\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .tablet-small\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .tablet-small\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .tablet-small\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .tablet-small\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .tablet-small\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .tablet-small\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .tablet-small\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .tablet-small\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .tablet-small\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .tablet-small\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .tablet-small\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .tablet-small\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .tablet-small\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .tablet-small\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .tablet-small\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .tablet-small\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .tablet-small\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .tablet-small\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .tablet-small\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !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, filter, backdrop-filter !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-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-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-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;
  }
}

@media (min-width: 768px){
  .tablet\:u-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  @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: 1280px){
    .tablet\:u-container{
      max-width: 1280px;
    }
  }

  .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-pointer-events-none{
    pointer-events: none !important;
  }

  .tablet\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .tablet\:u-visible{
    visibility: visible !important;
  }

  .tablet\:u-invisible{
    visibility: hidden !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-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .tablet\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .tablet\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .tablet\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .tablet\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .tablet\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .tablet\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .tablet\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .tablet\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .tablet\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .tablet\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .tablet\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .tablet\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .tablet\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .tablet\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .tablet\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .tablet\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .tablet\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .tablet\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .tablet\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .tablet\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .tablet\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .tablet\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .tablet\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .tablet\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .tablet\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .tablet\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .tablet\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .tablet\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .tablet\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .tablet\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .tablet\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .tablet\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .tablet\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .tablet\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .tablet\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .tablet\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .tablet\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .tablet\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .tablet\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .tablet\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .tablet\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .tablet\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .tablet\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .tablet\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .tablet\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .tablet\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .tablet\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .tablet\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .tablet\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .tablet\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .tablet\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .tablet\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .tablet\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .tablet\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .tablet\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .tablet\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .tablet\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .tablet\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .tablet\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .tablet\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .tablet\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .tablet\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .tablet\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .tablet\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .tablet\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .tablet\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .tablet\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .tablet\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .tablet\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .tablet\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .tablet\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .tablet\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .tablet\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .tablet\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .tablet\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .tablet\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .tablet\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .tablet\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .tablet\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .tablet\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .tablet\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .tablet\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .tablet\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .tablet\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .tablet\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .tablet\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .tablet\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .tablet\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .tablet\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .tablet\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .tablet\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .tablet\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .tablet\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .tablet\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .tablet\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .tablet\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .tablet\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .tablet\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .tablet\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .tablet\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .tablet\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .tablet\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .tablet\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .tablet\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .tablet\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .tablet\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .tablet\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .tablet\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .tablet\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .tablet\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .tablet\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .tablet\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .tablet\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .tablet\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .tablet\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .tablet\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .tablet\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .tablet\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .tablet\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .tablet\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .tablet\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .tablet\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .tablet\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .tablet\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .tablet\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .tablet\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .tablet\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .tablet\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .tablet\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .tablet\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .tablet\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .tablet\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .tablet\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .tablet\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .tablet\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .tablet\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .tablet\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .tablet\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .tablet\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .tablet\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .tablet\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .tablet\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .tablet\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .tablet\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .tablet\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .tablet\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .tablet\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .tablet\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .tablet\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .tablet\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .tablet\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .tablet\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .tablet\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .tablet\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .tablet\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .tablet\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .tablet\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .tablet\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .tablet\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .tablet\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .tablet\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .tablet\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .tablet\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .tablet\:u-top-0{
    top: 0px !important;
  }

  .tablet\:u-top-1{
    top: 0.25rem !important;
  }

  .tablet\:u-top-2{
    top: 0.5rem !important;
  }

  .tablet\:u-top-3{
    top: 0.75rem !important;
  }

  .tablet\:u-top-4{
    top: 1rem !important;
  }

  .tablet\:u-top-5{
    top: 1.25rem !important;
  }

  .tablet\:u-top-6{
    top: 1.5rem !important;
  }

  .tablet\:u-top-7{
    top: 1.75rem !important;
  }

  .tablet\:u-top-8{
    top: 2rem !important;
  }

  .tablet\:u-top-9{
    top: 2.25rem !important;
  }

  .tablet\:u-top-10{
    top: 2.5rem !important;
  }

  .tablet\:u-top-11{
    top: 2.75rem !important;
  }

  .tablet\:u-top-12{
    top: 3rem !important;
  }

  .tablet\:u-top-14{
    top: 3.5rem !important;
  }

  .tablet\:u-top-16{
    top: 4rem !important;
  }

  .tablet\:u-top-20{
    top: 5rem !important;
  }

  .tablet\:u-top-24{
    top: 6rem !important;
  }

  .tablet\:u-top-28{
    top: 7rem !important;
  }

  .tablet\:u-top-32{
    top: 8rem !important;
  }

  .tablet\:u-top-36{
    top: 9rem !important;
  }

  .tablet\:u-top-40{
    top: 10rem !important;
  }

  .tablet\:u-top-44{
    top: 11rem !important;
  }

  .tablet\:u-top-48{
    top: 12rem !important;
  }

  .tablet\:u-top-52{
    top: 13rem !important;
  }

  .tablet\:u-top-56{
    top: 14rem !important;
  }

  .tablet\:u-top-60{
    top: 15rem !important;
  }

  .tablet\:u-top-64{
    top: 16rem !important;
  }

  .tablet\:u-top-72{
    top: 18rem !important;
  }

  .tablet\:u-top-80{
    top: 20rem !important;
  }

  .tablet\:u-top-96{
    top: 24rem !important;
  }

  .tablet\:u-top-auto{
    top: auto !important;
  }

  .tablet\:u-top-px{
    top: 1px !important;
  }

  .tablet\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .tablet\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .tablet\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .tablet\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .tablet\:u--top-0{
    top: 0px !important;
  }

  .tablet\:u--top-1{
    top: -0.25rem !important;
  }

  .tablet\:u--top-2{
    top: -0.5rem !important;
  }

  .tablet\:u--top-3{
    top: -0.75rem !important;
  }

  .tablet\:u--top-4{
    top: -1rem !important;
  }

  .tablet\:u--top-5{
    top: -1.25rem !important;
  }

  .tablet\:u--top-6{
    top: -1.5rem !important;
  }

  .tablet\:u--top-7{
    top: -1.75rem !important;
  }

  .tablet\:u--top-8{
    top: -2rem !important;
  }

  .tablet\:u--top-9{
    top: -2.25rem !important;
  }

  .tablet\:u--top-10{
    top: -2.5rem !important;
  }

  .tablet\:u--top-11{
    top: -2.75rem !important;
  }

  .tablet\:u--top-12{
    top: -3rem !important;
  }

  .tablet\:u--top-14{
    top: -3.5rem !important;
  }

  .tablet\:u--top-16{
    top: -4rem !important;
  }

  .tablet\:u--top-20{
    top: -5rem !important;
  }

  .tablet\:u--top-24{
    top: -6rem !important;
  }

  .tablet\:u--top-28{
    top: -7rem !important;
  }

  .tablet\:u--top-32{
    top: -8rem !important;
  }

  .tablet\:u--top-36{
    top: -9rem !important;
  }

  .tablet\:u--top-40{
    top: -10rem !important;
  }

  .tablet\:u--top-44{
    top: -11rem !important;
  }

  .tablet\:u--top-48{
    top: -12rem !important;
  }

  .tablet\:u--top-52{
    top: -13rem !important;
  }

  .tablet\:u--top-56{
    top: -14rem !important;
  }

  .tablet\:u--top-60{
    top: -15rem !important;
  }

  .tablet\:u--top-64{
    top: -16rem !important;
  }

  .tablet\:u--top-72{
    top: -18rem !important;
  }

  .tablet\:u--top-80{
    top: -20rem !important;
  }

  .tablet\:u--top-96{
    top: -24rem !important;
  }

  .tablet\:u--top-px{
    top: -1px !important;
  }

  .tablet\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .tablet\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .tablet\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .tablet\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .tablet\:u-top-1\/2{
    top: 50% !important;
  }

  .tablet\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .tablet\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .tablet\:u-top-1\/4{
    top: 25% !important;
  }

  .tablet\:u-top-2\/4{
    top: 50% !important;
  }

  .tablet\:u-top-3\/4{
    top: 75% !important;
  }

  .tablet\:u-top-full{
    top: 100% !important;
  }

  .tablet\:u--top-1\/2{
    top: -50% !important;
  }

  .tablet\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .tablet\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .tablet\:u--top-1\/4{
    top: -25% !important;
  }

  .tablet\:u--top-2\/4{
    top: -50% !important;
  }

  .tablet\:u--top-3\/4{
    top: -75% !important;
  }

  .tablet\:u--top-full{
    top: -100% !important;
  }

  .tablet\:u-right-0{
    right: 0px !important;
  }

  .tablet\:u-right-1{
    right: 0.25rem !important;
  }

  .tablet\:u-right-2{
    right: 0.5rem !important;
  }

  .tablet\:u-right-3{
    right: 0.75rem !important;
  }

  .tablet\:u-right-4{
    right: 1rem !important;
  }

  .tablet\:u-right-5{
    right: 1.25rem !important;
  }

  .tablet\:u-right-6{
    right: 1.5rem !important;
  }

  .tablet\:u-right-7{
    right: 1.75rem !important;
  }

  .tablet\:u-right-8{
    right: 2rem !important;
  }

  .tablet\:u-right-9{
    right: 2.25rem !important;
  }

  .tablet\:u-right-10{
    right: 2.5rem !important;
  }

  .tablet\:u-right-11{
    right: 2.75rem !important;
  }

  .tablet\:u-right-12{
    right: 3rem !important;
  }

  .tablet\:u-right-14{
    right: 3.5rem !important;
  }

  .tablet\:u-right-16{
    right: 4rem !important;
  }

  .tablet\:u-right-20{
    right: 5rem !important;
  }

  .tablet\:u-right-24{
    right: 6rem !important;
  }

  .tablet\:u-right-28{
    right: 7rem !important;
  }

  .tablet\:u-right-32{
    right: 8rem !important;
  }

  .tablet\:u-right-36{
    right: 9rem !important;
  }

  .tablet\:u-right-40{
    right: 10rem !important;
  }

  .tablet\:u-right-44{
    right: 11rem !important;
  }

  .tablet\:u-right-48{
    right: 12rem !important;
  }

  .tablet\:u-right-52{
    right: 13rem !important;
  }

  .tablet\:u-right-56{
    right: 14rem !important;
  }

  .tablet\:u-right-60{
    right: 15rem !important;
  }

  .tablet\:u-right-64{
    right: 16rem !important;
  }

  .tablet\:u-right-72{
    right: 18rem !important;
  }

  .tablet\:u-right-80{
    right: 20rem !important;
  }

  .tablet\:u-right-96{
    right: 24rem !important;
  }

  .tablet\:u-right-auto{
    right: auto !important;
  }

  .tablet\:u-right-px{
    right: 1px !important;
  }

  .tablet\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .tablet\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .tablet\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .tablet\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .tablet\:u--right-0{
    right: 0px !important;
  }

  .tablet\:u--right-1{
    right: -0.25rem !important;
  }

  .tablet\:u--right-2{
    right: -0.5rem !important;
  }

  .tablet\:u--right-3{
    right: -0.75rem !important;
  }

  .tablet\:u--right-4{
    right: -1rem !important;
  }

  .tablet\:u--right-5{
    right: -1.25rem !important;
  }

  .tablet\:u--right-6{
    right: -1.5rem !important;
  }

  .tablet\:u--right-7{
    right: -1.75rem !important;
  }

  .tablet\:u--right-8{
    right: -2rem !important;
  }

  .tablet\:u--right-9{
    right: -2.25rem !important;
  }

  .tablet\:u--right-10{
    right: -2.5rem !important;
  }

  .tablet\:u--right-11{
    right: -2.75rem !important;
  }

  .tablet\:u--right-12{
    right: -3rem !important;
  }

  .tablet\:u--right-14{
    right: -3.5rem !important;
  }

  .tablet\:u--right-16{
    right: -4rem !important;
  }

  .tablet\:u--right-20{
    right: -5rem !important;
  }

  .tablet\:u--right-24{
    right: -6rem !important;
  }

  .tablet\:u--right-28{
    right: -7rem !important;
  }

  .tablet\:u--right-32{
    right: -8rem !important;
  }

  .tablet\:u--right-36{
    right: -9rem !important;
  }

  .tablet\:u--right-40{
    right: -10rem !important;
  }

  .tablet\:u--right-44{
    right: -11rem !important;
  }

  .tablet\:u--right-48{
    right: -12rem !important;
  }

  .tablet\:u--right-52{
    right: -13rem !important;
  }

  .tablet\:u--right-56{
    right: -14rem !important;
  }

  .tablet\:u--right-60{
    right: -15rem !important;
  }

  .tablet\:u--right-64{
    right: -16rem !important;
  }

  .tablet\:u--right-72{
    right: -18rem !important;
  }

  .tablet\:u--right-80{
    right: -20rem !important;
  }

  .tablet\:u--right-96{
    right: -24rem !important;
  }

  .tablet\:u--right-px{
    right: -1px !important;
  }

  .tablet\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .tablet\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .tablet\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .tablet\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .tablet\:u-right-1\/2{
    right: 50% !important;
  }

  .tablet\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .tablet\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .tablet\:u-right-1\/4{
    right: 25% !important;
  }

  .tablet\:u-right-2\/4{
    right: 50% !important;
  }

  .tablet\:u-right-3\/4{
    right: 75% !important;
  }

  .tablet\:u-right-full{
    right: 100% !important;
  }

  .tablet\:u--right-1\/2{
    right: -50% !important;
  }

  .tablet\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .tablet\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .tablet\:u--right-1\/4{
    right: -25% !important;
  }

  .tablet\:u--right-2\/4{
    right: -50% !important;
  }

  .tablet\:u--right-3\/4{
    right: -75% !important;
  }

  .tablet\:u--right-full{
    right: -100% !important;
  }

  .tablet\:u-bottom-0{
    bottom: 0px !important;
  }

  .tablet\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .tablet\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .tablet\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .tablet\:u-bottom-4{
    bottom: 1rem !important;
  }

  .tablet\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .tablet\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .tablet\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .tablet\:u-bottom-8{
    bottom: 2rem !important;
  }

  .tablet\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .tablet\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .tablet\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .tablet\:u-bottom-12{
    bottom: 3rem !important;
  }

  .tablet\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .tablet\:u-bottom-16{
    bottom: 4rem !important;
  }

  .tablet\:u-bottom-20{
    bottom: 5rem !important;
  }

  .tablet\:u-bottom-24{
    bottom: 6rem !important;
  }

  .tablet\:u-bottom-28{
    bottom: 7rem !important;
  }

  .tablet\:u-bottom-32{
    bottom: 8rem !important;
  }

  .tablet\:u-bottom-36{
    bottom: 9rem !important;
  }

  .tablet\:u-bottom-40{
    bottom: 10rem !important;
  }

  .tablet\:u-bottom-44{
    bottom: 11rem !important;
  }

  .tablet\:u-bottom-48{
    bottom: 12rem !important;
  }

  .tablet\:u-bottom-52{
    bottom: 13rem !important;
  }

  .tablet\:u-bottom-56{
    bottom: 14rem !important;
  }

  .tablet\:u-bottom-60{
    bottom: 15rem !important;
  }

  .tablet\:u-bottom-64{
    bottom: 16rem !important;
  }

  .tablet\:u-bottom-72{
    bottom: 18rem !important;
  }

  .tablet\:u-bottom-80{
    bottom: 20rem !important;
  }

  .tablet\:u-bottom-96{
    bottom: 24rem !important;
  }

  .tablet\:u-bottom-auto{
    bottom: auto !important;
  }

  .tablet\:u-bottom-px{
    bottom: 1px !important;
  }

  .tablet\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .tablet\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .tablet\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .tablet\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .tablet\:u--bottom-0{
    bottom: 0px !important;
  }

  .tablet\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .tablet\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .tablet\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .tablet\:u--bottom-4{
    bottom: -1rem !important;
  }

  .tablet\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .tablet\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .tablet\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .tablet\:u--bottom-8{
    bottom: -2rem !important;
  }

  .tablet\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .tablet\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .tablet\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .tablet\:u--bottom-12{
    bottom: -3rem !important;
  }

  .tablet\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .tablet\:u--bottom-16{
    bottom: -4rem !important;
  }

  .tablet\:u--bottom-20{
    bottom: -5rem !important;
  }

  .tablet\:u--bottom-24{
    bottom: -6rem !important;
  }

  .tablet\:u--bottom-28{
    bottom: -7rem !important;
  }

  .tablet\:u--bottom-32{
    bottom: -8rem !important;
  }

  .tablet\:u--bottom-36{
    bottom: -9rem !important;
  }

  .tablet\:u--bottom-40{
    bottom: -10rem !important;
  }

  .tablet\:u--bottom-44{
    bottom: -11rem !important;
  }

  .tablet\:u--bottom-48{
    bottom: -12rem !important;
  }

  .tablet\:u--bottom-52{
    bottom: -13rem !important;
  }

  .tablet\:u--bottom-56{
    bottom: -14rem !important;
  }

  .tablet\:u--bottom-60{
    bottom: -15rem !important;
  }

  .tablet\:u--bottom-64{
    bottom: -16rem !important;
  }

  .tablet\:u--bottom-72{
    bottom: -18rem !important;
  }

  .tablet\:u--bottom-80{
    bottom: -20rem !important;
  }

  .tablet\:u--bottom-96{
    bottom: -24rem !important;
  }

  .tablet\:u--bottom-px{
    bottom: -1px !important;
  }

  .tablet\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .tablet\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .tablet\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .tablet\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .tablet\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .tablet\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .tablet\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .tablet\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .tablet\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .tablet\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .tablet\:u-bottom-full{
    bottom: 100% !important;
  }

  .tablet\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .tablet\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .tablet\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .tablet\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .tablet\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .tablet\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .tablet\:u--bottom-full{
    bottom: -100% !important;
  }

  .tablet\:u-left-0{
    left: 0px !important;
  }

  .tablet\:u-left-1{
    left: 0.25rem !important;
  }

  .tablet\:u-left-2{
    left: 0.5rem !important;
  }

  .tablet\:u-left-3{
    left: 0.75rem !important;
  }

  .tablet\:u-left-4{
    left: 1rem !important;
  }

  .tablet\:u-left-5{
    left: 1.25rem !important;
  }

  .tablet\:u-left-6{
    left: 1.5rem !important;
  }

  .tablet\:u-left-7{
    left: 1.75rem !important;
  }

  .tablet\:u-left-8{
    left: 2rem !important;
  }

  .tablet\:u-left-9{
    left: 2.25rem !important;
  }

  .tablet\:u-left-10{
    left: 2.5rem !important;
  }

  .tablet\:u-left-11{
    left: 2.75rem !important;
  }

  .tablet\:u-left-12{
    left: 3rem !important;
  }

  .tablet\:u-left-14{
    left: 3.5rem !important;
  }

  .tablet\:u-left-16{
    left: 4rem !important;
  }

  .tablet\:u-left-20{
    left: 5rem !important;
  }

  .tablet\:u-left-24{
    left: 6rem !important;
  }

  .tablet\:u-left-28{
    left: 7rem !important;
  }

  .tablet\:u-left-32{
    left: 8rem !important;
  }

  .tablet\:u-left-36{
    left: 9rem !important;
  }

  .tablet\:u-left-40{
    left: 10rem !important;
  }

  .tablet\:u-left-44{
    left: 11rem !important;
  }

  .tablet\:u-left-48{
    left: 12rem !important;
  }

  .tablet\:u-left-52{
    left: 13rem !important;
  }

  .tablet\:u-left-56{
    left: 14rem !important;
  }

  .tablet\:u-left-60{
    left: 15rem !important;
  }

  .tablet\:u-left-64{
    left: 16rem !important;
  }

  .tablet\:u-left-72{
    left: 18rem !important;
  }

  .tablet\:u-left-80{
    left: 20rem !important;
  }

  .tablet\:u-left-96{
    left: 24rem !important;
  }

  .tablet\:u-left-auto{
    left: auto !important;
  }

  .tablet\:u-left-px{
    left: 1px !important;
  }

  .tablet\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .tablet\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .tablet\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .tablet\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .tablet\:u--left-0{
    left: 0px !important;
  }

  .tablet\:u--left-1{
    left: -0.25rem !important;
  }

  .tablet\:u--left-2{
    left: -0.5rem !important;
  }

  .tablet\:u--left-3{
    left: -0.75rem !important;
  }

  .tablet\:u--left-4{
    left: -1rem !important;
  }

  .tablet\:u--left-5{
    left: -1.25rem !important;
  }

  .tablet\:u--left-6{
    left: -1.5rem !important;
  }

  .tablet\:u--left-7{
    left: -1.75rem !important;
  }

  .tablet\:u--left-8{
    left: -2rem !important;
  }

  .tablet\:u--left-9{
    left: -2.25rem !important;
  }

  .tablet\:u--left-10{
    left: -2.5rem !important;
  }

  .tablet\:u--left-11{
    left: -2.75rem !important;
  }

  .tablet\:u--left-12{
    left: -3rem !important;
  }

  .tablet\:u--left-14{
    left: -3.5rem !important;
  }

  .tablet\:u--left-16{
    left: -4rem !important;
  }

  .tablet\:u--left-20{
    left: -5rem !important;
  }

  .tablet\:u--left-24{
    left: -6rem !important;
  }

  .tablet\:u--left-28{
    left: -7rem !important;
  }

  .tablet\:u--left-32{
    left: -8rem !important;
  }

  .tablet\:u--left-36{
    left: -9rem !important;
  }

  .tablet\:u--left-40{
    left: -10rem !important;
  }

  .tablet\:u--left-44{
    left: -11rem !important;
  }

  .tablet\:u--left-48{
    left: -12rem !important;
  }

  .tablet\:u--left-52{
    left: -13rem !important;
  }

  .tablet\:u--left-56{
    left: -14rem !important;
  }

  .tablet\:u--left-60{
    left: -15rem !important;
  }

  .tablet\:u--left-64{
    left: -16rem !important;
  }

  .tablet\:u--left-72{
    left: -18rem !important;
  }

  .tablet\:u--left-80{
    left: -20rem !important;
  }

  .tablet\:u--left-96{
    left: -24rem !important;
  }

  .tablet\:u--left-px{
    left: -1px !important;
  }

  .tablet\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .tablet\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .tablet\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .tablet\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .tablet\:u-left-1\/2{
    left: 50% !important;
  }

  .tablet\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .tablet\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .tablet\:u-left-1\/4{
    left: 25% !important;
  }

  .tablet\:u-left-2\/4{
    left: 50% !important;
  }

  .tablet\:u-left-3\/4{
    left: 75% !important;
  }

  .tablet\:u-left-full{
    left: 100% !important;
  }

  .tablet\:u--left-1\/2{
    left: -50% !important;
  }

  .tablet\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .tablet\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .tablet\:u--left-1\/4{
    left: -25% !important;
  }

  .tablet\:u--left-2\/4{
    left: -50% !important;
  }

  .tablet\:u--left-3\/4{
    left: -75% !important;
  }

  .tablet\:u--left-full{
    left: -100% !important;
  }

  .tablet\:u-isolate{
    isolation: isolate !important;
  }

  .tablet\:u-isolation-auto{
    isolation: auto !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-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-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-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-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-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-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .tablet\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .tablet\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .tablet\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .tablet\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .tablet\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .tablet\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .tablet\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .tablet\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .tablet\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .tablet\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .tablet\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .tablet\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .tablet\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .tablet\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .tablet\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .tablet\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .tablet\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .tablet\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .tablet\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .tablet\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .tablet\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .tablet\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .tablet\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .tablet\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .tablet\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .tablet\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .tablet\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .tablet\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .tablet\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tablet\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .tablet\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .tablet\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .tablet\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .tablet\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .tablet\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .tablet\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .tablet\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .tablet\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .tablet\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tablet\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .tablet\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .tablet\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .tablet\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .tablet\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .tablet\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .tablet\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .tablet\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .tablet\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .tablet\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .tablet\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .tablet\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .tablet\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .tablet\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .tablet\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .tablet\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .tablet\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .tablet\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .tablet\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .tablet\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .tablet\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .tablet\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .tablet\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .tablet\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .tablet\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .tablet\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .tablet\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .tablet\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !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-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .tablet\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tablet\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .tablet\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tablet\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .tablet\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tablet\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .tablet\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .tablet\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .tablet\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tablet\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .tablet\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .tablet\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .tablet\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .tablet\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .tablet\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .tablet\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .tablet\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .tablet\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .tablet\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .tablet\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .tablet\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .tablet\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .tablet\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .tablet\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .tablet\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .tablet\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .tablet\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .tablet\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .tablet\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .tablet\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .tablet\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .tablet\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .tablet\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .tablet\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .tablet\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .tablet\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .tablet\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .tablet\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .tablet\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .tablet\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .tablet\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .tablet\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .tablet\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .tablet\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .tablet\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .tablet\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .tablet\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .tablet\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .tablet\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .tablet\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .tablet\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .tablet\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .tablet\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .tablet\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .tablet\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .tablet\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .tablet\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .tablet\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .tablet\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .tablet\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .tablet\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .tablet\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .tablet\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .tablet\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .tablet\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .tablet\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .tablet\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .tablet\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .tablet\:u-mt-0{
    margin-top: 0px !important;
  }

  .tablet\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .tablet\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .tablet\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .tablet\:u-mt-4{
    margin-top: 1rem !important;
  }

  .tablet\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .tablet\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .tablet\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .tablet\:u-mt-8{
    margin-top: 2rem !important;
  }

  .tablet\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .tablet\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .tablet\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .tablet\:u-mt-12{
    margin-top: 3rem !important;
  }

  .tablet\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .tablet\:u-mt-16{
    margin-top: 4rem !important;
  }

  .tablet\:u-mt-20{
    margin-top: 5rem !important;
  }

  .tablet\:u-mt-24{
    margin-top: 6rem !important;
  }

  .tablet\:u-mt-28{
    margin-top: 7rem !important;
  }

  .tablet\:u-mt-32{
    margin-top: 8rem !important;
  }

  .tablet\:u-mt-36{
    margin-top: 9rem !important;
  }

  .tablet\:u-mt-40{
    margin-top: 10rem !important;
  }

  .tablet\:u-mt-44{
    margin-top: 11rem !important;
  }

  .tablet\:u-mt-48{
    margin-top: 12rem !important;
  }

  .tablet\:u-mt-52{
    margin-top: 13rem !important;
  }

  .tablet\:u-mt-56{
    margin-top: 14rem !important;
  }

  .tablet\:u-mt-60{
    margin-top: 15rem !important;
  }

  .tablet\:u-mt-64{
    margin-top: 16rem !important;
  }

  .tablet\:u-mt-72{
    margin-top: 18rem !important;
  }

  .tablet\:u-mt-80{
    margin-top: 20rem !important;
  }

  .tablet\:u-mt-96{
    margin-top: 24rem !important;
  }

  .tablet\:u-mt-auto{
    margin-top: auto !important;
  }

  .tablet\:u-mt-px{
    margin-top: 1px !important;
  }

  .tablet\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .tablet\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .tablet\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .tablet\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .tablet\:u--mt-0{
    margin-top: 0px !important;
  }

  .tablet\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .tablet\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .tablet\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .tablet\:u--mt-4{
    margin-top: -1rem !important;
  }

  .tablet\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .tablet\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .tablet\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .tablet\:u--mt-8{
    margin-top: -2rem !important;
  }

  .tablet\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .tablet\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .tablet\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .tablet\:u--mt-12{
    margin-top: -3rem !important;
  }

  .tablet\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .tablet\:u--mt-16{
    margin-top: -4rem !important;
  }

  .tablet\:u--mt-20{
    margin-top: -5rem !important;
  }

  .tablet\:u--mt-24{
    margin-top: -6rem !important;
  }

  .tablet\:u--mt-28{
    margin-top: -7rem !important;
  }

  .tablet\:u--mt-32{
    margin-top: -8rem !important;
  }

  .tablet\:u--mt-36{
    margin-top: -9rem !important;
  }

  .tablet\:u--mt-40{
    margin-top: -10rem !important;
  }

  .tablet\:u--mt-44{
    margin-top: -11rem !important;
  }

  .tablet\:u--mt-48{
    margin-top: -12rem !important;
  }

  .tablet\:u--mt-52{
    margin-top: -13rem !important;
  }

  .tablet\:u--mt-56{
    margin-top: -14rem !important;
  }

  .tablet\:u--mt-60{
    margin-top: -15rem !important;
  }

  .tablet\:u--mt-64{
    margin-top: -16rem !important;
  }

  .tablet\:u--mt-72{
    margin-top: -18rem !important;
  }

  .tablet\:u--mt-80{
    margin-top: -20rem !important;
  }

  .tablet\:u--mt-96{
    margin-top: -24rem !important;
  }

  .tablet\:u--mt-px{
    margin-top: -1px !important;
  }

  .tablet\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .tablet\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .tablet\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .tablet\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .tablet\:u-mr-0{
    margin-right: 0px !important;
  }

  .tablet\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .tablet\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .tablet\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .tablet\:u-mr-4{
    margin-right: 1rem !important;
  }

  .tablet\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .tablet\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .tablet\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .tablet\:u-mr-8{
    margin-right: 2rem !important;
  }

  .tablet\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .tablet\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .tablet\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .tablet\:u-mr-12{
    margin-right: 3rem !important;
  }

  .tablet\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .tablet\:u-mr-16{
    margin-right: 4rem !important;
  }

  .tablet\:u-mr-20{
    margin-right: 5rem !important;
  }

  .tablet\:u-mr-24{
    margin-right: 6rem !important;
  }

  .tablet\:u-mr-28{
    margin-right: 7rem !important;
  }

  .tablet\:u-mr-32{
    margin-right: 8rem !important;
  }

  .tablet\:u-mr-36{
    margin-right: 9rem !important;
  }

  .tablet\:u-mr-40{
    margin-right: 10rem !important;
  }

  .tablet\:u-mr-44{
    margin-right: 11rem !important;
  }

  .tablet\:u-mr-48{
    margin-right: 12rem !important;
  }

  .tablet\:u-mr-52{
    margin-right: 13rem !important;
  }

  .tablet\:u-mr-56{
    margin-right: 14rem !important;
  }

  .tablet\:u-mr-60{
    margin-right: 15rem !important;
  }

  .tablet\:u-mr-64{
    margin-right: 16rem !important;
  }

  .tablet\:u-mr-72{
    margin-right: 18rem !important;
  }

  .tablet\:u-mr-80{
    margin-right: 20rem !important;
  }

  .tablet\:u-mr-96{
    margin-right: 24rem !important;
  }

  .tablet\:u-mr-auto{
    margin-right: auto !important;
  }

  .tablet\:u-mr-px{
    margin-right: 1px !important;
  }

  .tablet\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .tablet\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .tablet\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .tablet\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .tablet\:u--mr-0{
    margin-right: 0px !important;
  }

  .tablet\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .tablet\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .tablet\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .tablet\:u--mr-4{
    margin-right: -1rem !important;
  }

  .tablet\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .tablet\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .tablet\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .tablet\:u--mr-8{
    margin-right: -2rem !important;
  }

  .tablet\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .tablet\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .tablet\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .tablet\:u--mr-12{
    margin-right: -3rem !important;
  }

  .tablet\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .tablet\:u--mr-16{
    margin-right: -4rem !important;
  }

  .tablet\:u--mr-20{
    margin-right: -5rem !important;
  }

  .tablet\:u--mr-24{
    margin-right: -6rem !important;
  }

  .tablet\:u--mr-28{
    margin-right: -7rem !important;
  }

  .tablet\:u--mr-32{
    margin-right: -8rem !important;
  }

  .tablet\:u--mr-36{
    margin-right: -9rem !important;
  }

  .tablet\:u--mr-40{
    margin-right: -10rem !important;
  }

  .tablet\:u--mr-44{
    margin-right: -11rem !important;
  }

  .tablet\:u--mr-48{
    margin-right: -12rem !important;
  }

  .tablet\:u--mr-52{
    margin-right: -13rem !important;
  }

  .tablet\:u--mr-56{
    margin-right: -14rem !important;
  }

  .tablet\:u--mr-60{
    margin-right: -15rem !important;
  }

  .tablet\:u--mr-64{
    margin-right: -16rem !important;
  }

  .tablet\:u--mr-72{
    margin-right: -18rem !important;
  }

  .tablet\:u--mr-80{
    margin-right: -20rem !important;
  }

  .tablet\:u--mr-96{
    margin-right: -24rem !important;
  }

  .tablet\:u--mr-px{
    margin-right: -1px !important;
  }

  .tablet\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .tablet\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .tablet\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .tablet\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .tablet\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .tablet\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .tablet\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .tablet\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .tablet\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .tablet\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .tablet\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .tablet\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .tablet\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .tablet\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .tablet\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .tablet\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .tablet\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .tablet\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .tablet\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .tablet\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .tablet\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .tablet\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .tablet\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .tablet\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .tablet\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .tablet\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .tablet\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .tablet\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .tablet\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .tablet\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .tablet\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .tablet\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .tablet\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .tablet\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .tablet\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .tablet\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .tablet\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .tablet\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .tablet\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .tablet\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .tablet\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .tablet\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .tablet\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .tablet\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .tablet\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .tablet\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .tablet\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .tablet\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .tablet\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .tablet\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .tablet\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .tablet\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .tablet\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .tablet\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .tablet\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .tablet\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .tablet\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .tablet\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .tablet\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .tablet\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .tablet\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .tablet\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .tablet\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .tablet\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .tablet\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .tablet\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .tablet\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .tablet\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .tablet\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .tablet\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .tablet\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .tablet\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .tablet\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .tablet\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .tablet\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .tablet\:u-ml-0{
    margin-left: 0px !important;
  }

  .tablet\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .tablet\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .tablet\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .tablet\:u-ml-4{
    margin-left: 1rem !important;
  }

  .tablet\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .tablet\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .tablet\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .tablet\:u-ml-8{
    margin-left: 2rem !important;
  }

  .tablet\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .tablet\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .tablet\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .tablet\:u-ml-12{
    margin-left: 3rem !important;
  }

  .tablet\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .tablet\:u-ml-16{
    margin-left: 4rem !important;
  }

  .tablet\:u-ml-20{
    margin-left: 5rem !important;
  }

  .tablet\:u-ml-24{
    margin-left: 6rem !important;
  }

  .tablet\:u-ml-28{
    margin-left: 7rem !important;
  }

  .tablet\:u-ml-32{
    margin-left: 8rem !important;
  }

  .tablet\:u-ml-36{
    margin-left: 9rem !important;
  }

  .tablet\:u-ml-40{
    margin-left: 10rem !important;
  }

  .tablet\:u-ml-44{
    margin-left: 11rem !important;
  }

  .tablet\:u-ml-48{
    margin-left: 12rem !important;
  }

  .tablet\:u-ml-52{
    margin-left: 13rem !important;
  }

  .tablet\:u-ml-56{
    margin-left: 14rem !important;
  }

  .tablet\:u-ml-60{
    margin-left: 15rem !important;
  }

  .tablet\:u-ml-64{
    margin-left: 16rem !important;
  }

  .tablet\:u-ml-72{
    margin-left: 18rem !important;
  }

  .tablet\:u-ml-80{
    margin-left: 20rem !important;
  }

  .tablet\:u-ml-96{
    margin-left: 24rem !important;
  }

  .tablet\:u-ml-auto{
    margin-left: auto !important;
  }

  .tablet\:u-ml-px{
    margin-left: 1px !important;
  }

  .tablet\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .tablet\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .tablet\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .tablet\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .tablet\:u--ml-0{
    margin-left: 0px !important;
  }

  .tablet\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .tablet\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .tablet\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .tablet\:u--ml-4{
    margin-left: -1rem !important;
  }

  .tablet\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .tablet\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .tablet\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .tablet\:u--ml-8{
    margin-left: -2rem !important;
  }

  .tablet\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .tablet\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .tablet\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .tablet\:u--ml-12{
    margin-left: -3rem !important;
  }

  .tablet\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .tablet\:u--ml-16{
    margin-left: -4rem !important;
  }

  .tablet\:u--ml-20{
    margin-left: -5rem !important;
  }

  .tablet\:u--ml-24{
    margin-left: -6rem !important;
  }

  .tablet\:u--ml-28{
    margin-left: -7rem !important;
  }

  .tablet\:u--ml-32{
    margin-left: -8rem !important;
  }

  .tablet\:u--ml-36{
    margin-left: -9rem !important;
  }

  .tablet\:u--ml-40{
    margin-left: -10rem !important;
  }

  .tablet\:u--ml-44{
    margin-left: -11rem !important;
  }

  .tablet\:u--ml-48{
    margin-left: -12rem !important;
  }

  .tablet\:u--ml-52{
    margin-left: -13rem !important;
  }

  .tablet\:u--ml-56{
    margin-left: -14rem !important;
  }

  .tablet\:u--ml-60{
    margin-left: -15rem !important;
  }

  .tablet\:u--ml-64{
    margin-left: -16rem !important;
  }

  .tablet\:u--ml-72{
    margin-left: -18rem !important;
  }

  .tablet\:u--ml-80{
    margin-left: -20rem !important;
  }

  .tablet\:u--ml-96{
    margin-left: -24rem !important;
  }

  .tablet\:u--ml-px{
    margin-left: -1px !important;
  }

  .tablet\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .tablet\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .tablet\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .tablet\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .tablet\:u-box-border{
    box-sizing: border-box !important;
  }

  .tablet\:u-box-content{
    box-sizing: content-box !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-inline-table{
    display: inline-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-list-item{
    display: list-item !important;
  }

  .tablet\:u-hidden{
    display: none !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-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-min-h-0{
    min-height: 0px !important;
  }

  .tablet\:u-min-h-full{
    min-height: 100% !important;
  }

  .tablet\:u-min-h-screen{
    min-height: 100vh !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: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet\:u-w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet\:u-min-w-0{
    min-width: 0px !important;
  }

  .tablet\:u-min-w-full{
    min-width: 100% !important;
  }

  .tablet\:u-min-w-min{
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .tablet\:u-min-w-max{
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .tablet\:u-max-w-0{
    max-width: 0rem !important;
  }

  .tablet\:u-max-w-none{
    max-width: none !important;
  }

  .tablet\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .tablet\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .tablet\:u-max-w-md{
    max-width: 28rem !important;
  }

  .tablet\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .tablet\:u-max-w-xl{
    max-width: 36rem !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-7xl{
    max-width: 80rem !important;
  }

  .tablet\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet\:u-max-w-min{
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .tablet\:u-max-w-max{
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .tablet\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .tablet\:u-max-w-screen-mobile{
    max-width: 375px !important;
  }

  .tablet\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .tablet\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .tablet\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .tablet\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .tablet\:u-max-w-screen-desktop{
    max-width: 1280px !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: 1280px !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-none{
    flex: none !important;
  }

  .tablet\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .tablet\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .tablet\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .tablet\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .tablet\:u-table-auto{
    table-layout: auto !important;
  }

  .tablet\:u-table-fixed{
    table-layout: fixed !important;
  }

  .tablet\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .tablet\:u-border-separate{
    border-collapse: separate !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-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-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-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-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-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\: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\: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\: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-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-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-animate-none{
    animation: none !important;
  }

  .tablet\:u-animate-spin{
    animation: u-spin 1s linear infinite !important;
  }

  .tablet\:u-animate-ping{
    animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet\:u-animate-pulse{
    animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet\:u-animate-bounce{
    animation: u-bounce 1s infinite !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-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .tablet\:u-select-text{
    -webkit-user-select: text !important;
       -moz-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;
            user-select: auto !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-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-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .tablet\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .tablet\:u-auto-cols-min{
    grid-auto-columns: min-content !important;
  }

  .tablet\:u-auto-cols-max{
    grid-auto-columns: max-content !important;
  }

  .tablet\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !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-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .tablet\:u-auto-rows-min{
    grid-auto-rows: min-content !important;
  }

  .tablet\:u-auto-rows-max{
    grid-auto-rows: max-content !important;
  }

  .tablet\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !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-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-0 > :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(250, 250, 250, 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(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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 > :not([hidden]) ~ :not([hidden]){
    border-color: var(--primary) !important;
  }

  .tablet\:u-divide-secundary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--secundary) !important;
  }

  .tablet\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !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-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-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-self-baseline{
    align-self: baseline !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-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{
    overscroll-behavior: auto !important;
  }

  .tablet\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .tablet\:u-overscroll-none{
    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-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-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-rounded-none{
    border-radius: 0px !important;
  }

  .tablet\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .tablet\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .tablet\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .tablet\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .tablet\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-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-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .tablet\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .tablet\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .tablet\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .tablet\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .tablet\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .tablet\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .tablet\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !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: 0px !important;
  }

  .tablet\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .tablet\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .tablet\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .tablet\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .tablet\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .tablet\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .tablet\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .tablet\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .tablet\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .tablet\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !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-t-2{
    border-top-width: 2px !important;
  }

  .tablet\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .tablet\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .tablet\:u-border-t{
    border-top-width: 1px !important;
  }

  .tablet\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .tablet\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .tablet\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .tablet\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .tablet\:u-border-r{
    border-right-width: 1px !important;
  }

  .tablet\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .tablet\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .tablet\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .tablet\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .tablet\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .tablet\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .tablet\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .tablet\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .tablet\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .tablet\:u-border-l{
    border-left-width: 1px !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-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .tablet\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .tablet\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .tablet\:u-border-transparent{
    border-color: transparent !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-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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet\:group-hover\:u-border-transparent{
    border-color: transparent !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-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus-within{
    border-color: var(--primary) !important;
  }

  .tablet\:focus-within\:u-border-secundary:focus-within{
    border-color: var(--secundary) !important;
  }

  .tablet\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !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-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:hover{
    border-color: var(--primary) !important;
  }

  .tablet\:hover\:u-border-secundary:hover{
    border-color: var(--secundary) !important;
  }

  .tablet\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:hover\:u-border-transparent:hover{
    border-color: transparent !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-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus{
    border-color: var(--primary) !important;
  }

  .tablet\:focus\:u-border-secundary:focus{
    border-color: var(--secundary) !important;
  }

  .tablet\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus\:u-border-transparent:focus{
    border-color: transparent !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-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .tablet\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .tablet\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .tablet\:u-bg-transparent{
    background-color: transparent !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-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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-transparent{
    background-color: transparent !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-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus-within{
    background-color: var(--primary) !important;
  }

  .tablet\:focus-within\:u-bg-secundary:focus-within{
    background-color: var(--secundary) !important;
  }

  .tablet\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !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-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:hover{
    background-color: var(--primary) !important;
  }

  .tablet\:hover\:u-bg-secundary:hover{
    background-color: var(--secundary) !important;
  }

  .tablet\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:hover\:u-bg-transparent:hover{
    background-color: transparent !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-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus{
    background-color: var(--primary) !important;
  }

  .tablet\:focus\:u-bg-secundary:focus{
    background-color: var(--secundary) !important;
  }

  .tablet\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus\:u-bg-transparent:focus{
    background-color: transparent !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-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-white{
    --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-black{
    --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-faded{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:u-from-neutral-0{
    --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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:u-from-neutral-30{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet\:u-from-neutral-40{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet\:u-from-neutral-45{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:u-from-neutral-50{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-from-secundary{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-from-success{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:hover\:u-from-white: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-black: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-faded:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary:hover{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-from-success:hover{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:focus\:u-from-white: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-black: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-faded:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary:focus{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-from-success:focus{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:u-via-neutral-0{
    --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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-via-secundary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-to-white{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:u-to-black{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:u-to-faded{
    --tw-gradient-to: #666666 !important;
  }

  .tablet\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:u-to-neutral-10{
    --tw-gradient-to: #FAFAFA !important;
  }

  .tablet\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet\:u-to-neutral-20{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet\:u-to-neutral-30{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet\:u-to-neutral-40{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet\:u-to-neutral-45{
    --tw-gradient-to: #666666 !important;
  }

  .tablet\:u-to-neutral-50{
    --tw-gradient-to: #262626 !important;
  }

  .tablet\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:u-to-primary{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet\:u-to-secundary{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet\:u-to-success{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .tablet\:hover\:u-to-white:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:hover\:u-to-black:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:hover\:u-to-faded:hover{
    --tw-gradient-to: #666666 !important;
  }

  .tablet\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FAFAFA !important;
  }

  .tablet\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #666666 !important;
  }

  .tablet\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #262626 !important;
  }

  .tablet\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:hover\:u-to-primary:hover{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet\:hover\:u-to-secundary:hover{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet\:hover\:u-to-success:hover{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .tablet\:focus\:u-to-white:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:focus\:u-to-black:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:focus\:u-to-faded:focus{
    --tw-gradient-to: #666666 !important;
  }

  .tablet\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FAFAFA !important;
  }

  .tablet\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #666666 !important;
  }

  .tablet\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #262626 !important;
  }

  .tablet\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:focus\:u-to-primary:focus{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet\:focus\:u-to-secundary:focus{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet\:focus\:u-to-success:focus{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .tablet\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .tablet\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !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-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-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-origin-border{
    background-origin: border-box !important;
  }

  .tablet\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .tablet\:u-bg-origin-content{
    background-origin: content-box !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-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-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-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .tablet\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .tablet\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .tablet\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .tablet\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tablet\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .tablet\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .tablet\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .tablet\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .tablet\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .tablet\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .tablet\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .tablet\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .tablet\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .tablet\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .tablet\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .tablet\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .tablet\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .tablet\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .tablet\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .tablet\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .tablet\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .tablet\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .tablet\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .tablet\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .tablet\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .tablet\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .tablet\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .tablet\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .tablet\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .tablet\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .tablet\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .tablet\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .tablet\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .tablet\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .tablet\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .tablet\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .tablet\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .tablet\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .tablet\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tablet\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .tablet\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tablet\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .tablet\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .tablet\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .tablet\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .tablet\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .tablet\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .tablet\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .tablet\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .tablet\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .tablet\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .tablet\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .tablet\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .tablet\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .tablet\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .tablet\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .tablet\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .tablet\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .tablet\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .tablet\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .tablet\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .tablet\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .tablet\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .tablet\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .tablet\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .tablet\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .tablet\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .tablet\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .tablet\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .tablet\:u-pt-0{
    padding-top: 0px !important;
  }

  .tablet\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .tablet\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .tablet\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .tablet\:u-pt-4{
    padding-top: 1rem !important;
  }

  .tablet\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .tablet\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .tablet\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .tablet\:u-pt-8{
    padding-top: 2rem !important;
  }

  .tablet\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .tablet\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .tablet\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .tablet\:u-pt-12{
    padding-top: 3rem !important;
  }

  .tablet\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .tablet\:u-pt-16{
    padding-top: 4rem !important;
  }

  .tablet\:u-pt-20{
    padding-top: 5rem !important;
  }

  .tablet\:u-pt-24{
    padding-top: 6rem !important;
  }

  .tablet\:u-pt-28{
    padding-top: 7rem !important;
  }

  .tablet\:u-pt-32{
    padding-top: 8rem !important;
  }

  .tablet\:u-pt-36{
    padding-top: 9rem !important;
  }

  .tablet\:u-pt-40{
    padding-top: 10rem !important;
  }

  .tablet\:u-pt-44{
    padding-top: 11rem !important;
  }

  .tablet\:u-pt-48{
    padding-top: 12rem !important;
  }

  .tablet\:u-pt-52{
    padding-top: 13rem !important;
  }

  .tablet\:u-pt-56{
    padding-top: 14rem !important;
  }

  .tablet\:u-pt-60{
    padding-top: 15rem !important;
  }

  .tablet\:u-pt-64{
    padding-top: 16rem !important;
  }

  .tablet\:u-pt-72{
    padding-top: 18rem !important;
  }

  .tablet\:u-pt-80{
    padding-top: 20rem !important;
  }

  .tablet\:u-pt-96{
    padding-top: 24rem !important;
  }

  .tablet\:u-pt-px{
    padding-top: 1px !important;
  }

  .tablet\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .tablet\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .tablet\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .tablet\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .tablet\:u-pr-0{
    padding-right: 0px !important;
  }

  .tablet\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .tablet\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .tablet\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .tablet\:u-pr-4{
    padding-right: 1rem !important;
  }

  .tablet\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .tablet\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .tablet\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .tablet\:u-pr-8{
    padding-right: 2rem !important;
  }

  .tablet\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .tablet\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .tablet\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .tablet\:u-pr-12{
    padding-right: 3rem !important;
  }

  .tablet\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .tablet\:u-pr-16{
    padding-right: 4rem !important;
  }

  .tablet\:u-pr-20{
    padding-right: 5rem !important;
  }

  .tablet\:u-pr-24{
    padding-right: 6rem !important;
  }

  .tablet\:u-pr-28{
    padding-right: 7rem !important;
  }

  .tablet\:u-pr-32{
    padding-right: 8rem !important;
  }

  .tablet\:u-pr-36{
    padding-right: 9rem !important;
  }

  .tablet\:u-pr-40{
    padding-right: 10rem !important;
  }

  .tablet\:u-pr-44{
    padding-right: 11rem !important;
  }

  .tablet\:u-pr-48{
    padding-right: 12rem !important;
  }

  .tablet\:u-pr-52{
    padding-right: 13rem !important;
  }

  .tablet\:u-pr-56{
    padding-right: 14rem !important;
  }

  .tablet\:u-pr-60{
    padding-right: 15rem !important;
  }

  .tablet\:u-pr-64{
    padding-right: 16rem !important;
  }

  .tablet\:u-pr-72{
    padding-right: 18rem !important;
  }

  .tablet\:u-pr-80{
    padding-right: 20rem !important;
  }

  .tablet\:u-pr-96{
    padding-right: 24rem !important;
  }

  .tablet\:u-pr-px{
    padding-right: 1px !important;
  }

  .tablet\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .tablet\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .tablet\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .tablet\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .tablet\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .tablet\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .tablet\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .tablet\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .tablet\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .tablet\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .tablet\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .tablet\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .tablet\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .tablet\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .tablet\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .tablet\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .tablet\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .tablet\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .tablet\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .tablet\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .tablet\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .tablet\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .tablet\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .tablet\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .tablet\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .tablet\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .tablet\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .tablet\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .tablet\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .tablet\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .tablet\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .tablet\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .tablet\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .tablet\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .tablet\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .tablet\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .tablet\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .tablet\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .tablet\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .tablet\:u-pl-0{
    padding-left: 0px !important;
  }

  .tablet\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .tablet\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .tablet\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .tablet\:u-pl-4{
    padding-left: 1rem !important;
  }

  .tablet\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .tablet\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .tablet\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .tablet\:u-pl-8{
    padding-left: 2rem !important;
  }

  .tablet\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .tablet\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .tablet\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .tablet\:u-pl-12{
    padding-left: 3rem !important;
  }

  .tablet\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .tablet\:u-pl-16{
    padding-left: 4rem !important;
  }

  .tablet\:u-pl-20{
    padding-left: 5rem !important;
  }

  .tablet\:u-pl-24{
    padding-left: 6rem !important;
  }

  .tablet\:u-pl-28{
    padding-left: 7rem !important;
  }

  .tablet\:u-pl-32{
    padding-left: 8rem !important;
  }

  .tablet\:u-pl-36{
    padding-left: 9rem !important;
  }

  .tablet\:u-pl-40{
    padding-left: 10rem !important;
  }

  .tablet\:u-pl-44{
    padding-left: 11rem !important;
  }

  .tablet\:u-pl-48{
    padding-left: 12rem !important;
  }

  .tablet\:u-pl-52{
    padding-left: 13rem !important;
  }

  .tablet\:u-pl-56{
    padding-left: 14rem !important;
  }

  .tablet\:u-pl-60{
    padding-left: 15rem !important;
  }

  .tablet\:u-pl-64{
    padding-left: 16rem !important;
  }

  .tablet\:u-pl-72{
    padding-left: 18rem !important;
  }

  .tablet\:u-pl-80{
    padding-left: 20rem !important;
  }

  .tablet\:u-pl-96{
    padding-left: 24rem !important;
  }

  .tablet\:u-pl-px{
    padding-left: 1px !important;
  }

  .tablet\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .tablet\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .tablet\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .tablet\:u-pl-3\.5{
    padding-left: 0.875rem !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-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-font-body{
    font-family: Public Sans, sans-serif !important;
  }

  .tablet\:u-font-heading{
    font-family: Public Sans, sans-serif !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.2rem !important;
  }

  .tablet\:u-text-3xl{
    font-size: 1.3rem !important;
  }

  .tablet\:u-text-4xl{
    font-size: 1.4rem !important;
  }

  .tablet\:u-text-5xl{
    font-size: 2rem !important;
  }

  .tablet\:u-text-6xl{
    font-size: 3rem !important;
  }

  .tablet\:u-text-8xl{
    font-size: 4rem !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-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-italic{
    font-style: italic !important;
  }

  .tablet\:u-not-italic{
    font-style: normal !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-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.5 !important;
  }

  .tablet\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .tablet\:u-leading-loose{
    line-height: 2 !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-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .tablet\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .tablet\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-transparent{
    color: transparent !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet\:group-hover\:u-text-transparent{
    color: transparent !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-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus-within{
    color: var(--primary) !important;
  }

  .tablet\:focus-within\:u-text-secundary:focus-within{
    color: var(--secundary) !important;
  }

  .tablet\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus-within\:u-text-transparent:focus-within{
    color: transparent !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-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:hover{
    color: var(--primary) !important;
  }

  .tablet\:hover\:u-text-secundary:hover{
    color: var(--secundary) !important;
  }

  .tablet\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:hover\:u-text-transparent:hover{
    color: transparent !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-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus{
    color: var(--primary) !important;
  }

  .tablet\:focus\:u-text-secundary:focus{
    color: var(--secundary) !important;
  }

  .tablet\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus\:u-text-transparent:focus{
    color: transparent !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-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-placeholder-white::-moz-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-black::-moz-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-0::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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary::-moz-placeholder{
    color: var(--primary) !important;
  }

  .tablet\:u-placeholder-primary::placeholder{
    color: var(--primary) !important;
  }

  .tablet\:u-placeholder-secundary::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .tablet\:u-placeholder-secundary::placeholder{
    color: var(--secundary) !important;
  }

  .tablet\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .tablet\:u-placeholder-transparent::placeholder{
    color: transparent !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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-0: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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary:focus::-moz-placeholder{
    color: var(--primary) !important;
  }

  .tablet\:focus\:u-placeholder-primary:focus::placeholder{
    color: var(--primary) !important;
  }

  .tablet\:focus\:u-placeholder-secundary:focus::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .tablet\:focus\:u-placeholder-secundary:focus::placeholder{
    color: var(--secundary) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .tablet\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .tablet\:u-placeholder-opacity-0::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:u-placeholder-opacity-100::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 1 !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-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .tablet\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .tablet\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .tablet\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .tablet\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .tablet\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .tablet\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .tablet\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .tablet\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .tablet\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .tablet\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .tablet\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .tablet\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .tablet\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .tablet\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .tablet\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .tablet\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .tablet\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .tablet\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .tablet\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .tablet\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .tablet\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .tablet\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .tablet\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .tablet\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .tablet\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .tablet\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .tablet\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .tablet\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .tablet\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .tablet\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .tablet\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !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;
  }

  .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;
  }

  .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\: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\: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\: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-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\: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\: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\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .tablet\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .tablet\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet\:u-ring-secundary{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:u-ring-transparent{
    --tw-ring-color: transparent !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-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-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus-within{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet\:focus-within\:u-ring-secundary:focus-within{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !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-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet\:focus\:u-ring-secundary:focus{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !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-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-offset-white{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:u-ring-offset-black{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:u-ring-offset-faded{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FAFAFA !important;
  }

  .tablet\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:u-ring-offset-primary{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet\:u-ring-offset-secundary{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet\:u-ring-offset-success{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary:focus-within{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary:focus-within{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:focus\:u-ring-offset-primary:focus{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet\:focus\:u-ring-offset-secundary:focus{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet\:u-filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
  }

  .tablet\:u-filter-none{
    filter: none !important;
  }

  .tablet\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .tablet\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .tablet\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .tablet\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .tablet\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .tablet\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .tablet\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .tablet\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .tablet\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .tablet\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .tablet\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .tablet\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .tablet\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .tablet\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .tablet\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .tablet\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .tablet\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .tablet\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .tablet\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .tablet\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .tablet\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .tablet\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .tablet\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .tablet\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .tablet\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .tablet\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .tablet\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .tablet\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .tablet\:u-drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
  }

  .tablet\:u-drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
  }

  .tablet\:u-drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
  }

  .tablet\:u-drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
  }

  .tablet\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .tablet\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .tablet\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .tablet\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .tablet\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .tablet\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .tablet\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .tablet\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .tablet\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .tablet\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .tablet\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .tablet\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .tablet\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .tablet\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .tablet\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .tablet\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .tablet\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .tablet\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .tablet\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .tablet\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .tablet\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .tablet\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .tablet\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .tablet\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .tablet\:u-backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
  }

  .tablet\:u-backdrop-filter-none{
    backdrop-filter: none !important;
  }

  .tablet\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .tablet\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .tablet\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .tablet\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .tablet\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .tablet\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .tablet\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .tablet\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .tablet\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .tablet\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .tablet\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .tablet\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .tablet\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .tablet\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .tablet\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .tablet\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .tablet\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .tablet\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .tablet\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .tablet\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .tablet\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .tablet\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .tablet\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .tablet\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .tablet\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .tablet\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .tablet\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .tablet\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .tablet\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .tablet\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .tablet\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .tablet\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .tablet\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .tablet\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .tablet\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .tablet\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .tablet\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .tablet\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .tablet\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .tablet\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .tablet\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .tablet\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .tablet\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .tablet\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .tablet\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .tablet\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .tablet\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .tablet\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .tablet\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .tablet\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .tablet\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .tablet\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .tablet\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .tablet\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .tablet\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .tablet\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .tablet\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .tablet\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .tablet\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .tablet\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .tablet\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .tablet\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .tablet\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .tablet\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !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, filter, backdrop-filter !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-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-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-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;
  }
}

@media (min-width: 900px){
  .tablet-large\:u-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 375px){
    .tablet-large\:u-container{
      max-width: 375px;
    }
  }

  @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: 1280px){
    .tablet-large\:u-container{
      max-width: 1280px;
    }
  }

  .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-pointer-events-none{
    pointer-events: none !important;
  }

  .tablet-large\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .tablet-large\:u-visible{
    visibility: visible !important;
  }

  .tablet-large\:u-invisible{
    visibility: hidden !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-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .tablet-large\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .tablet-large\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .tablet-large\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .tablet-large\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .tablet-large\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .tablet-large\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .tablet-large\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .tablet-large\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .tablet-large\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .tablet-large\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .tablet-large\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .tablet-large\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .tablet-large\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .tablet-large\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .tablet-large\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .tablet-large\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .tablet-large\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .tablet-large\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .tablet-large\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .tablet-large\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .tablet-large\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .tablet-large\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .tablet-large\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .tablet-large\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .tablet-large\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .tablet-large\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .tablet-large\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .tablet-large\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .tablet-large\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .tablet-large\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .tablet-large\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .tablet-large\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .tablet-large\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .tablet-large\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .tablet-large\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .tablet-large\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .tablet-large\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .tablet-large\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .tablet-large\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .tablet-large\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .tablet-large\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .tablet-large\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .tablet-large\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .tablet-large\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .tablet-large\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .tablet-large\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .tablet-large\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .tablet-large\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .tablet-large\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .tablet-large\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .tablet-large\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .tablet-large\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .tablet-large\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .tablet-large\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .tablet-large\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .tablet-large\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .tablet-large\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .tablet-large\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .tablet-large\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .tablet-large\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .tablet-large\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .tablet-large\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .tablet-large\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .tablet-large\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .tablet-large\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .tablet-large\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .tablet-large\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .tablet-large\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .tablet-large\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .tablet-large\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .tablet-large\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .tablet-large\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .tablet-large\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .tablet-large\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .tablet-large\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .tablet-large\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .tablet-large\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .tablet-large\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .tablet-large\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .tablet-large\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .tablet-large\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .tablet-large\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .tablet-large\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .tablet-large\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .tablet-large\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-large\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .tablet-large\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .tablet-large\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .tablet-large\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .tablet-large\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .tablet-large\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .tablet-large\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .tablet-large\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .tablet-large\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .tablet-large\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .tablet-large\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .tablet-large\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .tablet-large\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .tablet-large\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .tablet-large\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .tablet-large\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .tablet-large\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .tablet-large\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .tablet-large\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .tablet-large\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .tablet-large\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .tablet-large\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .tablet-large\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .tablet-large\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .tablet-large\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .tablet-large\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .tablet-large\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .tablet-large\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .tablet-large\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .tablet-large\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .tablet-large\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .tablet-large\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .tablet-large\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .tablet-large\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .tablet-large\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .tablet-large\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-large\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .tablet-large\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .tablet-large\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .tablet-large\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .tablet-large\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .tablet-large\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .tablet-large\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .tablet-large\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .tablet-large\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .tablet-large\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .tablet-large\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .tablet-large\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .tablet-large\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .tablet-large\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .tablet-large\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .tablet-large\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .tablet-large\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .tablet-large\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .tablet-large\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .tablet-large\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .tablet-large\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .tablet-large\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .tablet-large\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .tablet-large\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .tablet-large\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .tablet-large\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .tablet-large\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .tablet-large\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .tablet-large\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .tablet-large\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .tablet-large\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .tablet-large\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .tablet-large\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .tablet-large\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .tablet-large\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-large\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .tablet-large\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .tablet-large\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .tablet-large\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-large\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .tablet-large\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .tablet-large\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-large\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .tablet-large\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .tablet-large\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .tablet-large\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-large\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .tablet-large\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .tablet-large\:u-top-0{
    top: 0px !important;
  }

  .tablet-large\:u-top-1{
    top: 0.25rem !important;
  }

  .tablet-large\:u-top-2{
    top: 0.5rem !important;
  }

  .tablet-large\:u-top-3{
    top: 0.75rem !important;
  }

  .tablet-large\:u-top-4{
    top: 1rem !important;
  }

  .tablet-large\:u-top-5{
    top: 1.25rem !important;
  }

  .tablet-large\:u-top-6{
    top: 1.5rem !important;
  }

  .tablet-large\:u-top-7{
    top: 1.75rem !important;
  }

  .tablet-large\:u-top-8{
    top: 2rem !important;
  }

  .tablet-large\:u-top-9{
    top: 2.25rem !important;
  }

  .tablet-large\:u-top-10{
    top: 2.5rem !important;
  }

  .tablet-large\:u-top-11{
    top: 2.75rem !important;
  }

  .tablet-large\:u-top-12{
    top: 3rem !important;
  }

  .tablet-large\:u-top-14{
    top: 3.5rem !important;
  }

  .tablet-large\:u-top-16{
    top: 4rem !important;
  }

  .tablet-large\:u-top-20{
    top: 5rem !important;
  }

  .tablet-large\:u-top-24{
    top: 6rem !important;
  }

  .tablet-large\:u-top-28{
    top: 7rem !important;
  }

  .tablet-large\:u-top-32{
    top: 8rem !important;
  }

  .tablet-large\:u-top-36{
    top: 9rem !important;
  }

  .tablet-large\:u-top-40{
    top: 10rem !important;
  }

  .tablet-large\:u-top-44{
    top: 11rem !important;
  }

  .tablet-large\:u-top-48{
    top: 12rem !important;
  }

  .tablet-large\:u-top-52{
    top: 13rem !important;
  }

  .tablet-large\:u-top-56{
    top: 14rem !important;
  }

  .tablet-large\:u-top-60{
    top: 15rem !important;
  }

  .tablet-large\:u-top-64{
    top: 16rem !important;
  }

  .tablet-large\:u-top-72{
    top: 18rem !important;
  }

  .tablet-large\:u-top-80{
    top: 20rem !important;
  }

  .tablet-large\:u-top-96{
    top: 24rem !important;
  }

  .tablet-large\:u-top-auto{
    top: auto !important;
  }

  .tablet-large\:u-top-px{
    top: 1px !important;
  }

  .tablet-large\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .tablet-large\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .tablet-large\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .tablet-large\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .tablet-large\:u--top-0{
    top: 0px !important;
  }

  .tablet-large\:u--top-1{
    top: -0.25rem !important;
  }

  .tablet-large\:u--top-2{
    top: -0.5rem !important;
  }

  .tablet-large\:u--top-3{
    top: -0.75rem !important;
  }

  .tablet-large\:u--top-4{
    top: -1rem !important;
  }

  .tablet-large\:u--top-5{
    top: -1.25rem !important;
  }

  .tablet-large\:u--top-6{
    top: -1.5rem !important;
  }

  .tablet-large\:u--top-7{
    top: -1.75rem !important;
  }

  .tablet-large\:u--top-8{
    top: -2rem !important;
  }

  .tablet-large\:u--top-9{
    top: -2.25rem !important;
  }

  .tablet-large\:u--top-10{
    top: -2.5rem !important;
  }

  .tablet-large\:u--top-11{
    top: -2.75rem !important;
  }

  .tablet-large\:u--top-12{
    top: -3rem !important;
  }

  .tablet-large\:u--top-14{
    top: -3.5rem !important;
  }

  .tablet-large\:u--top-16{
    top: -4rem !important;
  }

  .tablet-large\:u--top-20{
    top: -5rem !important;
  }

  .tablet-large\:u--top-24{
    top: -6rem !important;
  }

  .tablet-large\:u--top-28{
    top: -7rem !important;
  }

  .tablet-large\:u--top-32{
    top: -8rem !important;
  }

  .tablet-large\:u--top-36{
    top: -9rem !important;
  }

  .tablet-large\:u--top-40{
    top: -10rem !important;
  }

  .tablet-large\:u--top-44{
    top: -11rem !important;
  }

  .tablet-large\:u--top-48{
    top: -12rem !important;
  }

  .tablet-large\:u--top-52{
    top: -13rem !important;
  }

  .tablet-large\:u--top-56{
    top: -14rem !important;
  }

  .tablet-large\:u--top-60{
    top: -15rem !important;
  }

  .tablet-large\:u--top-64{
    top: -16rem !important;
  }

  .tablet-large\:u--top-72{
    top: -18rem !important;
  }

  .tablet-large\:u--top-80{
    top: -20rem !important;
  }

  .tablet-large\:u--top-96{
    top: -24rem !important;
  }

  .tablet-large\:u--top-px{
    top: -1px !important;
  }

  .tablet-large\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .tablet-large\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .tablet-large\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .tablet-large\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .tablet-large\:u-top-1\/2{
    top: 50% !important;
  }

  .tablet-large\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .tablet-large\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .tablet-large\:u-top-1\/4{
    top: 25% !important;
  }

  .tablet-large\:u-top-2\/4{
    top: 50% !important;
  }

  .tablet-large\:u-top-3\/4{
    top: 75% !important;
  }

  .tablet-large\:u-top-full{
    top: 100% !important;
  }

  .tablet-large\:u--top-1\/2{
    top: -50% !important;
  }

  .tablet-large\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .tablet-large\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .tablet-large\:u--top-1\/4{
    top: -25% !important;
  }

  .tablet-large\:u--top-2\/4{
    top: -50% !important;
  }

  .tablet-large\:u--top-3\/4{
    top: -75% !important;
  }

  .tablet-large\:u--top-full{
    top: -100% !important;
  }

  .tablet-large\:u-right-0{
    right: 0px !important;
  }

  .tablet-large\:u-right-1{
    right: 0.25rem !important;
  }

  .tablet-large\:u-right-2{
    right: 0.5rem !important;
  }

  .tablet-large\:u-right-3{
    right: 0.75rem !important;
  }

  .tablet-large\:u-right-4{
    right: 1rem !important;
  }

  .tablet-large\:u-right-5{
    right: 1.25rem !important;
  }

  .tablet-large\:u-right-6{
    right: 1.5rem !important;
  }

  .tablet-large\:u-right-7{
    right: 1.75rem !important;
  }

  .tablet-large\:u-right-8{
    right: 2rem !important;
  }

  .tablet-large\:u-right-9{
    right: 2.25rem !important;
  }

  .tablet-large\:u-right-10{
    right: 2.5rem !important;
  }

  .tablet-large\:u-right-11{
    right: 2.75rem !important;
  }

  .tablet-large\:u-right-12{
    right: 3rem !important;
  }

  .tablet-large\:u-right-14{
    right: 3.5rem !important;
  }

  .tablet-large\:u-right-16{
    right: 4rem !important;
  }

  .tablet-large\:u-right-20{
    right: 5rem !important;
  }

  .tablet-large\:u-right-24{
    right: 6rem !important;
  }

  .tablet-large\:u-right-28{
    right: 7rem !important;
  }

  .tablet-large\:u-right-32{
    right: 8rem !important;
  }

  .tablet-large\:u-right-36{
    right: 9rem !important;
  }

  .tablet-large\:u-right-40{
    right: 10rem !important;
  }

  .tablet-large\:u-right-44{
    right: 11rem !important;
  }

  .tablet-large\:u-right-48{
    right: 12rem !important;
  }

  .tablet-large\:u-right-52{
    right: 13rem !important;
  }

  .tablet-large\:u-right-56{
    right: 14rem !important;
  }

  .tablet-large\:u-right-60{
    right: 15rem !important;
  }

  .tablet-large\:u-right-64{
    right: 16rem !important;
  }

  .tablet-large\:u-right-72{
    right: 18rem !important;
  }

  .tablet-large\:u-right-80{
    right: 20rem !important;
  }

  .tablet-large\:u-right-96{
    right: 24rem !important;
  }

  .tablet-large\:u-right-auto{
    right: auto !important;
  }

  .tablet-large\:u-right-px{
    right: 1px !important;
  }

  .tablet-large\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .tablet-large\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .tablet-large\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .tablet-large\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .tablet-large\:u--right-0{
    right: 0px !important;
  }

  .tablet-large\:u--right-1{
    right: -0.25rem !important;
  }

  .tablet-large\:u--right-2{
    right: -0.5rem !important;
  }

  .tablet-large\:u--right-3{
    right: -0.75rem !important;
  }

  .tablet-large\:u--right-4{
    right: -1rem !important;
  }

  .tablet-large\:u--right-5{
    right: -1.25rem !important;
  }

  .tablet-large\:u--right-6{
    right: -1.5rem !important;
  }

  .tablet-large\:u--right-7{
    right: -1.75rem !important;
  }

  .tablet-large\:u--right-8{
    right: -2rem !important;
  }

  .tablet-large\:u--right-9{
    right: -2.25rem !important;
  }

  .tablet-large\:u--right-10{
    right: -2.5rem !important;
  }

  .tablet-large\:u--right-11{
    right: -2.75rem !important;
  }

  .tablet-large\:u--right-12{
    right: -3rem !important;
  }

  .tablet-large\:u--right-14{
    right: -3.5rem !important;
  }

  .tablet-large\:u--right-16{
    right: -4rem !important;
  }

  .tablet-large\:u--right-20{
    right: -5rem !important;
  }

  .tablet-large\:u--right-24{
    right: -6rem !important;
  }

  .tablet-large\:u--right-28{
    right: -7rem !important;
  }

  .tablet-large\:u--right-32{
    right: -8rem !important;
  }

  .tablet-large\:u--right-36{
    right: -9rem !important;
  }

  .tablet-large\:u--right-40{
    right: -10rem !important;
  }

  .tablet-large\:u--right-44{
    right: -11rem !important;
  }

  .tablet-large\:u--right-48{
    right: -12rem !important;
  }

  .tablet-large\:u--right-52{
    right: -13rem !important;
  }

  .tablet-large\:u--right-56{
    right: -14rem !important;
  }

  .tablet-large\:u--right-60{
    right: -15rem !important;
  }

  .tablet-large\:u--right-64{
    right: -16rem !important;
  }

  .tablet-large\:u--right-72{
    right: -18rem !important;
  }

  .tablet-large\:u--right-80{
    right: -20rem !important;
  }

  .tablet-large\:u--right-96{
    right: -24rem !important;
  }

  .tablet-large\:u--right-px{
    right: -1px !important;
  }

  .tablet-large\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .tablet-large\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .tablet-large\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .tablet-large\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .tablet-large\:u-right-1\/2{
    right: 50% !important;
  }

  .tablet-large\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .tablet-large\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .tablet-large\:u-right-1\/4{
    right: 25% !important;
  }

  .tablet-large\:u-right-2\/4{
    right: 50% !important;
  }

  .tablet-large\:u-right-3\/4{
    right: 75% !important;
  }

  .tablet-large\:u-right-full{
    right: 100% !important;
  }

  .tablet-large\:u--right-1\/2{
    right: -50% !important;
  }

  .tablet-large\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .tablet-large\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .tablet-large\:u--right-1\/4{
    right: -25% !important;
  }

  .tablet-large\:u--right-2\/4{
    right: -50% !important;
  }

  .tablet-large\:u--right-3\/4{
    right: -75% !important;
  }

  .tablet-large\:u--right-full{
    right: -100% !important;
  }

  .tablet-large\:u-bottom-0{
    bottom: 0px !important;
  }

  .tablet-large\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .tablet-large\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .tablet-large\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .tablet-large\:u-bottom-4{
    bottom: 1rem !important;
  }

  .tablet-large\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .tablet-large\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .tablet-large\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .tablet-large\:u-bottom-8{
    bottom: 2rem !important;
  }

  .tablet-large\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .tablet-large\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .tablet-large\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .tablet-large\:u-bottom-12{
    bottom: 3rem !important;
  }

  .tablet-large\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .tablet-large\:u-bottom-16{
    bottom: 4rem !important;
  }

  .tablet-large\:u-bottom-20{
    bottom: 5rem !important;
  }

  .tablet-large\:u-bottom-24{
    bottom: 6rem !important;
  }

  .tablet-large\:u-bottom-28{
    bottom: 7rem !important;
  }

  .tablet-large\:u-bottom-32{
    bottom: 8rem !important;
  }

  .tablet-large\:u-bottom-36{
    bottom: 9rem !important;
  }

  .tablet-large\:u-bottom-40{
    bottom: 10rem !important;
  }

  .tablet-large\:u-bottom-44{
    bottom: 11rem !important;
  }

  .tablet-large\:u-bottom-48{
    bottom: 12rem !important;
  }

  .tablet-large\:u-bottom-52{
    bottom: 13rem !important;
  }

  .tablet-large\:u-bottom-56{
    bottom: 14rem !important;
  }

  .tablet-large\:u-bottom-60{
    bottom: 15rem !important;
  }

  .tablet-large\:u-bottom-64{
    bottom: 16rem !important;
  }

  .tablet-large\:u-bottom-72{
    bottom: 18rem !important;
  }

  .tablet-large\:u-bottom-80{
    bottom: 20rem !important;
  }

  .tablet-large\:u-bottom-96{
    bottom: 24rem !important;
  }

  .tablet-large\:u-bottom-auto{
    bottom: auto !important;
  }

  .tablet-large\:u-bottom-px{
    bottom: 1px !important;
  }

  .tablet-large\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .tablet-large\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .tablet-large\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .tablet-large\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .tablet-large\:u--bottom-0{
    bottom: 0px !important;
  }

  .tablet-large\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .tablet-large\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .tablet-large\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .tablet-large\:u--bottom-4{
    bottom: -1rem !important;
  }

  .tablet-large\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .tablet-large\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .tablet-large\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .tablet-large\:u--bottom-8{
    bottom: -2rem !important;
  }

  .tablet-large\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .tablet-large\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .tablet-large\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .tablet-large\:u--bottom-12{
    bottom: -3rem !important;
  }

  .tablet-large\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .tablet-large\:u--bottom-16{
    bottom: -4rem !important;
  }

  .tablet-large\:u--bottom-20{
    bottom: -5rem !important;
  }

  .tablet-large\:u--bottom-24{
    bottom: -6rem !important;
  }

  .tablet-large\:u--bottom-28{
    bottom: -7rem !important;
  }

  .tablet-large\:u--bottom-32{
    bottom: -8rem !important;
  }

  .tablet-large\:u--bottom-36{
    bottom: -9rem !important;
  }

  .tablet-large\:u--bottom-40{
    bottom: -10rem !important;
  }

  .tablet-large\:u--bottom-44{
    bottom: -11rem !important;
  }

  .tablet-large\:u--bottom-48{
    bottom: -12rem !important;
  }

  .tablet-large\:u--bottom-52{
    bottom: -13rem !important;
  }

  .tablet-large\:u--bottom-56{
    bottom: -14rem !important;
  }

  .tablet-large\:u--bottom-60{
    bottom: -15rem !important;
  }

  .tablet-large\:u--bottom-64{
    bottom: -16rem !important;
  }

  .tablet-large\:u--bottom-72{
    bottom: -18rem !important;
  }

  .tablet-large\:u--bottom-80{
    bottom: -20rem !important;
  }

  .tablet-large\:u--bottom-96{
    bottom: -24rem !important;
  }

  .tablet-large\:u--bottom-px{
    bottom: -1px !important;
  }

  .tablet-large\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .tablet-large\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .tablet-large\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .tablet-large\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .tablet-large\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .tablet-large\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .tablet-large\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .tablet-large\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .tablet-large\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .tablet-large\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .tablet-large\:u-bottom-full{
    bottom: 100% !important;
  }

  .tablet-large\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .tablet-large\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .tablet-large\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .tablet-large\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .tablet-large\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .tablet-large\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .tablet-large\:u--bottom-full{
    bottom: -100% !important;
  }

  .tablet-large\:u-left-0{
    left: 0px !important;
  }

  .tablet-large\:u-left-1{
    left: 0.25rem !important;
  }

  .tablet-large\:u-left-2{
    left: 0.5rem !important;
  }

  .tablet-large\:u-left-3{
    left: 0.75rem !important;
  }

  .tablet-large\:u-left-4{
    left: 1rem !important;
  }

  .tablet-large\:u-left-5{
    left: 1.25rem !important;
  }

  .tablet-large\:u-left-6{
    left: 1.5rem !important;
  }

  .tablet-large\:u-left-7{
    left: 1.75rem !important;
  }

  .tablet-large\:u-left-8{
    left: 2rem !important;
  }

  .tablet-large\:u-left-9{
    left: 2.25rem !important;
  }

  .tablet-large\:u-left-10{
    left: 2.5rem !important;
  }

  .tablet-large\:u-left-11{
    left: 2.75rem !important;
  }

  .tablet-large\:u-left-12{
    left: 3rem !important;
  }

  .tablet-large\:u-left-14{
    left: 3.5rem !important;
  }

  .tablet-large\:u-left-16{
    left: 4rem !important;
  }

  .tablet-large\:u-left-20{
    left: 5rem !important;
  }

  .tablet-large\:u-left-24{
    left: 6rem !important;
  }

  .tablet-large\:u-left-28{
    left: 7rem !important;
  }

  .tablet-large\:u-left-32{
    left: 8rem !important;
  }

  .tablet-large\:u-left-36{
    left: 9rem !important;
  }

  .tablet-large\:u-left-40{
    left: 10rem !important;
  }

  .tablet-large\:u-left-44{
    left: 11rem !important;
  }

  .tablet-large\:u-left-48{
    left: 12rem !important;
  }

  .tablet-large\:u-left-52{
    left: 13rem !important;
  }

  .tablet-large\:u-left-56{
    left: 14rem !important;
  }

  .tablet-large\:u-left-60{
    left: 15rem !important;
  }

  .tablet-large\:u-left-64{
    left: 16rem !important;
  }

  .tablet-large\:u-left-72{
    left: 18rem !important;
  }

  .tablet-large\:u-left-80{
    left: 20rem !important;
  }

  .tablet-large\:u-left-96{
    left: 24rem !important;
  }

  .tablet-large\:u-left-auto{
    left: auto !important;
  }

  .tablet-large\:u-left-px{
    left: 1px !important;
  }

  .tablet-large\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .tablet-large\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .tablet-large\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .tablet-large\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .tablet-large\:u--left-0{
    left: 0px !important;
  }

  .tablet-large\:u--left-1{
    left: -0.25rem !important;
  }

  .tablet-large\:u--left-2{
    left: -0.5rem !important;
  }

  .tablet-large\:u--left-3{
    left: -0.75rem !important;
  }

  .tablet-large\:u--left-4{
    left: -1rem !important;
  }

  .tablet-large\:u--left-5{
    left: -1.25rem !important;
  }

  .tablet-large\:u--left-6{
    left: -1.5rem !important;
  }

  .tablet-large\:u--left-7{
    left: -1.75rem !important;
  }

  .tablet-large\:u--left-8{
    left: -2rem !important;
  }

  .tablet-large\:u--left-9{
    left: -2.25rem !important;
  }

  .tablet-large\:u--left-10{
    left: -2.5rem !important;
  }

  .tablet-large\:u--left-11{
    left: -2.75rem !important;
  }

  .tablet-large\:u--left-12{
    left: -3rem !important;
  }

  .tablet-large\:u--left-14{
    left: -3.5rem !important;
  }

  .tablet-large\:u--left-16{
    left: -4rem !important;
  }

  .tablet-large\:u--left-20{
    left: -5rem !important;
  }

  .tablet-large\:u--left-24{
    left: -6rem !important;
  }

  .tablet-large\:u--left-28{
    left: -7rem !important;
  }

  .tablet-large\:u--left-32{
    left: -8rem !important;
  }

  .tablet-large\:u--left-36{
    left: -9rem !important;
  }

  .tablet-large\:u--left-40{
    left: -10rem !important;
  }

  .tablet-large\:u--left-44{
    left: -11rem !important;
  }

  .tablet-large\:u--left-48{
    left: -12rem !important;
  }

  .tablet-large\:u--left-52{
    left: -13rem !important;
  }

  .tablet-large\:u--left-56{
    left: -14rem !important;
  }

  .tablet-large\:u--left-60{
    left: -15rem !important;
  }

  .tablet-large\:u--left-64{
    left: -16rem !important;
  }

  .tablet-large\:u--left-72{
    left: -18rem !important;
  }

  .tablet-large\:u--left-80{
    left: -20rem !important;
  }

  .tablet-large\:u--left-96{
    left: -24rem !important;
  }

  .tablet-large\:u--left-px{
    left: -1px !important;
  }

  .tablet-large\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .tablet-large\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .tablet-large\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .tablet-large\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .tablet-large\:u-left-1\/2{
    left: 50% !important;
  }

  .tablet-large\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .tablet-large\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .tablet-large\:u-left-1\/4{
    left: 25% !important;
  }

  .tablet-large\:u-left-2\/4{
    left: 50% !important;
  }

  .tablet-large\:u-left-3\/4{
    left: 75% !important;
  }

  .tablet-large\:u-left-full{
    left: 100% !important;
  }

  .tablet-large\:u--left-1\/2{
    left: -50% !important;
  }

  .tablet-large\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .tablet-large\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .tablet-large\:u--left-1\/4{
    left: -25% !important;
  }

  .tablet-large\:u--left-2\/4{
    left: -50% !important;
  }

  .tablet-large\:u--left-3\/4{
    left: -75% !important;
  }

  .tablet-large\:u--left-full{
    left: -100% !important;
  }

  .tablet-large\:u-isolate{
    isolation: isolate !important;
  }

  .tablet-large\:u-isolation-auto{
    isolation: auto !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-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-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-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-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-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-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-large\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .tablet-large\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .tablet-large\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .tablet-large\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .tablet-large\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .tablet-large\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .tablet-large\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .tablet-large\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .tablet-large\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .tablet-large\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .tablet-large\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .tablet-large\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .tablet-large\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .tablet-large\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .tablet-large\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .tablet-large\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .tablet-large\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .tablet-large\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .tablet-large\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .tablet-large\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .tablet-large\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .tablet-large\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .tablet-large\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .tablet-large\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .tablet-large\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .tablet-large\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .tablet-large\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .tablet-large\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .tablet-large\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .tablet-large\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tablet-large\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .tablet-large\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .tablet-large\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .tablet-large\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .tablet-large\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .tablet-large\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-large\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .tablet-large\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .tablet-large\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .tablet-large\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .tablet-large\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tablet-large\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .tablet-large\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .tablet-large\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .tablet-large\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .tablet-large\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .tablet-large\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .tablet-large\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .tablet-large\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .tablet-large\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .tablet-large\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .tablet-large\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .tablet-large\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .tablet-large\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .tablet-large\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .tablet-large\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .tablet-large\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .tablet-large\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .tablet-large\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .tablet-large\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .tablet-large\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .tablet-large\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .tablet-large\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .tablet-large\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .tablet-large\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .tablet-large\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .tablet-large\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .tablet-large\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .tablet-large\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !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-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .tablet-large\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tablet-large\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .tablet-large\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tablet-large\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .tablet-large\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tablet-large\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .tablet-large\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .tablet-large\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .tablet-large\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tablet-large\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .tablet-large\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .tablet-large\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .tablet-large\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .tablet-large\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .tablet-large\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .tablet-large\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .tablet-large\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .tablet-large\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .tablet-large\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .tablet-large\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .tablet-large\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .tablet-large\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .tablet-large\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .tablet-large\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .tablet-large\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .tablet-large\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .tablet-large\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .tablet-large\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .tablet-large\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .tablet-large\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .tablet-large\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .tablet-large\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .tablet-large\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .tablet-large\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .tablet-large\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet-large\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .tablet-large\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .tablet-large\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .tablet-large\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .tablet-large\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .tablet-large\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .tablet-large\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .tablet-large\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .tablet-large\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .tablet-large\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .tablet-large\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .tablet-large\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .tablet-large\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .tablet-large\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .tablet-large\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .tablet-large\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .tablet-large\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .tablet-large\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .tablet-large\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .tablet-large\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .tablet-large\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .tablet-large\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .tablet-large\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .tablet-large\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .tablet-large\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .tablet-large\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .tablet-large\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .tablet-large\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .tablet-large\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .tablet-large\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .tablet-large\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .tablet-large\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .tablet-large\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .tablet-large\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .tablet-large\:u-mt-0{
    margin-top: 0px !important;
  }

  .tablet-large\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .tablet-large\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .tablet-large\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .tablet-large\:u-mt-4{
    margin-top: 1rem !important;
  }

  .tablet-large\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .tablet-large\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .tablet-large\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .tablet-large\:u-mt-8{
    margin-top: 2rem !important;
  }

  .tablet-large\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .tablet-large\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .tablet-large\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .tablet-large\:u-mt-12{
    margin-top: 3rem !important;
  }

  .tablet-large\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .tablet-large\:u-mt-16{
    margin-top: 4rem !important;
  }

  .tablet-large\:u-mt-20{
    margin-top: 5rem !important;
  }

  .tablet-large\:u-mt-24{
    margin-top: 6rem !important;
  }

  .tablet-large\:u-mt-28{
    margin-top: 7rem !important;
  }

  .tablet-large\:u-mt-32{
    margin-top: 8rem !important;
  }

  .tablet-large\:u-mt-36{
    margin-top: 9rem !important;
  }

  .tablet-large\:u-mt-40{
    margin-top: 10rem !important;
  }

  .tablet-large\:u-mt-44{
    margin-top: 11rem !important;
  }

  .tablet-large\:u-mt-48{
    margin-top: 12rem !important;
  }

  .tablet-large\:u-mt-52{
    margin-top: 13rem !important;
  }

  .tablet-large\:u-mt-56{
    margin-top: 14rem !important;
  }

  .tablet-large\:u-mt-60{
    margin-top: 15rem !important;
  }

  .tablet-large\:u-mt-64{
    margin-top: 16rem !important;
  }

  .tablet-large\:u-mt-72{
    margin-top: 18rem !important;
  }

  .tablet-large\:u-mt-80{
    margin-top: 20rem !important;
  }

  .tablet-large\:u-mt-96{
    margin-top: 24rem !important;
  }

  .tablet-large\:u-mt-auto{
    margin-top: auto !important;
  }

  .tablet-large\:u-mt-px{
    margin-top: 1px !important;
  }

  .tablet-large\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .tablet-large\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .tablet-large\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .tablet-large\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .tablet-large\:u--mt-0{
    margin-top: 0px !important;
  }

  .tablet-large\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .tablet-large\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .tablet-large\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .tablet-large\:u--mt-4{
    margin-top: -1rem !important;
  }

  .tablet-large\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .tablet-large\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .tablet-large\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .tablet-large\:u--mt-8{
    margin-top: -2rem !important;
  }

  .tablet-large\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .tablet-large\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .tablet-large\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .tablet-large\:u--mt-12{
    margin-top: -3rem !important;
  }

  .tablet-large\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .tablet-large\:u--mt-16{
    margin-top: -4rem !important;
  }

  .tablet-large\:u--mt-20{
    margin-top: -5rem !important;
  }

  .tablet-large\:u--mt-24{
    margin-top: -6rem !important;
  }

  .tablet-large\:u--mt-28{
    margin-top: -7rem !important;
  }

  .tablet-large\:u--mt-32{
    margin-top: -8rem !important;
  }

  .tablet-large\:u--mt-36{
    margin-top: -9rem !important;
  }

  .tablet-large\:u--mt-40{
    margin-top: -10rem !important;
  }

  .tablet-large\:u--mt-44{
    margin-top: -11rem !important;
  }

  .tablet-large\:u--mt-48{
    margin-top: -12rem !important;
  }

  .tablet-large\:u--mt-52{
    margin-top: -13rem !important;
  }

  .tablet-large\:u--mt-56{
    margin-top: -14rem !important;
  }

  .tablet-large\:u--mt-60{
    margin-top: -15rem !important;
  }

  .tablet-large\:u--mt-64{
    margin-top: -16rem !important;
  }

  .tablet-large\:u--mt-72{
    margin-top: -18rem !important;
  }

  .tablet-large\:u--mt-80{
    margin-top: -20rem !important;
  }

  .tablet-large\:u--mt-96{
    margin-top: -24rem !important;
  }

  .tablet-large\:u--mt-px{
    margin-top: -1px !important;
  }

  .tablet-large\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .tablet-large\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .tablet-large\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .tablet-large\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .tablet-large\:u-mr-0{
    margin-right: 0px !important;
  }

  .tablet-large\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .tablet-large\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .tablet-large\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .tablet-large\:u-mr-4{
    margin-right: 1rem !important;
  }

  .tablet-large\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .tablet-large\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .tablet-large\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .tablet-large\:u-mr-8{
    margin-right: 2rem !important;
  }

  .tablet-large\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .tablet-large\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .tablet-large\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .tablet-large\:u-mr-12{
    margin-right: 3rem !important;
  }

  .tablet-large\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .tablet-large\:u-mr-16{
    margin-right: 4rem !important;
  }

  .tablet-large\:u-mr-20{
    margin-right: 5rem !important;
  }

  .tablet-large\:u-mr-24{
    margin-right: 6rem !important;
  }

  .tablet-large\:u-mr-28{
    margin-right: 7rem !important;
  }

  .tablet-large\:u-mr-32{
    margin-right: 8rem !important;
  }

  .tablet-large\:u-mr-36{
    margin-right: 9rem !important;
  }

  .tablet-large\:u-mr-40{
    margin-right: 10rem !important;
  }

  .tablet-large\:u-mr-44{
    margin-right: 11rem !important;
  }

  .tablet-large\:u-mr-48{
    margin-right: 12rem !important;
  }

  .tablet-large\:u-mr-52{
    margin-right: 13rem !important;
  }

  .tablet-large\:u-mr-56{
    margin-right: 14rem !important;
  }

  .tablet-large\:u-mr-60{
    margin-right: 15rem !important;
  }

  .tablet-large\:u-mr-64{
    margin-right: 16rem !important;
  }

  .tablet-large\:u-mr-72{
    margin-right: 18rem !important;
  }

  .tablet-large\:u-mr-80{
    margin-right: 20rem !important;
  }

  .tablet-large\:u-mr-96{
    margin-right: 24rem !important;
  }

  .tablet-large\:u-mr-auto{
    margin-right: auto !important;
  }

  .tablet-large\:u-mr-px{
    margin-right: 1px !important;
  }

  .tablet-large\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .tablet-large\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .tablet-large\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .tablet-large\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .tablet-large\:u--mr-0{
    margin-right: 0px !important;
  }

  .tablet-large\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .tablet-large\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .tablet-large\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .tablet-large\:u--mr-4{
    margin-right: -1rem !important;
  }

  .tablet-large\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .tablet-large\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .tablet-large\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .tablet-large\:u--mr-8{
    margin-right: -2rem !important;
  }

  .tablet-large\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .tablet-large\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .tablet-large\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .tablet-large\:u--mr-12{
    margin-right: -3rem !important;
  }

  .tablet-large\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .tablet-large\:u--mr-16{
    margin-right: -4rem !important;
  }

  .tablet-large\:u--mr-20{
    margin-right: -5rem !important;
  }

  .tablet-large\:u--mr-24{
    margin-right: -6rem !important;
  }

  .tablet-large\:u--mr-28{
    margin-right: -7rem !important;
  }

  .tablet-large\:u--mr-32{
    margin-right: -8rem !important;
  }

  .tablet-large\:u--mr-36{
    margin-right: -9rem !important;
  }

  .tablet-large\:u--mr-40{
    margin-right: -10rem !important;
  }

  .tablet-large\:u--mr-44{
    margin-right: -11rem !important;
  }

  .tablet-large\:u--mr-48{
    margin-right: -12rem !important;
  }

  .tablet-large\:u--mr-52{
    margin-right: -13rem !important;
  }

  .tablet-large\:u--mr-56{
    margin-right: -14rem !important;
  }

  .tablet-large\:u--mr-60{
    margin-right: -15rem !important;
  }

  .tablet-large\:u--mr-64{
    margin-right: -16rem !important;
  }

  .tablet-large\:u--mr-72{
    margin-right: -18rem !important;
  }

  .tablet-large\:u--mr-80{
    margin-right: -20rem !important;
  }

  .tablet-large\:u--mr-96{
    margin-right: -24rem !important;
  }

  .tablet-large\:u--mr-px{
    margin-right: -1px !important;
  }

  .tablet-large\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .tablet-large\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .tablet-large\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .tablet-large\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .tablet-large\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-large\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .tablet-large\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .tablet-large\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .tablet-large\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .tablet-large\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .tablet-large\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .tablet-large\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .tablet-large\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .tablet-large\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .tablet-large\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .tablet-large\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .tablet-large\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .tablet-large\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .tablet-large\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .tablet-large\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .tablet-large\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .tablet-large\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .tablet-large\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .tablet-large\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .tablet-large\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .tablet-large\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .tablet-large\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .tablet-large\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .tablet-large\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .tablet-large\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .tablet-large\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .tablet-large\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .tablet-large\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .tablet-large\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .tablet-large\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .tablet-large\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .tablet-large\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .tablet-large\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .tablet-large\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .tablet-large\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .tablet-large\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-large\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .tablet-large\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .tablet-large\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .tablet-large\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .tablet-large\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .tablet-large\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .tablet-large\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .tablet-large\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .tablet-large\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .tablet-large\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .tablet-large\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .tablet-large\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .tablet-large\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .tablet-large\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .tablet-large\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .tablet-large\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .tablet-large\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .tablet-large\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .tablet-large\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .tablet-large\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .tablet-large\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .tablet-large\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .tablet-large\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .tablet-large\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .tablet-large\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .tablet-large\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .tablet-large\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .tablet-large\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .tablet-large\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .tablet-large\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .tablet-large\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .tablet-large\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .tablet-large\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .tablet-large\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .tablet-large\:u-ml-0{
    margin-left: 0px !important;
  }

  .tablet-large\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .tablet-large\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .tablet-large\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .tablet-large\:u-ml-4{
    margin-left: 1rem !important;
  }

  .tablet-large\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .tablet-large\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .tablet-large\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .tablet-large\:u-ml-8{
    margin-left: 2rem !important;
  }

  .tablet-large\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .tablet-large\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .tablet-large\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .tablet-large\:u-ml-12{
    margin-left: 3rem !important;
  }

  .tablet-large\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .tablet-large\:u-ml-16{
    margin-left: 4rem !important;
  }

  .tablet-large\:u-ml-20{
    margin-left: 5rem !important;
  }

  .tablet-large\:u-ml-24{
    margin-left: 6rem !important;
  }

  .tablet-large\:u-ml-28{
    margin-left: 7rem !important;
  }

  .tablet-large\:u-ml-32{
    margin-left: 8rem !important;
  }

  .tablet-large\:u-ml-36{
    margin-left: 9rem !important;
  }

  .tablet-large\:u-ml-40{
    margin-left: 10rem !important;
  }

  .tablet-large\:u-ml-44{
    margin-left: 11rem !important;
  }

  .tablet-large\:u-ml-48{
    margin-left: 12rem !important;
  }

  .tablet-large\:u-ml-52{
    margin-left: 13rem !important;
  }

  .tablet-large\:u-ml-56{
    margin-left: 14rem !important;
  }

  .tablet-large\:u-ml-60{
    margin-left: 15rem !important;
  }

  .tablet-large\:u-ml-64{
    margin-left: 16rem !important;
  }

  .tablet-large\:u-ml-72{
    margin-left: 18rem !important;
  }

  .tablet-large\:u-ml-80{
    margin-left: 20rem !important;
  }

  .tablet-large\:u-ml-96{
    margin-left: 24rem !important;
  }

  .tablet-large\:u-ml-auto{
    margin-left: auto !important;
  }

  .tablet-large\:u-ml-px{
    margin-left: 1px !important;
  }

  .tablet-large\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .tablet-large\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .tablet-large\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .tablet-large\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .tablet-large\:u--ml-0{
    margin-left: 0px !important;
  }

  .tablet-large\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .tablet-large\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .tablet-large\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .tablet-large\:u--ml-4{
    margin-left: -1rem !important;
  }

  .tablet-large\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .tablet-large\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .tablet-large\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .tablet-large\:u--ml-8{
    margin-left: -2rem !important;
  }

  .tablet-large\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .tablet-large\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .tablet-large\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .tablet-large\:u--ml-12{
    margin-left: -3rem !important;
  }

  .tablet-large\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .tablet-large\:u--ml-16{
    margin-left: -4rem !important;
  }

  .tablet-large\:u--ml-20{
    margin-left: -5rem !important;
  }

  .tablet-large\:u--ml-24{
    margin-left: -6rem !important;
  }

  .tablet-large\:u--ml-28{
    margin-left: -7rem !important;
  }

  .tablet-large\:u--ml-32{
    margin-left: -8rem !important;
  }

  .tablet-large\:u--ml-36{
    margin-left: -9rem !important;
  }

  .tablet-large\:u--ml-40{
    margin-left: -10rem !important;
  }

  .tablet-large\:u--ml-44{
    margin-left: -11rem !important;
  }

  .tablet-large\:u--ml-48{
    margin-left: -12rem !important;
  }

  .tablet-large\:u--ml-52{
    margin-left: -13rem !important;
  }

  .tablet-large\:u--ml-56{
    margin-left: -14rem !important;
  }

  .tablet-large\:u--ml-60{
    margin-left: -15rem !important;
  }

  .tablet-large\:u--ml-64{
    margin-left: -16rem !important;
  }

  .tablet-large\:u--ml-72{
    margin-left: -18rem !important;
  }

  .tablet-large\:u--ml-80{
    margin-left: -20rem !important;
  }

  .tablet-large\:u--ml-96{
    margin-left: -24rem !important;
  }

  .tablet-large\:u--ml-px{
    margin-left: -1px !important;
  }

  .tablet-large\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .tablet-large\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .tablet-large\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .tablet-large\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .tablet-large\:u-box-border{
    box-sizing: border-box !important;
  }

  .tablet-large\:u-box-content{
    box-sizing: content-box !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-inline-table{
    display: inline-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-list-item{
    display: list-item !important;
  }

  .tablet-large\:u-hidden{
    display: none !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-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-min-h-0{
    min-height: 0px !important;
  }

  .tablet-large\:u-min-h-full{
    min-height: 100% !important;
  }

  .tablet-large\:u-min-h-screen{
    min-height: 100vh !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: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet-large\:u-w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet-large\:u-min-w-0{
    min-width: 0px !important;
  }

  .tablet-large\:u-min-w-full{
    min-width: 100% !important;
  }

  .tablet-large\:u-min-w-min{
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .tablet-large\:u-min-w-max{
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .tablet-large\:u-max-w-0{
    max-width: 0rem !important;
  }

  .tablet-large\:u-max-w-none{
    max-width: none !important;
  }

  .tablet-large\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .tablet-large\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .tablet-large\:u-max-w-md{
    max-width: 28rem !important;
  }

  .tablet-large\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .tablet-large\:u-max-w-xl{
    max-width: 36rem !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-7xl{
    max-width: 80rem !important;
  }

  .tablet-large\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet-large\:u-max-w-min{
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .tablet-large\:u-max-w-max{
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .tablet-large\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .tablet-large\:u-max-w-screen-mobile{
    max-width: 375px !important;
  }

  .tablet-large\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .tablet-large\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .tablet-large\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .tablet-large\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .tablet-large\:u-max-w-screen-desktop{
    max-width: 1280px !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: 1280px !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-none{
    flex: none !important;
  }

  .tablet-large\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .tablet-large\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .tablet-large\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .tablet-large\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .tablet-large\:u-table-auto{
    table-layout: auto !important;
  }

  .tablet-large\:u-table-fixed{
    table-layout: fixed !important;
  }

  .tablet-large\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .tablet-large\:u-border-separate{
    border-collapse: separate !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-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-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-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-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-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\: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\: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\: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-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-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-animate-none{
    animation: none !important;
  }

  .tablet-large\:u-animate-spin{
    animation: u-spin 1s linear infinite !important;
  }

  .tablet-large\:u-animate-ping{
    animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet-large\:u-animate-pulse{
    animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet-large\:u-animate-bounce{
    animation: u-bounce 1s infinite !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-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .tablet-large\:u-select-text{
    -webkit-user-select: text !important;
       -moz-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;
            user-select: auto !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-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-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .tablet-large\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .tablet-large\:u-auto-cols-min{
    grid-auto-columns: min-content !important;
  }

  .tablet-large\:u-auto-cols-max{
    grid-auto-columns: max-content !important;
  }

  .tablet-large\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !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-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .tablet-large\:u-auto-rows-min{
    grid-auto-rows: min-content !important;
  }

  .tablet-large\:u-auto-rows-max{
    grid-auto-rows: max-content !important;
  }

  .tablet-large\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-0 > :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(250, 250, 250, 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(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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 > :not([hidden]) ~ :not([hidden]){
    border-color: var(--primary) !important;
  }

  .tablet-large\:u-divide-secundary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--secundary) !important;
  }

  .tablet-large\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !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-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-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-self-baseline{
    align-self: baseline !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-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{
    overscroll-behavior: auto !important;
  }

  .tablet-large\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .tablet-large\:u-overscroll-none{
    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-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-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-rounded-none{
    border-radius: 0px !important;
  }

  .tablet-large\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !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-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-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-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !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-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !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-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !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-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !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-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !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-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !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-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !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: 0px !important;
  }

  .tablet-large\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .tablet-large\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .tablet-large\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .tablet-large\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .tablet-large\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .tablet-large\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .tablet-large\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .tablet-large\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !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-t-2{
    border-top-width: 2px !important;
  }

  .tablet-large\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .tablet-large\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .tablet-large\:u-border-t{
    border-top-width: 1px !important;
  }

  .tablet-large\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .tablet-large\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .tablet-large\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .tablet-large\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .tablet-large\:u-border-r{
    border-right-width: 1px !important;
  }

  .tablet-large\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .tablet-large\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .tablet-large\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .tablet-large\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .tablet-large\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .tablet-large\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .tablet-large\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .tablet-large\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .tablet-large\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .tablet-large\:u-border-l{
    border-left-width: 1px !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-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .tablet-large\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .tablet-large\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .tablet-large\:u-border-transparent{
    border-color: transparent !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-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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-transparent{
    border-color: transparent !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-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-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus-within{
    border-color: var(--primary) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary:focus-within{
    border-color: var(--secundary) !important;
  }

  .tablet-large\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !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-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:hover{
    border-color: var(--primary) !important;
  }

  .tablet-large\:hover\:u-border-secundary:hover{
    border-color: var(--secundary) !important;
  }

  .tablet-large\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:hover\:u-border-transparent:hover{
    border-color: transparent !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-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus{
    border-color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-border-secundary:focus{
    border-color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus\:u-border-transparent:focus{
    border-color: transparent !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-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .tablet-large\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .tablet-large\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .tablet-large\:u-bg-transparent{
    background-color: transparent !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-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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-transparent{
    background-color: transparent !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-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-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus-within{
    background-color: var(--primary) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary:focus-within{
    background-color: var(--secundary) !important;
  }

  .tablet-large\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !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-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:hover{
    background-color: var(--primary) !important;
  }

  .tablet-large\:hover\:u-bg-secundary:hover{
    background-color: var(--secundary) !important;
  }

  .tablet-large\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:hover\:u-bg-transparent:hover{
    background-color: transparent !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-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus{
    background-color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-bg-secundary:focus{
    background-color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus\:u-bg-transparent:focus{
    background-color: transparent !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-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-white{
    --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-black{
    --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-faded{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:u-from-neutral-0{
    --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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:u-from-neutral-30{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-large\:u-from-neutral-40{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-large\:u-from-neutral-45{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:u-from-neutral-50{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-from-secundary{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-from-success{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:hover\:u-from-white: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-black: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-faded:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #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-30:hover{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary:hover{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-from-success:hover{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:focus\:u-from-white: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-black: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-faded:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #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-30:focus{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary:focus{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-from-success:focus{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:u-via-neutral-0{
    --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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-via-secundary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-to-white{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:u-to-black{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:u-to-faded{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-large\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:u-to-neutral-10{
    --tw-gradient-to: #FAFAFA !important;
  }

  .tablet-large\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-large\:u-to-neutral-20{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-large\:u-to-neutral-30{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet-large\:u-to-neutral-40{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet-large\:u-to-neutral-45{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-large\:u-to-neutral-50{
    --tw-gradient-to: #262626 !important;
  }

  .tablet-large\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:u-to-primary{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet-large\:u-to-secundary{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet-large\:u-to-success{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet-large\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .tablet-large\:hover\:u-to-white:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:hover\:u-to-black:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:hover\:u-to-faded:hover{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-large\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #262626 !important;
  }

  .tablet-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:hover\:u-to-primary:hover{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet-large\:hover\:u-to-secundary:hover{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet-large\:hover\:u-to-success:hover{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet-large\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .tablet-large\:focus\:u-to-white:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:focus\:u-to-black:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:focus\:u-to-faded:focus{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-large\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .tablet-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #9E9E9E !important;
  }

  .tablet-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #666666 !important;
  }

  .tablet-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #262626 !important;
  }

  .tablet-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:focus\:u-to-primary:focus{
    --tw-gradient-to: var(--primary) !important;
  }

  .tablet-large\:focus\:u-to-secundary:focus{
    --tw-gradient-to: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-to-success:focus{
    --tw-gradient-to: #9FC734 !important;
  }

  .tablet-large\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .tablet-large\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .tablet-large\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !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-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-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-origin-border{
    background-origin: border-box !important;
  }

  .tablet-large\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .tablet-large\:u-bg-origin-content{
    background-origin: content-box !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-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-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-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .tablet-large\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .tablet-large\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .tablet-large\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .tablet-large\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tablet-large\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .tablet-large\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .tablet-large\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .tablet-large\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .tablet-large\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .tablet-large\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .tablet-large\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .tablet-large\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .tablet-large\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .tablet-large\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .tablet-large\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .tablet-large\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .tablet-large\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .tablet-large\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .tablet-large\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .tablet-large\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .tablet-large\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .tablet-large\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .tablet-large\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .tablet-large\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .tablet-large\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .tablet-large\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .tablet-large\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .tablet-large\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .tablet-large\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .tablet-large\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .tablet-large\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .tablet-large\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .tablet-large\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .tablet-large\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .tablet-large\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .tablet-large\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .tablet-large\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .tablet-large\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .tablet-large\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tablet-large\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .tablet-large\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tablet-large\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .tablet-large\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .tablet-large\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .tablet-large\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .tablet-large\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .tablet-large\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .tablet-large\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .tablet-large\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .tablet-large\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .tablet-large\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .tablet-large\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .tablet-large\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .tablet-large\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .tablet-large\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .tablet-large\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .tablet-large\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .tablet-large\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .tablet-large\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .tablet-large\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .tablet-large\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .tablet-large\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .tablet-large\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .tablet-large\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .tablet-large\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .tablet-large\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .tablet-large\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .tablet-large\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .tablet-large\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .tablet-large\:u-pt-0{
    padding-top: 0px !important;
  }

  .tablet-large\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .tablet-large\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .tablet-large\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .tablet-large\:u-pt-4{
    padding-top: 1rem !important;
  }

  .tablet-large\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .tablet-large\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .tablet-large\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .tablet-large\:u-pt-8{
    padding-top: 2rem !important;
  }

  .tablet-large\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .tablet-large\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .tablet-large\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .tablet-large\:u-pt-12{
    padding-top: 3rem !important;
  }

  .tablet-large\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .tablet-large\:u-pt-16{
    padding-top: 4rem !important;
  }

  .tablet-large\:u-pt-20{
    padding-top: 5rem !important;
  }

  .tablet-large\:u-pt-24{
    padding-top: 6rem !important;
  }

  .tablet-large\:u-pt-28{
    padding-top: 7rem !important;
  }

  .tablet-large\:u-pt-32{
    padding-top: 8rem !important;
  }

  .tablet-large\:u-pt-36{
    padding-top: 9rem !important;
  }

  .tablet-large\:u-pt-40{
    padding-top: 10rem !important;
  }

  .tablet-large\:u-pt-44{
    padding-top: 11rem !important;
  }

  .tablet-large\:u-pt-48{
    padding-top: 12rem !important;
  }

  .tablet-large\:u-pt-52{
    padding-top: 13rem !important;
  }

  .tablet-large\:u-pt-56{
    padding-top: 14rem !important;
  }

  .tablet-large\:u-pt-60{
    padding-top: 15rem !important;
  }

  .tablet-large\:u-pt-64{
    padding-top: 16rem !important;
  }

  .tablet-large\:u-pt-72{
    padding-top: 18rem !important;
  }

  .tablet-large\:u-pt-80{
    padding-top: 20rem !important;
  }

  .tablet-large\:u-pt-96{
    padding-top: 24rem !important;
  }

  .tablet-large\:u-pt-px{
    padding-top: 1px !important;
  }

  .tablet-large\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .tablet-large\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .tablet-large\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .tablet-large\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .tablet-large\:u-pr-0{
    padding-right: 0px !important;
  }

  .tablet-large\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .tablet-large\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .tablet-large\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .tablet-large\:u-pr-4{
    padding-right: 1rem !important;
  }

  .tablet-large\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .tablet-large\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .tablet-large\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .tablet-large\:u-pr-8{
    padding-right: 2rem !important;
  }

  .tablet-large\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .tablet-large\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .tablet-large\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .tablet-large\:u-pr-12{
    padding-right: 3rem !important;
  }

  .tablet-large\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .tablet-large\:u-pr-16{
    padding-right: 4rem !important;
  }

  .tablet-large\:u-pr-20{
    padding-right: 5rem !important;
  }

  .tablet-large\:u-pr-24{
    padding-right: 6rem !important;
  }

  .tablet-large\:u-pr-28{
    padding-right: 7rem !important;
  }

  .tablet-large\:u-pr-32{
    padding-right: 8rem !important;
  }

  .tablet-large\:u-pr-36{
    padding-right: 9rem !important;
  }

  .tablet-large\:u-pr-40{
    padding-right: 10rem !important;
  }

  .tablet-large\:u-pr-44{
    padding-right: 11rem !important;
  }

  .tablet-large\:u-pr-48{
    padding-right: 12rem !important;
  }

  .tablet-large\:u-pr-52{
    padding-right: 13rem !important;
  }

  .tablet-large\:u-pr-56{
    padding-right: 14rem !important;
  }

  .tablet-large\:u-pr-60{
    padding-right: 15rem !important;
  }

  .tablet-large\:u-pr-64{
    padding-right: 16rem !important;
  }

  .tablet-large\:u-pr-72{
    padding-right: 18rem !important;
  }

  .tablet-large\:u-pr-80{
    padding-right: 20rem !important;
  }

  .tablet-large\:u-pr-96{
    padding-right: 24rem !important;
  }

  .tablet-large\:u-pr-px{
    padding-right: 1px !important;
  }

  .tablet-large\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .tablet-large\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .tablet-large\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .tablet-large\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .tablet-large\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .tablet-large\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .tablet-large\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .tablet-large\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .tablet-large\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .tablet-large\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .tablet-large\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .tablet-large\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .tablet-large\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .tablet-large\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .tablet-large\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .tablet-large\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .tablet-large\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .tablet-large\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .tablet-large\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .tablet-large\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .tablet-large\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .tablet-large\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .tablet-large\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .tablet-large\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .tablet-large\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .tablet-large\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .tablet-large\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .tablet-large\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .tablet-large\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .tablet-large\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .tablet-large\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .tablet-large\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .tablet-large\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .tablet-large\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .tablet-large\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .tablet-large\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .tablet-large\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .tablet-large\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .tablet-large\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .tablet-large\:u-pl-0{
    padding-left: 0px !important;
  }

  .tablet-large\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .tablet-large\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .tablet-large\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .tablet-large\:u-pl-4{
    padding-left: 1rem !important;
  }

  .tablet-large\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .tablet-large\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .tablet-large\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .tablet-large\:u-pl-8{
    padding-left: 2rem !important;
  }

  .tablet-large\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .tablet-large\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .tablet-large\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .tablet-large\:u-pl-12{
    padding-left: 3rem !important;
  }

  .tablet-large\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .tablet-large\:u-pl-16{
    padding-left: 4rem !important;
  }

  .tablet-large\:u-pl-20{
    padding-left: 5rem !important;
  }

  .tablet-large\:u-pl-24{
    padding-left: 6rem !important;
  }

  .tablet-large\:u-pl-28{
    padding-left: 7rem !important;
  }

  .tablet-large\:u-pl-32{
    padding-left: 8rem !important;
  }

  .tablet-large\:u-pl-36{
    padding-left: 9rem !important;
  }

  .tablet-large\:u-pl-40{
    padding-left: 10rem !important;
  }

  .tablet-large\:u-pl-44{
    padding-left: 11rem !important;
  }

  .tablet-large\:u-pl-48{
    padding-left: 12rem !important;
  }

  .tablet-large\:u-pl-52{
    padding-left: 13rem !important;
  }

  .tablet-large\:u-pl-56{
    padding-left: 14rem !important;
  }

  .tablet-large\:u-pl-60{
    padding-left: 15rem !important;
  }

  .tablet-large\:u-pl-64{
    padding-left: 16rem !important;
  }

  .tablet-large\:u-pl-72{
    padding-left: 18rem !important;
  }

  .tablet-large\:u-pl-80{
    padding-left: 20rem !important;
  }

  .tablet-large\:u-pl-96{
    padding-left: 24rem !important;
  }

  .tablet-large\:u-pl-px{
    padding-left: 1px !important;
  }

  .tablet-large\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .tablet-large\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .tablet-large\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .tablet-large\:u-pl-3\.5{
    padding-left: 0.875rem !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-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-font-body{
    font-family: Public Sans, sans-serif !important;
  }

  .tablet-large\:u-font-heading{
    font-family: Public Sans, sans-serif !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.2rem !important;
  }

  .tablet-large\:u-text-3xl{
    font-size: 1.3rem !important;
  }

  .tablet-large\:u-text-4xl{
    font-size: 1.4rem !important;
  }

  .tablet-large\:u-text-5xl{
    font-size: 2rem !important;
  }

  .tablet-large\:u-text-6xl{
    font-size: 3rem !important;
  }

  .tablet-large\:u-text-8xl{
    font-size: 4rem !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-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-italic{
    font-style: italic !important;
  }

  .tablet-large\:u-not-italic{
    font-style: normal !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-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.5 !important;
  }

  .tablet-large\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .tablet-large\:u-leading-loose{
    line-height: 2 !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-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !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-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .tablet-large\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .tablet-large\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .tablet-large\:u-text-transparent{
    color: transparent !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-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-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-transparent{
    color: transparent !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-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus-within{
    color: var(--primary) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary:focus-within{
    color: var(--secundary) !important;
  }

  .tablet-large\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus-within\:u-text-transparent:focus-within{
    color: transparent !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-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:hover{
    color: var(--primary) !important;
  }

  .tablet-large\:hover\:u-text-secundary:hover{
    color: var(--secundary) !important;
  }

  .tablet-large\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:hover\:u-text-transparent:hover{
    color: transparent !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-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus{
    color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-text-secundary:focus{
    color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus\:u-text-transparent:focus{
    color: transparent !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-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-placeholder-white::-moz-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-black::-moz-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-0::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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary::-moz-placeholder{
    color: var(--primary) !important;
  }

  .tablet-large\:u-placeholder-primary::placeholder{
    color: var(--primary) !important;
  }

  .tablet-large\:u-placeholder-secundary::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .tablet-large\:u-placeholder-secundary::placeholder{
    color: var(--secundary) !important;
  }

  .tablet-large\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-large\:u-placeholder-transparent::placeholder{
    color: transparent !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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-0: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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary:focus::-moz-placeholder{
    color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary:focus::placeholder{
    color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary:focus::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary:focus::placeholder{
    color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-large\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .tablet-large\:u-placeholder-opacity-0::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 1 !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-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .tablet-large\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .tablet-large\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .tablet-large\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .tablet-large\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .tablet-large\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .tablet-large\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .tablet-large\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .tablet-large\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .tablet-large\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .tablet-large\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .tablet-large\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .tablet-large\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .tablet-large\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .tablet-large\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .tablet-large\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .tablet-large\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .tablet-large\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .tablet-large\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .tablet-large\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .tablet-large\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .tablet-large\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .tablet-large\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .tablet-large\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .tablet-large\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .tablet-large\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .tablet-large\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .tablet-large\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .tablet-large\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .tablet-large\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .tablet-large\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .tablet-large\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !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;
  }

  .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;
  }

  .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\: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\: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\: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-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\: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\: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\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .tablet-large\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .tablet-large\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet-large\:u-ring-secundary{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet-large\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:u-ring-transparent{
    --tw-ring-color: transparent !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-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-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus-within{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary:focus-within{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet-large\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !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-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus{
    --tw-ring-color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-ring-secundary:focus{
    --tw-ring-color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !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-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-offset-white{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:u-ring-offset-black{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:u-ring-offset-faded{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-large\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:u-ring-offset-primary{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet-large\:u-ring-offset-secundary{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet-large\:u-ring-offset-success{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet-large\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-large\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #262626 !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:focus-within{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary:focus-within{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-large\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #262626 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary:focus{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary:focus{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .tablet-large\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .tablet-large\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-large\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-large\:u-filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
  }

  .tablet-large\:u-filter-none{
    filter: none !important;
  }

  .tablet-large\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .tablet-large\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .tablet-large\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .tablet-large\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .tablet-large\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .tablet-large\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .tablet-large\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .tablet-large\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .tablet-large\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .tablet-large\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .tablet-large\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .tablet-large\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .tablet-large\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .tablet-large\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .tablet-large\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .tablet-large\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .tablet-large\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .tablet-large\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .tablet-large\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .tablet-large\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .tablet-large\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .tablet-large\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .tablet-large\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .tablet-large\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .tablet-large\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .tablet-large\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .tablet-large\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .tablet-large\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .tablet-large\:u-drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
  }

  .tablet-large\:u-drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
  }

  .tablet-large\:u-drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
  }

  .tablet-large\:u-drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
  }

  .tablet-large\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .tablet-large\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .tablet-large\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .tablet-large\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .tablet-large\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .tablet-large\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .tablet-large\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .tablet-large\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .tablet-large\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .tablet-large\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .tablet-large\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .tablet-large\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .tablet-large\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .tablet-large\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .tablet-large\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .tablet-large\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .tablet-large\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .tablet-large\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .tablet-large\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .tablet-large\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .tablet-large\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .tablet-large\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .tablet-large\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .tablet-large\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .tablet-large\:u-backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
  }

  .tablet-large\:u-backdrop-filter-none{
    backdrop-filter: none !important;
  }

  .tablet-large\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .tablet-large\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .tablet-large\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .tablet-large\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .tablet-large\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .tablet-large\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .tablet-large\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .tablet-large\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .tablet-large\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .tablet-large\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .tablet-large\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .tablet-large\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .tablet-large\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .tablet-large\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .tablet-large\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .tablet-large\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .tablet-large\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .tablet-large\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .tablet-large\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .tablet-large\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .tablet-large\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .tablet-large\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .tablet-large\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .tablet-large\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .tablet-large\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .tablet-large\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .tablet-large\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .tablet-large\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .tablet-large\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .tablet-large\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .tablet-large\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .tablet-large\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .tablet-large\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .tablet-large\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .tablet-large\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .tablet-large\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .tablet-large\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .tablet-large\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .tablet-large\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .tablet-large\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .tablet-large\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .tablet-large\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .tablet-large\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .tablet-large\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .tablet-large\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .tablet-large\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .tablet-large\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .tablet-large\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .tablet-large\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .tablet-large\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .tablet-large\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .tablet-large\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .tablet-large\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .tablet-large\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .tablet-large\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .tablet-large\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .tablet-large\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .tablet-large\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .tablet-large\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .tablet-large\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .tablet-large\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .tablet-large\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .tablet-large\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .tablet-large\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !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, filter, backdrop-filter !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-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-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-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;
  }
}

@media (min-width: 1280px){
  .desktop\:u-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

  @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: 1280px){
    .desktop\:u-container{
      max-width: 1280px;
    }
  }

  .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-pointer-events-none{
    pointer-events: none !important;
  }

  .desktop\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .desktop\:u-visible{
    visibility: visible !important;
  }

  .desktop\:u-invisible{
    visibility: hidden !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-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .desktop\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .desktop\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .desktop\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .desktop\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .desktop\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .desktop\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .desktop\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .desktop\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .desktop\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .desktop\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .desktop\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .desktop\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .desktop\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .desktop\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .desktop\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .desktop\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .desktop\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .desktop\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .desktop\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .desktop\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .desktop\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .desktop\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .desktop\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .desktop\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .desktop\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .desktop\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .desktop\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .desktop\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .desktop\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .desktop\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .desktop\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .desktop\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .desktop\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .desktop\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .desktop\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .desktop\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .desktop\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .desktop\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .desktop\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .desktop\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .desktop\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .desktop\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .desktop\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .desktop\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .desktop\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .desktop\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .desktop\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .desktop\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .desktop\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .desktop\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .desktop\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .desktop\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .desktop\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .desktop\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .desktop\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .desktop\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .desktop\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .desktop\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .desktop\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .desktop\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .desktop\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .desktop\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .desktop\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .desktop\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .desktop\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .desktop\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .desktop\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .desktop\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .desktop\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .desktop\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .desktop\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .desktop\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .desktop\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .desktop\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .desktop\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .desktop\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .desktop\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .desktop\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .desktop\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .desktop\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .desktop\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .desktop\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .desktop\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .desktop\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .desktop\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .desktop\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .desktop\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .desktop\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .desktop\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .desktop\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .desktop\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .desktop\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .desktop\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .desktop\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .desktop\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .desktop\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .desktop\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .desktop\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .desktop\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .desktop\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .desktop\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .desktop\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .desktop\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .desktop\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .desktop\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .desktop\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .desktop\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .desktop\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .desktop\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .desktop\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .desktop\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .desktop\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .desktop\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .desktop\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .desktop\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .desktop\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .desktop\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .desktop\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .desktop\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .desktop\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .desktop\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .desktop\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .desktop\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .desktop\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .desktop\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .desktop\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .desktop\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .desktop\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .desktop\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .desktop\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .desktop\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .desktop\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .desktop\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .desktop\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .desktop\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .desktop\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .desktop\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .desktop\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .desktop\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .desktop\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .desktop\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .desktop\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .desktop\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .desktop\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .desktop\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .desktop\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .desktop\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .desktop\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .desktop\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .desktop\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .desktop\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .desktop\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .desktop\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .desktop\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .desktop\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .desktop\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .desktop\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .desktop\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .desktop\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .desktop\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .desktop\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .desktop\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .desktop\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .desktop\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .desktop\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .desktop\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .desktop\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .desktop\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .desktop\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .desktop\:u-top-0{
    top: 0px !important;
  }

  .desktop\:u-top-1{
    top: 0.25rem !important;
  }

  .desktop\:u-top-2{
    top: 0.5rem !important;
  }

  .desktop\:u-top-3{
    top: 0.75rem !important;
  }

  .desktop\:u-top-4{
    top: 1rem !important;
  }

  .desktop\:u-top-5{
    top: 1.25rem !important;
  }

  .desktop\:u-top-6{
    top: 1.5rem !important;
  }

  .desktop\:u-top-7{
    top: 1.75rem !important;
  }

  .desktop\:u-top-8{
    top: 2rem !important;
  }

  .desktop\:u-top-9{
    top: 2.25rem !important;
  }

  .desktop\:u-top-10{
    top: 2.5rem !important;
  }

  .desktop\:u-top-11{
    top: 2.75rem !important;
  }

  .desktop\:u-top-12{
    top: 3rem !important;
  }

  .desktop\:u-top-14{
    top: 3.5rem !important;
  }

  .desktop\:u-top-16{
    top: 4rem !important;
  }

  .desktop\:u-top-20{
    top: 5rem !important;
  }

  .desktop\:u-top-24{
    top: 6rem !important;
  }

  .desktop\:u-top-28{
    top: 7rem !important;
  }

  .desktop\:u-top-32{
    top: 8rem !important;
  }

  .desktop\:u-top-36{
    top: 9rem !important;
  }

  .desktop\:u-top-40{
    top: 10rem !important;
  }

  .desktop\:u-top-44{
    top: 11rem !important;
  }

  .desktop\:u-top-48{
    top: 12rem !important;
  }

  .desktop\:u-top-52{
    top: 13rem !important;
  }

  .desktop\:u-top-56{
    top: 14rem !important;
  }

  .desktop\:u-top-60{
    top: 15rem !important;
  }

  .desktop\:u-top-64{
    top: 16rem !important;
  }

  .desktop\:u-top-72{
    top: 18rem !important;
  }

  .desktop\:u-top-80{
    top: 20rem !important;
  }

  .desktop\:u-top-96{
    top: 24rem !important;
  }

  .desktop\:u-top-auto{
    top: auto !important;
  }

  .desktop\:u-top-px{
    top: 1px !important;
  }

  .desktop\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .desktop\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .desktop\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .desktop\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .desktop\:u--top-0{
    top: 0px !important;
  }

  .desktop\:u--top-1{
    top: -0.25rem !important;
  }

  .desktop\:u--top-2{
    top: -0.5rem !important;
  }

  .desktop\:u--top-3{
    top: -0.75rem !important;
  }

  .desktop\:u--top-4{
    top: -1rem !important;
  }

  .desktop\:u--top-5{
    top: -1.25rem !important;
  }

  .desktop\:u--top-6{
    top: -1.5rem !important;
  }

  .desktop\:u--top-7{
    top: -1.75rem !important;
  }

  .desktop\:u--top-8{
    top: -2rem !important;
  }

  .desktop\:u--top-9{
    top: -2.25rem !important;
  }

  .desktop\:u--top-10{
    top: -2.5rem !important;
  }

  .desktop\:u--top-11{
    top: -2.75rem !important;
  }

  .desktop\:u--top-12{
    top: -3rem !important;
  }

  .desktop\:u--top-14{
    top: -3.5rem !important;
  }

  .desktop\:u--top-16{
    top: -4rem !important;
  }

  .desktop\:u--top-20{
    top: -5rem !important;
  }

  .desktop\:u--top-24{
    top: -6rem !important;
  }

  .desktop\:u--top-28{
    top: -7rem !important;
  }

  .desktop\:u--top-32{
    top: -8rem !important;
  }

  .desktop\:u--top-36{
    top: -9rem !important;
  }

  .desktop\:u--top-40{
    top: -10rem !important;
  }

  .desktop\:u--top-44{
    top: -11rem !important;
  }

  .desktop\:u--top-48{
    top: -12rem !important;
  }

  .desktop\:u--top-52{
    top: -13rem !important;
  }

  .desktop\:u--top-56{
    top: -14rem !important;
  }

  .desktop\:u--top-60{
    top: -15rem !important;
  }

  .desktop\:u--top-64{
    top: -16rem !important;
  }

  .desktop\:u--top-72{
    top: -18rem !important;
  }

  .desktop\:u--top-80{
    top: -20rem !important;
  }

  .desktop\:u--top-96{
    top: -24rem !important;
  }

  .desktop\:u--top-px{
    top: -1px !important;
  }

  .desktop\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .desktop\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .desktop\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .desktop\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .desktop\:u-top-1\/2{
    top: 50% !important;
  }

  .desktop\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .desktop\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .desktop\:u-top-1\/4{
    top: 25% !important;
  }

  .desktop\:u-top-2\/4{
    top: 50% !important;
  }

  .desktop\:u-top-3\/4{
    top: 75% !important;
  }

  .desktop\:u-top-full{
    top: 100% !important;
  }

  .desktop\:u--top-1\/2{
    top: -50% !important;
  }

  .desktop\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .desktop\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .desktop\:u--top-1\/4{
    top: -25% !important;
  }

  .desktop\:u--top-2\/4{
    top: -50% !important;
  }

  .desktop\:u--top-3\/4{
    top: -75% !important;
  }

  .desktop\:u--top-full{
    top: -100% !important;
  }

  .desktop\:u-right-0{
    right: 0px !important;
  }

  .desktop\:u-right-1{
    right: 0.25rem !important;
  }

  .desktop\:u-right-2{
    right: 0.5rem !important;
  }

  .desktop\:u-right-3{
    right: 0.75rem !important;
  }

  .desktop\:u-right-4{
    right: 1rem !important;
  }

  .desktop\:u-right-5{
    right: 1.25rem !important;
  }

  .desktop\:u-right-6{
    right: 1.5rem !important;
  }

  .desktop\:u-right-7{
    right: 1.75rem !important;
  }

  .desktop\:u-right-8{
    right: 2rem !important;
  }

  .desktop\:u-right-9{
    right: 2.25rem !important;
  }

  .desktop\:u-right-10{
    right: 2.5rem !important;
  }

  .desktop\:u-right-11{
    right: 2.75rem !important;
  }

  .desktop\:u-right-12{
    right: 3rem !important;
  }

  .desktop\:u-right-14{
    right: 3.5rem !important;
  }

  .desktop\:u-right-16{
    right: 4rem !important;
  }

  .desktop\:u-right-20{
    right: 5rem !important;
  }

  .desktop\:u-right-24{
    right: 6rem !important;
  }

  .desktop\:u-right-28{
    right: 7rem !important;
  }

  .desktop\:u-right-32{
    right: 8rem !important;
  }

  .desktop\:u-right-36{
    right: 9rem !important;
  }

  .desktop\:u-right-40{
    right: 10rem !important;
  }

  .desktop\:u-right-44{
    right: 11rem !important;
  }

  .desktop\:u-right-48{
    right: 12rem !important;
  }

  .desktop\:u-right-52{
    right: 13rem !important;
  }

  .desktop\:u-right-56{
    right: 14rem !important;
  }

  .desktop\:u-right-60{
    right: 15rem !important;
  }

  .desktop\:u-right-64{
    right: 16rem !important;
  }

  .desktop\:u-right-72{
    right: 18rem !important;
  }

  .desktop\:u-right-80{
    right: 20rem !important;
  }

  .desktop\:u-right-96{
    right: 24rem !important;
  }

  .desktop\:u-right-auto{
    right: auto !important;
  }

  .desktop\:u-right-px{
    right: 1px !important;
  }

  .desktop\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .desktop\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .desktop\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .desktop\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .desktop\:u--right-0{
    right: 0px !important;
  }

  .desktop\:u--right-1{
    right: -0.25rem !important;
  }

  .desktop\:u--right-2{
    right: -0.5rem !important;
  }

  .desktop\:u--right-3{
    right: -0.75rem !important;
  }

  .desktop\:u--right-4{
    right: -1rem !important;
  }

  .desktop\:u--right-5{
    right: -1.25rem !important;
  }

  .desktop\:u--right-6{
    right: -1.5rem !important;
  }

  .desktop\:u--right-7{
    right: -1.75rem !important;
  }

  .desktop\:u--right-8{
    right: -2rem !important;
  }

  .desktop\:u--right-9{
    right: -2.25rem !important;
  }

  .desktop\:u--right-10{
    right: -2.5rem !important;
  }

  .desktop\:u--right-11{
    right: -2.75rem !important;
  }

  .desktop\:u--right-12{
    right: -3rem !important;
  }

  .desktop\:u--right-14{
    right: -3.5rem !important;
  }

  .desktop\:u--right-16{
    right: -4rem !important;
  }

  .desktop\:u--right-20{
    right: -5rem !important;
  }

  .desktop\:u--right-24{
    right: -6rem !important;
  }

  .desktop\:u--right-28{
    right: -7rem !important;
  }

  .desktop\:u--right-32{
    right: -8rem !important;
  }

  .desktop\:u--right-36{
    right: -9rem !important;
  }

  .desktop\:u--right-40{
    right: -10rem !important;
  }

  .desktop\:u--right-44{
    right: -11rem !important;
  }

  .desktop\:u--right-48{
    right: -12rem !important;
  }

  .desktop\:u--right-52{
    right: -13rem !important;
  }

  .desktop\:u--right-56{
    right: -14rem !important;
  }

  .desktop\:u--right-60{
    right: -15rem !important;
  }

  .desktop\:u--right-64{
    right: -16rem !important;
  }

  .desktop\:u--right-72{
    right: -18rem !important;
  }

  .desktop\:u--right-80{
    right: -20rem !important;
  }

  .desktop\:u--right-96{
    right: -24rem !important;
  }

  .desktop\:u--right-px{
    right: -1px !important;
  }

  .desktop\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .desktop\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .desktop\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .desktop\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .desktop\:u-right-1\/2{
    right: 50% !important;
  }

  .desktop\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .desktop\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .desktop\:u-right-1\/4{
    right: 25% !important;
  }

  .desktop\:u-right-2\/4{
    right: 50% !important;
  }

  .desktop\:u-right-3\/4{
    right: 75% !important;
  }

  .desktop\:u-right-full{
    right: 100% !important;
  }

  .desktop\:u--right-1\/2{
    right: -50% !important;
  }

  .desktop\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .desktop\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .desktop\:u--right-1\/4{
    right: -25% !important;
  }

  .desktop\:u--right-2\/4{
    right: -50% !important;
  }

  .desktop\:u--right-3\/4{
    right: -75% !important;
  }

  .desktop\:u--right-full{
    right: -100% !important;
  }

  .desktop\:u-bottom-0{
    bottom: 0px !important;
  }

  .desktop\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .desktop\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .desktop\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .desktop\:u-bottom-4{
    bottom: 1rem !important;
  }

  .desktop\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .desktop\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .desktop\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .desktop\:u-bottom-8{
    bottom: 2rem !important;
  }

  .desktop\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .desktop\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .desktop\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .desktop\:u-bottom-12{
    bottom: 3rem !important;
  }

  .desktop\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .desktop\:u-bottom-16{
    bottom: 4rem !important;
  }

  .desktop\:u-bottom-20{
    bottom: 5rem !important;
  }

  .desktop\:u-bottom-24{
    bottom: 6rem !important;
  }

  .desktop\:u-bottom-28{
    bottom: 7rem !important;
  }

  .desktop\:u-bottom-32{
    bottom: 8rem !important;
  }

  .desktop\:u-bottom-36{
    bottom: 9rem !important;
  }

  .desktop\:u-bottom-40{
    bottom: 10rem !important;
  }

  .desktop\:u-bottom-44{
    bottom: 11rem !important;
  }

  .desktop\:u-bottom-48{
    bottom: 12rem !important;
  }

  .desktop\:u-bottom-52{
    bottom: 13rem !important;
  }

  .desktop\:u-bottom-56{
    bottom: 14rem !important;
  }

  .desktop\:u-bottom-60{
    bottom: 15rem !important;
  }

  .desktop\:u-bottom-64{
    bottom: 16rem !important;
  }

  .desktop\:u-bottom-72{
    bottom: 18rem !important;
  }

  .desktop\:u-bottom-80{
    bottom: 20rem !important;
  }

  .desktop\:u-bottom-96{
    bottom: 24rem !important;
  }

  .desktop\:u-bottom-auto{
    bottom: auto !important;
  }

  .desktop\:u-bottom-px{
    bottom: 1px !important;
  }

  .desktop\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .desktop\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .desktop\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .desktop\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .desktop\:u--bottom-0{
    bottom: 0px !important;
  }

  .desktop\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .desktop\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .desktop\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .desktop\:u--bottom-4{
    bottom: -1rem !important;
  }

  .desktop\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .desktop\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .desktop\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .desktop\:u--bottom-8{
    bottom: -2rem !important;
  }

  .desktop\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .desktop\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .desktop\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .desktop\:u--bottom-12{
    bottom: -3rem !important;
  }

  .desktop\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .desktop\:u--bottom-16{
    bottom: -4rem !important;
  }

  .desktop\:u--bottom-20{
    bottom: -5rem !important;
  }

  .desktop\:u--bottom-24{
    bottom: -6rem !important;
  }

  .desktop\:u--bottom-28{
    bottom: -7rem !important;
  }

  .desktop\:u--bottom-32{
    bottom: -8rem !important;
  }

  .desktop\:u--bottom-36{
    bottom: -9rem !important;
  }

  .desktop\:u--bottom-40{
    bottom: -10rem !important;
  }

  .desktop\:u--bottom-44{
    bottom: -11rem !important;
  }

  .desktop\:u--bottom-48{
    bottom: -12rem !important;
  }

  .desktop\:u--bottom-52{
    bottom: -13rem !important;
  }

  .desktop\:u--bottom-56{
    bottom: -14rem !important;
  }

  .desktop\:u--bottom-60{
    bottom: -15rem !important;
  }

  .desktop\:u--bottom-64{
    bottom: -16rem !important;
  }

  .desktop\:u--bottom-72{
    bottom: -18rem !important;
  }

  .desktop\:u--bottom-80{
    bottom: -20rem !important;
  }

  .desktop\:u--bottom-96{
    bottom: -24rem !important;
  }

  .desktop\:u--bottom-px{
    bottom: -1px !important;
  }

  .desktop\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .desktop\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .desktop\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .desktop\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .desktop\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .desktop\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .desktop\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .desktop\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .desktop\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .desktop\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .desktop\:u-bottom-full{
    bottom: 100% !important;
  }

  .desktop\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .desktop\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .desktop\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .desktop\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .desktop\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .desktop\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .desktop\:u--bottom-full{
    bottom: -100% !important;
  }

  .desktop\:u-left-0{
    left: 0px !important;
  }

  .desktop\:u-left-1{
    left: 0.25rem !important;
  }

  .desktop\:u-left-2{
    left: 0.5rem !important;
  }

  .desktop\:u-left-3{
    left: 0.75rem !important;
  }

  .desktop\:u-left-4{
    left: 1rem !important;
  }

  .desktop\:u-left-5{
    left: 1.25rem !important;
  }

  .desktop\:u-left-6{
    left: 1.5rem !important;
  }

  .desktop\:u-left-7{
    left: 1.75rem !important;
  }

  .desktop\:u-left-8{
    left: 2rem !important;
  }

  .desktop\:u-left-9{
    left: 2.25rem !important;
  }

  .desktop\:u-left-10{
    left: 2.5rem !important;
  }

  .desktop\:u-left-11{
    left: 2.75rem !important;
  }

  .desktop\:u-left-12{
    left: 3rem !important;
  }

  .desktop\:u-left-14{
    left: 3.5rem !important;
  }

  .desktop\:u-left-16{
    left: 4rem !important;
  }

  .desktop\:u-left-20{
    left: 5rem !important;
  }

  .desktop\:u-left-24{
    left: 6rem !important;
  }

  .desktop\:u-left-28{
    left: 7rem !important;
  }

  .desktop\:u-left-32{
    left: 8rem !important;
  }

  .desktop\:u-left-36{
    left: 9rem !important;
  }

  .desktop\:u-left-40{
    left: 10rem !important;
  }

  .desktop\:u-left-44{
    left: 11rem !important;
  }

  .desktop\:u-left-48{
    left: 12rem !important;
  }

  .desktop\:u-left-52{
    left: 13rem !important;
  }

  .desktop\:u-left-56{
    left: 14rem !important;
  }

  .desktop\:u-left-60{
    left: 15rem !important;
  }

  .desktop\:u-left-64{
    left: 16rem !important;
  }

  .desktop\:u-left-72{
    left: 18rem !important;
  }

  .desktop\:u-left-80{
    left: 20rem !important;
  }

  .desktop\:u-left-96{
    left: 24rem !important;
  }

  .desktop\:u-left-auto{
    left: auto !important;
  }

  .desktop\:u-left-px{
    left: 1px !important;
  }

  .desktop\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .desktop\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .desktop\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .desktop\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .desktop\:u--left-0{
    left: 0px !important;
  }

  .desktop\:u--left-1{
    left: -0.25rem !important;
  }

  .desktop\:u--left-2{
    left: -0.5rem !important;
  }

  .desktop\:u--left-3{
    left: -0.75rem !important;
  }

  .desktop\:u--left-4{
    left: -1rem !important;
  }

  .desktop\:u--left-5{
    left: -1.25rem !important;
  }

  .desktop\:u--left-6{
    left: -1.5rem !important;
  }

  .desktop\:u--left-7{
    left: -1.75rem !important;
  }

  .desktop\:u--left-8{
    left: -2rem !important;
  }

  .desktop\:u--left-9{
    left: -2.25rem !important;
  }

  .desktop\:u--left-10{
    left: -2.5rem !important;
  }

  .desktop\:u--left-11{
    left: -2.75rem !important;
  }

  .desktop\:u--left-12{
    left: -3rem !important;
  }

  .desktop\:u--left-14{
    left: -3.5rem !important;
  }

  .desktop\:u--left-16{
    left: -4rem !important;
  }

  .desktop\:u--left-20{
    left: -5rem !important;
  }

  .desktop\:u--left-24{
    left: -6rem !important;
  }

  .desktop\:u--left-28{
    left: -7rem !important;
  }

  .desktop\:u--left-32{
    left: -8rem !important;
  }

  .desktop\:u--left-36{
    left: -9rem !important;
  }

  .desktop\:u--left-40{
    left: -10rem !important;
  }

  .desktop\:u--left-44{
    left: -11rem !important;
  }

  .desktop\:u--left-48{
    left: -12rem !important;
  }

  .desktop\:u--left-52{
    left: -13rem !important;
  }

  .desktop\:u--left-56{
    left: -14rem !important;
  }

  .desktop\:u--left-60{
    left: -15rem !important;
  }

  .desktop\:u--left-64{
    left: -16rem !important;
  }

  .desktop\:u--left-72{
    left: -18rem !important;
  }

  .desktop\:u--left-80{
    left: -20rem !important;
  }

  .desktop\:u--left-96{
    left: -24rem !important;
  }

  .desktop\:u--left-px{
    left: -1px !important;
  }

  .desktop\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .desktop\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .desktop\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .desktop\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .desktop\:u-left-1\/2{
    left: 50% !important;
  }

  .desktop\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .desktop\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .desktop\:u-left-1\/4{
    left: 25% !important;
  }

  .desktop\:u-left-2\/4{
    left: 50% !important;
  }

  .desktop\:u-left-3\/4{
    left: 75% !important;
  }

  .desktop\:u-left-full{
    left: 100% !important;
  }

  .desktop\:u--left-1\/2{
    left: -50% !important;
  }

  .desktop\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .desktop\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .desktop\:u--left-1\/4{
    left: -25% !important;
  }

  .desktop\:u--left-2\/4{
    left: -50% !important;
  }

  .desktop\:u--left-3\/4{
    left: -75% !important;
  }

  .desktop\:u--left-full{
    left: -100% !important;
  }

  .desktop\:u-isolate{
    isolation: isolate !important;
  }

  .desktop\:u-isolation-auto{
    isolation: auto !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-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-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-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-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-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-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .desktop\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .desktop\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .desktop\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .desktop\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .desktop\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .desktop\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .desktop\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .desktop\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .desktop\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .desktop\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .desktop\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .desktop\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .desktop\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .desktop\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .desktop\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .desktop\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .desktop\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .desktop\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .desktop\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .desktop\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .desktop\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .desktop\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .desktop\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .desktop\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .desktop\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .desktop\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .desktop\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .desktop\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .desktop\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .desktop\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .desktop\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .desktop\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .desktop\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .desktop\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .desktop\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .desktop\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .desktop\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .desktop\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .desktop\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .desktop\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .desktop\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .desktop\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .desktop\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .desktop\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .desktop\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .desktop\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .desktop\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .desktop\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .desktop\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .desktop\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .desktop\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .desktop\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .desktop\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .desktop\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .desktop\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .desktop\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .desktop\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .desktop\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .desktop\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .desktop\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .desktop\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .desktop\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .desktop\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .desktop\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .desktop\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .desktop\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .desktop\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .desktop\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .desktop\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !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-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .desktop\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .desktop\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .desktop\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .desktop\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .desktop\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .desktop\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .desktop\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .desktop\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .desktop\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .desktop\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .desktop\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .desktop\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .desktop\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .desktop\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .desktop\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .desktop\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .desktop\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .desktop\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .desktop\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .desktop\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .desktop\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .desktop\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .desktop\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .desktop\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .desktop\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .desktop\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .desktop\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .desktop\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .desktop\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .desktop\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .desktop\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .desktop\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .desktop\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .desktop\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .desktop\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .desktop\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .desktop\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .desktop\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .desktop\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .desktop\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .desktop\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .desktop\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .desktop\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .desktop\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .desktop\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .desktop\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .desktop\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .desktop\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .desktop\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .desktop\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .desktop\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .desktop\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .desktop\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .desktop\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .desktop\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .desktop\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .desktop\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .desktop\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .desktop\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .desktop\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .desktop\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .desktop\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .desktop\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .desktop\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .desktop\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .desktop\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .desktop\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .desktop\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .desktop\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .desktop\:u-mt-0{
    margin-top: 0px !important;
  }

  .desktop\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .desktop\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .desktop\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .desktop\:u-mt-4{
    margin-top: 1rem !important;
  }

  .desktop\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .desktop\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .desktop\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .desktop\:u-mt-8{
    margin-top: 2rem !important;
  }

  .desktop\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .desktop\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .desktop\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .desktop\:u-mt-12{
    margin-top: 3rem !important;
  }

  .desktop\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .desktop\:u-mt-16{
    margin-top: 4rem !important;
  }

  .desktop\:u-mt-20{
    margin-top: 5rem !important;
  }

  .desktop\:u-mt-24{
    margin-top: 6rem !important;
  }

  .desktop\:u-mt-28{
    margin-top: 7rem !important;
  }

  .desktop\:u-mt-32{
    margin-top: 8rem !important;
  }

  .desktop\:u-mt-36{
    margin-top: 9rem !important;
  }

  .desktop\:u-mt-40{
    margin-top: 10rem !important;
  }

  .desktop\:u-mt-44{
    margin-top: 11rem !important;
  }

  .desktop\:u-mt-48{
    margin-top: 12rem !important;
  }

  .desktop\:u-mt-52{
    margin-top: 13rem !important;
  }

  .desktop\:u-mt-56{
    margin-top: 14rem !important;
  }

  .desktop\:u-mt-60{
    margin-top: 15rem !important;
  }

  .desktop\:u-mt-64{
    margin-top: 16rem !important;
  }

  .desktop\:u-mt-72{
    margin-top: 18rem !important;
  }

  .desktop\:u-mt-80{
    margin-top: 20rem !important;
  }

  .desktop\:u-mt-96{
    margin-top: 24rem !important;
  }

  .desktop\:u-mt-auto{
    margin-top: auto !important;
  }

  .desktop\:u-mt-px{
    margin-top: 1px !important;
  }

  .desktop\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .desktop\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .desktop\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .desktop\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .desktop\:u--mt-0{
    margin-top: 0px !important;
  }

  .desktop\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .desktop\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .desktop\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .desktop\:u--mt-4{
    margin-top: -1rem !important;
  }

  .desktop\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .desktop\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .desktop\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .desktop\:u--mt-8{
    margin-top: -2rem !important;
  }

  .desktop\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .desktop\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .desktop\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .desktop\:u--mt-12{
    margin-top: -3rem !important;
  }

  .desktop\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .desktop\:u--mt-16{
    margin-top: -4rem !important;
  }

  .desktop\:u--mt-20{
    margin-top: -5rem !important;
  }

  .desktop\:u--mt-24{
    margin-top: -6rem !important;
  }

  .desktop\:u--mt-28{
    margin-top: -7rem !important;
  }

  .desktop\:u--mt-32{
    margin-top: -8rem !important;
  }

  .desktop\:u--mt-36{
    margin-top: -9rem !important;
  }

  .desktop\:u--mt-40{
    margin-top: -10rem !important;
  }

  .desktop\:u--mt-44{
    margin-top: -11rem !important;
  }

  .desktop\:u--mt-48{
    margin-top: -12rem !important;
  }

  .desktop\:u--mt-52{
    margin-top: -13rem !important;
  }

  .desktop\:u--mt-56{
    margin-top: -14rem !important;
  }

  .desktop\:u--mt-60{
    margin-top: -15rem !important;
  }

  .desktop\:u--mt-64{
    margin-top: -16rem !important;
  }

  .desktop\:u--mt-72{
    margin-top: -18rem !important;
  }

  .desktop\:u--mt-80{
    margin-top: -20rem !important;
  }

  .desktop\:u--mt-96{
    margin-top: -24rem !important;
  }

  .desktop\:u--mt-px{
    margin-top: -1px !important;
  }

  .desktop\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .desktop\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .desktop\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .desktop\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .desktop\:u-mr-0{
    margin-right: 0px !important;
  }

  .desktop\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .desktop\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .desktop\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .desktop\:u-mr-4{
    margin-right: 1rem !important;
  }

  .desktop\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .desktop\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .desktop\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .desktop\:u-mr-8{
    margin-right: 2rem !important;
  }

  .desktop\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .desktop\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .desktop\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .desktop\:u-mr-12{
    margin-right: 3rem !important;
  }

  .desktop\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .desktop\:u-mr-16{
    margin-right: 4rem !important;
  }

  .desktop\:u-mr-20{
    margin-right: 5rem !important;
  }

  .desktop\:u-mr-24{
    margin-right: 6rem !important;
  }

  .desktop\:u-mr-28{
    margin-right: 7rem !important;
  }

  .desktop\:u-mr-32{
    margin-right: 8rem !important;
  }

  .desktop\:u-mr-36{
    margin-right: 9rem !important;
  }

  .desktop\:u-mr-40{
    margin-right: 10rem !important;
  }

  .desktop\:u-mr-44{
    margin-right: 11rem !important;
  }

  .desktop\:u-mr-48{
    margin-right: 12rem !important;
  }

  .desktop\:u-mr-52{
    margin-right: 13rem !important;
  }

  .desktop\:u-mr-56{
    margin-right: 14rem !important;
  }

  .desktop\:u-mr-60{
    margin-right: 15rem !important;
  }

  .desktop\:u-mr-64{
    margin-right: 16rem !important;
  }

  .desktop\:u-mr-72{
    margin-right: 18rem !important;
  }

  .desktop\:u-mr-80{
    margin-right: 20rem !important;
  }

  .desktop\:u-mr-96{
    margin-right: 24rem !important;
  }

  .desktop\:u-mr-auto{
    margin-right: auto !important;
  }

  .desktop\:u-mr-px{
    margin-right: 1px !important;
  }

  .desktop\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .desktop\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .desktop\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .desktop\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .desktop\:u--mr-0{
    margin-right: 0px !important;
  }

  .desktop\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .desktop\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .desktop\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .desktop\:u--mr-4{
    margin-right: -1rem !important;
  }

  .desktop\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .desktop\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .desktop\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .desktop\:u--mr-8{
    margin-right: -2rem !important;
  }

  .desktop\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .desktop\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .desktop\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .desktop\:u--mr-12{
    margin-right: -3rem !important;
  }

  .desktop\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .desktop\:u--mr-16{
    margin-right: -4rem !important;
  }

  .desktop\:u--mr-20{
    margin-right: -5rem !important;
  }

  .desktop\:u--mr-24{
    margin-right: -6rem !important;
  }

  .desktop\:u--mr-28{
    margin-right: -7rem !important;
  }

  .desktop\:u--mr-32{
    margin-right: -8rem !important;
  }

  .desktop\:u--mr-36{
    margin-right: -9rem !important;
  }

  .desktop\:u--mr-40{
    margin-right: -10rem !important;
  }

  .desktop\:u--mr-44{
    margin-right: -11rem !important;
  }

  .desktop\:u--mr-48{
    margin-right: -12rem !important;
  }

  .desktop\:u--mr-52{
    margin-right: -13rem !important;
  }

  .desktop\:u--mr-56{
    margin-right: -14rem !important;
  }

  .desktop\:u--mr-60{
    margin-right: -15rem !important;
  }

  .desktop\:u--mr-64{
    margin-right: -16rem !important;
  }

  .desktop\:u--mr-72{
    margin-right: -18rem !important;
  }

  .desktop\:u--mr-80{
    margin-right: -20rem !important;
  }

  .desktop\:u--mr-96{
    margin-right: -24rem !important;
  }

  .desktop\:u--mr-px{
    margin-right: -1px !important;
  }

  .desktop\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .desktop\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .desktop\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .desktop\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .desktop\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .desktop\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .desktop\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .desktop\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .desktop\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .desktop\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .desktop\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .desktop\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .desktop\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .desktop\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .desktop\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .desktop\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .desktop\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .desktop\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .desktop\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .desktop\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .desktop\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .desktop\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .desktop\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .desktop\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .desktop\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .desktop\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .desktop\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .desktop\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .desktop\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .desktop\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .desktop\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .desktop\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .desktop\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .desktop\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .desktop\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .desktop\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .desktop\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .desktop\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .desktop\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .desktop\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .desktop\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .desktop\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .desktop\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .desktop\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .desktop\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .desktop\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .desktop\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .desktop\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .desktop\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .desktop\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .desktop\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .desktop\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .desktop\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .desktop\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .desktop\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .desktop\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .desktop\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .desktop\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .desktop\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .desktop\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .desktop\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .desktop\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .desktop\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .desktop\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .desktop\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .desktop\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .desktop\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .desktop\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .desktop\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .desktop\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .desktop\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .desktop\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .desktop\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .desktop\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .desktop\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .desktop\:u-ml-0{
    margin-left: 0px !important;
  }

  .desktop\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .desktop\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .desktop\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .desktop\:u-ml-4{
    margin-left: 1rem !important;
  }

  .desktop\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .desktop\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .desktop\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .desktop\:u-ml-8{
    margin-left: 2rem !important;
  }

  .desktop\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .desktop\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .desktop\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .desktop\:u-ml-12{
    margin-left: 3rem !important;
  }

  .desktop\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .desktop\:u-ml-16{
    margin-left: 4rem !important;
  }

  .desktop\:u-ml-20{
    margin-left: 5rem !important;
  }

  .desktop\:u-ml-24{
    margin-left: 6rem !important;
  }

  .desktop\:u-ml-28{
    margin-left: 7rem !important;
  }

  .desktop\:u-ml-32{
    margin-left: 8rem !important;
  }

  .desktop\:u-ml-36{
    margin-left: 9rem !important;
  }

  .desktop\:u-ml-40{
    margin-left: 10rem !important;
  }

  .desktop\:u-ml-44{
    margin-left: 11rem !important;
  }

  .desktop\:u-ml-48{
    margin-left: 12rem !important;
  }

  .desktop\:u-ml-52{
    margin-left: 13rem !important;
  }

  .desktop\:u-ml-56{
    margin-left: 14rem !important;
  }

  .desktop\:u-ml-60{
    margin-left: 15rem !important;
  }

  .desktop\:u-ml-64{
    margin-left: 16rem !important;
  }

  .desktop\:u-ml-72{
    margin-left: 18rem !important;
  }

  .desktop\:u-ml-80{
    margin-left: 20rem !important;
  }

  .desktop\:u-ml-96{
    margin-left: 24rem !important;
  }

  .desktop\:u-ml-auto{
    margin-left: auto !important;
  }

  .desktop\:u-ml-px{
    margin-left: 1px !important;
  }

  .desktop\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .desktop\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .desktop\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .desktop\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .desktop\:u--ml-0{
    margin-left: 0px !important;
  }

  .desktop\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .desktop\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .desktop\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .desktop\:u--ml-4{
    margin-left: -1rem !important;
  }

  .desktop\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .desktop\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .desktop\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .desktop\:u--ml-8{
    margin-left: -2rem !important;
  }

  .desktop\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .desktop\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .desktop\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .desktop\:u--ml-12{
    margin-left: -3rem !important;
  }

  .desktop\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .desktop\:u--ml-16{
    margin-left: -4rem !important;
  }

  .desktop\:u--ml-20{
    margin-left: -5rem !important;
  }

  .desktop\:u--ml-24{
    margin-left: -6rem !important;
  }

  .desktop\:u--ml-28{
    margin-left: -7rem !important;
  }

  .desktop\:u--ml-32{
    margin-left: -8rem !important;
  }

  .desktop\:u--ml-36{
    margin-left: -9rem !important;
  }

  .desktop\:u--ml-40{
    margin-left: -10rem !important;
  }

  .desktop\:u--ml-44{
    margin-left: -11rem !important;
  }

  .desktop\:u--ml-48{
    margin-left: -12rem !important;
  }

  .desktop\:u--ml-52{
    margin-left: -13rem !important;
  }

  .desktop\:u--ml-56{
    margin-left: -14rem !important;
  }

  .desktop\:u--ml-60{
    margin-left: -15rem !important;
  }

  .desktop\:u--ml-64{
    margin-left: -16rem !important;
  }

  .desktop\:u--ml-72{
    margin-left: -18rem !important;
  }

  .desktop\:u--ml-80{
    margin-left: -20rem !important;
  }

  .desktop\:u--ml-96{
    margin-left: -24rem !important;
  }

  .desktop\:u--ml-px{
    margin-left: -1px !important;
  }

  .desktop\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .desktop\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .desktop\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .desktop\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .desktop\:u-box-border{
    box-sizing: border-box !important;
  }

  .desktop\:u-box-content{
    box-sizing: content-box !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-inline-table{
    display: inline-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-list-item{
    display: list-item !important;
  }

  .desktop\:u-hidden{
    display: none !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-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-min-h-0{
    min-height: 0px !important;
  }

  .desktop\:u-min-h-full{
    min-height: 100% !important;
  }

  .desktop\:u-min-h-screen{
    min-height: 100vh !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: -moz-min-content !important;
    width: min-content !important;
  }

  .desktop\:u-w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .desktop\:u-min-w-0{
    min-width: 0px !important;
  }

  .desktop\:u-min-w-full{
    min-width: 100% !important;
  }

  .desktop\:u-min-w-min{
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }

  .desktop\:u-min-w-max{
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }

  .desktop\:u-max-w-0{
    max-width: 0rem !important;
  }

  .desktop\:u-max-w-none{
    max-width: none !important;
  }

  .desktop\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .desktop\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .desktop\:u-max-w-md{
    max-width: 28rem !important;
  }

  .desktop\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .desktop\:u-max-w-xl{
    max-width: 36rem !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-7xl{
    max-width: 80rem !important;
  }

  .desktop\:u-max-w-full{
    max-width: 100% !important;
  }

  .desktop\:u-max-w-min{
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .desktop\:u-max-w-max{
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .desktop\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .desktop\:u-max-w-screen-mobile{
    max-width: 375px !important;
  }

  .desktop\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .desktop\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .desktop\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .desktop\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .desktop\:u-max-w-screen-desktop{
    max-width: 1280px !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: 1280px !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-none{
    flex: none !important;
  }

  .desktop\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .desktop\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .desktop\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .desktop\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .desktop\:u-table-auto{
    table-layout: auto !important;
  }

  .desktop\:u-table-fixed{
    table-layout: fixed !important;
  }

  .desktop\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .desktop\:u-border-separate{
    border-collapse: separate !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-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-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-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-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-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\: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\: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\: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-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-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-animate-none{
    animation: none !important;
  }

  .desktop\:u-animate-spin{
    animation: u-spin 1s linear infinite !important;
  }

  .desktop\:u-animate-ping{
    animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .desktop\:u-animate-pulse{
    animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .desktop\:u-animate-bounce{
    animation: u-bounce 1s infinite !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-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .desktop\:u-select-text{
    -webkit-user-select: text !important;
       -moz-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;
            user-select: auto !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-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-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .desktop\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .desktop\:u-auto-cols-min{
    grid-auto-columns: min-content !important;
  }

  .desktop\:u-auto-cols-max{
    grid-auto-columns: max-content !important;
  }

  .desktop\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !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-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .desktop\:u-auto-rows-min{
    grid-auto-rows: min-content !important;
  }

  .desktop\:u-auto-rows-max{
    grid-auto-rows: max-content !important;
  }

  .desktop\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !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-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-0 > :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(250, 250, 250, 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(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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 > :not([hidden]) ~ :not([hidden]){
    border-color: var(--primary) !important;
  }

  .desktop\:u-divide-secundary > :not([hidden]) ~ :not([hidden]){
    border-color: var(--secundary) !important;
  }

  .desktop\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !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-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-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-self-baseline{
    align-self: baseline !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-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{
    overscroll-behavior: auto !important;
  }

  .desktop\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .desktop\:u-overscroll-none{
    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-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-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-rounded-none{
    border-radius: 0px !important;
  }

  .desktop\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .desktop\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .desktop\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .desktop\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .desktop\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-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-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .desktop\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .desktop\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .desktop\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .desktop\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .desktop\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .desktop\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .desktop\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .desktop\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !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: 0px !important;
  }

  .desktop\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .desktop\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .desktop\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .desktop\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .desktop\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .desktop\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .desktop\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .desktop\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .desktop\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .desktop\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .desktop\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .desktop\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !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-t-2{
    border-top-width: 2px !important;
  }

  .desktop\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .desktop\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .desktop\:u-border-t{
    border-top-width: 1px !important;
  }

  .desktop\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .desktop\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .desktop\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .desktop\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .desktop\:u-border-r{
    border-right-width: 1px !important;
  }

  .desktop\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .desktop\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .desktop\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .desktop\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .desktop\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .desktop\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .desktop\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .desktop\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .desktop\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .desktop\:u-border-l{
    border-left-width: 1px !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-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .desktop\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .desktop\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .desktop\:u-border-transparent{
    border-color: transparent !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-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-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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{
    border-color: var(--primary) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary{
    border-color: var(--secundary) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .desktop\:group-hover\:u-border-transparent{
    border-color: transparent !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-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus-within{
    border-color: var(--primary) !important;
  }

  .desktop\:focus-within\:u-border-secundary:focus-within{
    border-color: var(--secundary) !important;
  }

  .desktop\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !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-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:hover{
    border-color: var(--primary) !important;
  }

  .desktop\:hover\:u-border-secundary:hover{
    border-color: var(--secundary) !important;
  }

  .desktop\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:hover\:u-border-transparent:hover{
    border-color: transparent !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-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(231, 231, 231, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(158, 158, 158, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(102, 102, 102, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(38, 38, 38, 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:focus{
    border-color: var(--primary) !important;
  }

  .desktop\:focus\:u-border-secundary:focus{
    border-color: var(--secundary) !important;
  }

  .desktop\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(159, 199, 52, 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\:focus\:u-border-transparent:focus{
    border-color: transparent !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-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .desktop\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .desktop\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .desktop\:u-bg-transparent{
    background-color: transparent !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-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-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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{
    background-color: var(--primary) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary{
    background-color: var(--secundary) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-transparent{
    background-color: transparent !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-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus-within{
    background-color: var(--primary) !important;
  }

  .desktop\:focus-within\:u-bg-secundary:focus-within{
    background-color: var(--secundary) !important;
  }

  .desktop\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !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-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:hover{
    background-color: var(--primary) !important;
  }

  .desktop\:hover\:u-bg-secundary:hover{
    background-color: var(--secundary) !important;
  }

  .desktop\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:hover\:u-bg-transparent:hover{
    background-color: transparent !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-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(231, 231, 231, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(158, 158, 158, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(102, 102, 102, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(38, 38, 38, 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:focus{
    background-color: var(--primary) !important;
  }

  .desktop\:focus\:u-bg-secundary:focus{
    background-color: var(--secundary) !important;
  }

  .desktop\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(159, 199, 52, 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\:focus\:u-bg-transparent:focus{
    background-color: transparent !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-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-white{
    --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-black{
    --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-faded{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:u-from-neutral-0{
    --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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:u-from-neutral-30{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .desktop\:u-from-neutral-40{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .desktop\:u-from-neutral-45{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:u-from-neutral-50{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-from-secundary{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-from-success{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:hover\:u-from-white: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-black: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-faded:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary:hover{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-from-success:hover{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:focus\:u-from-white: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-black: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-faded:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-0: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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #E7E7E7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #9E9E9E !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #666666 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #262626 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-from: var(--primary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary:focus{
    --tw-gradient-from: var(--secundary) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-from-success:focus{
    --tw-gradient-from: #9FC734 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(159, 199, 52, 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-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\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:u-via-neutral-0{
    --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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .desktop\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .desktop\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-via-secundary{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary:hover{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-0: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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #E7E7E7, var(--tw-gradient-to, rgba(231, 231, 231, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9E9E9E, var(--tw-gradient-to, rgba(158, 158, 158, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #666666, var(--tw-gradient-to, rgba(102, 102, 102, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgba(38, 38, 38, 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:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--primary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary:focus{
    --tw-gradient-stops: var(--tw-gradient-from), var(--secundary), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9FC734, var(--tw-gradient-to, rgba(159, 199, 52, 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-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-to-white{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:u-to-black{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:u-to-faded{
    --tw-gradient-to: #666666 !important;
  }

  .desktop\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:u-to-neutral-10{
    --tw-gradient-to: #FAFAFA !important;
  }

  .desktop\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .desktop\:u-to-neutral-20{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .desktop\:u-to-neutral-30{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .desktop\:u-to-neutral-40{
    --tw-gradient-to: #9E9E9E !important;
  }

  .desktop\:u-to-neutral-45{
    --tw-gradient-to: #666666 !important;
  }

  .desktop\:u-to-neutral-50{
    --tw-gradient-to: #262626 !important;
  }

  .desktop\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:u-to-primary{
    --tw-gradient-to: var(--primary) !important;
  }

  .desktop\:u-to-secundary{
    --tw-gradient-to: var(--secundary) !important;
  }

  .desktop\:u-to-success{
    --tw-gradient-to: #9FC734 !important;
  }

  .desktop\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .desktop\:hover\:u-to-white:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:hover\:u-to-black:hover{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:hover\:u-to-faded:hover{
    --tw-gradient-to: #666666 !important;
  }

  .desktop\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FAFAFA !important;
  }

  .desktop\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .desktop\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .desktop\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .desktop\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #9E9E9E !important;
  }

  .desktop\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #666666 !important;
  }

  .desktop\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #262626 !important;
  }

  .desktop\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:hover\:u-to-primary:hover{
    --tw-gradient-to: var(--primary) !important;
  }

  .desktop\:hover\:u-to-secundary:hover{
    --tw-gradient-to: var(--secundary) !important;
  }

  .desktop\:hover\:u-to-success:hover{
    --tw-gradient-to: #9FC734 !important;
  }

  .desktop\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .desktop\:focus\:u-to-white:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:focus\:u-to-black:focus{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:focus\:u-to-faded:focus{
    --tw-gradient-to: #666666 !important;
  }

  .desktop\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FAFAFA !important;
  }

  .desktop\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .desktop\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .desktop\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #E7E7E7 !important;
  }

  .desktop\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #9E9E9E !important;
  }

  .desktop\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #666666 !important;
  }

  .desktop\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #262626 !important;
  }

  .desktop\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:focus\:u-to-primary:focus{
    --tw-gradient-to: var(--primary) !important;
  }

  .desktop\:focus\:u-to-secundary:focus{
    --tw-gradient-to: var(--secundary) !important;
  }

  .desktop\:focus\:u-to-success:focus{
    --tw-gradient-to: #9FC734 !important;
  }

  .desktop\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .desktop\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .desktop\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !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-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-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-origin-border{
    background-origin: border-box !important;
  }

  .desktop\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .desktop\:u-bg-origin-content{
    background-origin: content-box !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-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-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-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .desktop\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .desktop\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .desktop\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .desktop\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .desktop\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .desktop\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .desktop\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .desktop\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .desktop\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .desktop\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .desktop\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .desktop\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .desktop\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .desktop\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .desktop\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .desktop\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .desktop\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .desktop\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .desktop\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .desktop\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .desktop\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .desktop\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .desktop\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .desktop\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .desktop\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .desktop\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .desktop\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .desktop\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .desktop\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .desktop\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .desktop\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .desktop\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .desktop\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .desktop\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .desktop\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .desktop\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .desktop\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .desktop\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .desktop\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .desktop\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .desktop\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .desktop\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .desktop\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .desktop\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .desktop\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .desktop\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .desktop\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .desktop\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .desktop\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .desktop\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .desktop\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .desktop\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .desktop\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .desktop\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .desktop\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .desktop\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .desktop\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .desktop\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .desktop\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .desktop\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .desktop\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .desktop\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .desktop\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .desktop\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .desktop\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .desktop\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .desktop\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .desktop\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .desktop\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .desktop\:u-pt-0{
    padding-top: 0px !important;
  }

  .desktop\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .desktop\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .desktop\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .desktop\:u-pt-4{
    padding-top: 1rem !important;
  }

  .desktop\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .desktop\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .desktop\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .desktop\:u-pt-8{
    padding-top: 2rem !important;
  }

  .desktop\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .desktop\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .desktop\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .desktop\:u-pt-12{
    padding-top: 3rem !important;
  }

  .desktop\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .desktop\:u-pt-16{
    padding-top: 4rem !important;
  }

  .desktop\:u-pt-20{
    padding-top: 5rem !important;
  }

  .desktop\:u-pt-24{
    padding-top: 6rem !important;
  }

  .desktop\:u-pt-28{
    padding-top: 7rem !important;
  }

  .desktop\:u-pt-32{
    padding-top: 8rem !important;
  }

  .desktop\:u-pt-36{
    padding-top: 9rem !important;
  }

  .desktop\:u-pt-40{
    padding-top: 10rem !important;
  }

  .desktop\:u-pt-44{
    padding-top: 11rem !important;
  }

  .desktop\:u-pt-48{
    padding-top: 12rem !important;
  }

  .desktop\:u-pt-52{
    padding-top: 13rem !important;
  }

  .desktop\:u-pt-56{
    padding-top: 14rem !important;
  }

  .desktop\:u-pt-60{
    padding-top: 15rem !important;
  }

  .desktop\:u-pt-64{
    padding-top: 16rem !important;
  }

  .desktop\:u-pt-72{
    padding-top: 18rem !important;
  }

  .desktop\:u-pt-80{
    padding-top: 20rem !important;
  }

  .desktop\:u-pt-96{
    padding-top: 24rem !important;
  }

  .desktop\:u-pt-px{
    padding-top: 1px !important;
  }

  .desktop\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .desktop\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .desktop\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .desktop\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .desktop\:u-pr-0{
    padding-right: 0px !important;
  }

  .desktop\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .desktop\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .desktop\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .desktop\:u-pr-4{
    padding-right: 1rem !important;
  }

  .desktop\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .desktop\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .desktop\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .desktop\:u-pr-8{
    padding-right: 2rem !important;
  }

  .desktop\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .desktop\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .desktop\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .desktop\:u-pr-12{
    padding-right: 3rem !important;
  }

  .desktop\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .desktop\:u-pr-16{
    padding-right: 4rem !important;
  }

  .desktop\:u-pr-20{
    padding-right: 5rem !important;
  }

  .desktop\:u-pr-24{
    padding-right: 6rem !important;
  }

  .desktop\:u-pr-28{
    padding-right: 7rem !important;
  }

  .desktop\:u-pr-32{
    padding-right: 8rem !important;
  }

  .desktop\:u-pr-36{
    padding-right: 9rem !important;
  }

  .desktop\:u-pr-40{
    padding-right: 10rem !important;
  }

  .desktop\:u-pr-44{
    padding-right: 11rem !important;
  }

  .desktop\:u-pr-48{
    padding-right: 12rem !important;
  }

  .desktop\:u-pr-52{
    padding-right: 13rem !important;
  }

  .desktop\:u-pr-56{
    padding-right: 14rem !important;
  }

  .desktop\:u-pr-60{
    padding-right: 15rem !important;
  }

  .desktop\:u-pr-64{
    padding-right: 16rem !important;
  }

  .desktop\:u-pr-72{
    padding-right: 18rem !important;
  }

  .desktop\:u-pr-80{
    padding-right: 20rem !important;
  }

  .desktop\:u-pr-96{
    padding-right: 24rem !important;
  }

  .desktop\:u-pr-px{
    padding-right: 1px !important;
  }

  .desktop\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .desktop\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .desktop\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .desktop\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .desktop\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .desktop\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .desktop\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .desktop\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .desktop\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .desktop\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .desktop\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .desktop\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .desktop\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .desktop\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .desktop\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .desktop\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .desktop\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .desktop\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .desktop\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .desktop\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .desktop\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .desktop\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .desktop\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .desktop\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .desktop\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .desktop\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .desktop\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .desktop\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .desktop\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .desktop\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .desktop\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .desktop\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .desktop\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .desktop\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .desktop\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .desktop\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .desktop\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .desktop\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .desktop\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .desktop\:u-pl-0{
    padding-left: 0px !important;
  }

  .desktop\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .desktop\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .desktop\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .desktop\:u-pl-4{
    padding-left: 1rem !important;
  }

  .desktop\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .desktop\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .desktop\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .desktop\:u-pl-8{
    padding-left: 2rem !important;
  }

  .desktop\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .desktop\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .desktop\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .desktop\:u-pl-12{
    padding-left: 3rem !important;
  }

  .desktop\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .desktop\:u-pl-16{
    padding-left: 4rem !important;
  }

  .desktop\:u-pl-20{
    padding-left: 5rem !important;
  }

  .desktop\:u-pl-24{
    padding-left: 6rem !important;
  }

  .desktop\:u-pl-28{
    padding-left: 7rem !important;
  }

  .desktop\:u-pl-32{
    padding-left: 8rem !important;
  }

  .desktop\:u-pl-36{
    padding-left: 9rem !important;
  }

  .desktop\:u-pl-40{
    padding-left: 10rem !important;
  }

  .desktop\:u-pl-44{
    padding-left: 11rem !important;
  }

  .desktop\:u-pl-48{
    padding-left: 12rem !important;
  }

  .desktop\:u-pl-52{
    padding-left: 13rem !important;
  }

  .desktop\:u-pl-56{
    padding-left: 14rem !important;
  }

  .desktop\:u-pl-60{
    padding-left: 15rem !important;
  }

  .desktop\:u-pl-64{
    padding-left: 16rem !important;
  }

  .desktop\:u-pl-72{
    padding-left: 18rem !important;
  }

  .desktop\:u-pl-80{
    padding-left: 20rem !important;
  }

  .desktop\:u-pl-96{
    padding-left: 24rem !important;
  }

  .desktop\:u-pl-px{
    padding-left: 1px !important;
  }

  .desktop\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .desktop\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .desktop\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .desktop\:u-pl-3\.5{
    padding-left: 0.875rem !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-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-font-body{
    font-family: Public Sans, sans-serif !important;
  }

  .desktop\:u-font-heading{
    font-family: Public Sans, sans-serif !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.2rem !important;
  }

  .desktop\:u-text-3xl{
    font-size: 1.3rem !important;
  }

  .desktop\:u-text-4xl{
    font-size: 1.4rem !important;
  }

  .desktop\:u-text-5xl{
    font-size: 2rem !important;
  }

  .desktop\:u-text-6xl{
    font-size: 3rem !important;
  }

  .desktop\:u-text-8xl{
    font-size: 4rem !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-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-italic{
    font-style: italic !important;
  }

  .desktop\:u-not-italic{
    font-style: normal !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-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.5 !important;
  }

  .desktop\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .desktop\:u-leading-loose{
    line-height: 2 !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-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .desktop\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .desktop\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-transparent{
    color: transparent !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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{
    color: var(--primary) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary{
    color: var(--secundary) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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;
  }

  .u-group:hover .desktop\:group-hover\:u-text-transparent{
    color: transparent !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-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus-within{
    color: var(--primary) !important;
  }

  .desktop\:focus-within\:u-text-secundary:focus-within{
    color: var(--secundary) !important;
  }

  .desktop\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus-within\:u-text-transparent:focus-within{
    color: transparent !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-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:hover{
    color: var(--primary) !important;
  }

  .desktop\:hover\:u-text-secundary:hover{
    color: var(--secundary) !important;
  }

  .desktop\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:hover\:u-text-transparent:hover{
    color: transparent !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-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(38, 38, 38, 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:focus{
    color: var(--primary) !important;
  }

  .desktop\:focus\:u-text-secundary:focus{
    color: var(--secundary) !important;
  }

  .desktop\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(159, 199, 52, 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\:focus\:u-text-transparent:focus{
    color: transparent !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-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-placeholder-white::-moz-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-black::-moz-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-0::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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary::-moz-placeholder{
    color: var(--primary) !important;
  }

  .desktop\:u-placeholder-primary::placeholder{
    color: var(--primary) !important;
  }

  .desktop\:u-placeholder-secundary::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .desktop\:u-placeholder-secundary::placeholder{
    color: var(--secundary) !important;
  }

  .desktop\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .desktop\:u-placeholder-transparent::placeholder{
    color: transparent !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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-0: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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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::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(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(231, 231, 231, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(158, 158, 158, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(102, 102, 102, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(38, 38, 38, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary:focus::-moz-placeholder{
    color: var(--primary) !important;
  }

  .desktop\:focus\:u-placeholder-primary:focus::placeholder{
    color: var(--primary) !important;
  }

  .desktop\:focus\:u-placeholder-secundary:focus::-moz-placeholder{
    color: var(--secundary) !important;
  }

  .desktop\:focus\:u-placeholder-secundary:focus::placeholder{
    color: var(--secundary) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(159, 199, 52, 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::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .desktop\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .desktop\:u-placeholder-opacity-0::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:u-placeholder-opacity-100::-moz-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::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::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::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::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::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::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::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::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::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::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::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::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::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::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::placeholder{
    --tw-placeholder-opacity: 1 !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-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .desktop\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .desktop\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .desktop\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .desktop\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .desktop\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .desktop\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .desktop\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .desktop\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .desktop\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .desktop\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .desktop\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .desktop\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .desktop\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .desktop\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .desktop\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .desktop\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .desktop\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .desktop\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .desktop\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .desktop\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .desktop\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .desktop\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .desktop\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .desktop\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .desktop\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .desktop\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .desktop\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .desktop\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .desktop\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .desktop\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .desktop\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !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;
  }

  .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;
  }

  .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\: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\: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\: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-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\: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\: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\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .desktop\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .desktop\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-0{
    --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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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{
    --tw-ring-color: var(--primary) !important;
  }

  .desktop\:u-ring-secundary{
    --tw-ring-color: var(--secundary) !important;
  }

  .desktop\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:u-ring-transparent{
    --tw-ring-color: transparent !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-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-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus-within{
    --tw-ring-color: var(--primary) !important;
  }

  .desktop\:focus-within\:u-ring-secundary:focus-within{
    --tw-ring-color: var(--secundary) !important;
  }

  .desktop\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !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-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-0: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(250, 250, 250, 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(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(231, 231, 231, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(158, 158, 158, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(102, 102, 102, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(38, 38, 38, 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:focus{
    --tw-ring-color: var(--primary) !important;
  }

  .desktop\:focus\:u-ring-secundary:focus{
    --tw-ring-color: var(--secundary) !important;
  }

  .desktop\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(159, 199, 52, 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\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !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-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-offset-white{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:u-ring-offset-black{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:u-ring-offset-faded{
    --tw-ring-offset-color: #666666 !important;
  }

  .desktop\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FAFAFA !important;
  }

  .desktop\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .desktop\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .desktop\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .desktop\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .desktop\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #666666 !important;
  }

  .desktop\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #262626 !important;
  }

  .desktop\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:u-ring-offset-primary{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .desktop\:u-ring-offset-secundary{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .desktop\:u-ring-offset-success{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .desktop\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .desktop\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #666666 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #262626 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary:focus-within{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary:focus-within{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .desktop\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .desktop\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .desktop\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FAFAFA !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: #F7F7F7 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #E7E7E7 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #9E9E9E !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #666666 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #262626 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:focus\:u-ring-offset-primary:focus{
    --tw-ring-offset-color: var(--primary) !important;
  }

  .desktop\:focus\:u-ring-offset-secundary:focus{
    --tw-ring-offset-color: var(--secundary) !important;
  }

  .desktop\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #9FC734 !important;
  }

  .desktop\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .desktop\:u-filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important;
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
  }

  .desktop\:u-filter-none{
    filter: none !important;
  }

  .desktop\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .desktop\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .desktop\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .desktop\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .desktop\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .desktop\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .desktop\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .desktop\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .desktop\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .desktop\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .desktop\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .desktop\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .desktop\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .desktop\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .desktop\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .desktop\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .desktop\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .desktop\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .desktop\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .desktop\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .desktop\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .desktop\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .desktop\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .desktop\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .desktop\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .desktop\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .desktop\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .desktop\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .desktop\:u-drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
  }

  .desktop\:u-drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
  }

  .desktop\:u-drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
  }

  .desktop\:u-drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
  }

  .desktop\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .desktop\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .desktop\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .desktop\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .desktop\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .desktop\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .desktop\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .desktop\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .desktop\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .desktop\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .desktop\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .desktop\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .desktop\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .desktop\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .desktop\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .desktop\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .desktop\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .desktop\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .desktop\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .desktop\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .desktop\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .desktop\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .desktop\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .desktop\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .desktop\:u-backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
  }

  .desktop\:u-backdrop-filter-none{
    backdrop-filter: none !important;
  }

  .desktop\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .desktop\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .desktop\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .desktop\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .desktop\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .desktop\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .desktop\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .desktop\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .desktop\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .desktop\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .desktop\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .desktop\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .desktop\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .desktop\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .desktop\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .desktop\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .desktop\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .desktop\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .desktop\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .desktop\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .desktop\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .desktop\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .desktop\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .desktop\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .desktop\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .desktop\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .desktop\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .desktop\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .desktop\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .desktop\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .desktop\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .desktop\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .desktop\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .desktop\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .desktop\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .desktop\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .desktop\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .desktop\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .desktop\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .desktop\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .desktop\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .desktop\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .desktop\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .desktop\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .desktop\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .desktop\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .desktop\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .desktop\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .desktop\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .desktop\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .desktop\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .desktop\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .desktop\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .desktop\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .desktop\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .desktop\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .desktop\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .desktop\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .desktop\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .desktop\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .desktop\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .desktop\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .desktop\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .desktop\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !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, filter, backdrop-filter !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-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-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-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;
  }
}
