@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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);
    transform: translate3d(0, 0, 0);
  }

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

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

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

@keyframes bounce {
  from,
  20%,
  53%,
  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);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

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

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

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

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

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

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

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

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

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

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

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -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);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

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

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

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

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

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

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

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

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -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);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

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

@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.
 */

@font-face {
  font-family: "swiper-icons";

  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");

  font-weight: 400;

  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

/*
  ! 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: Mukta, -apple-system, "Segoe UI", sans-serif; /* 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%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

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

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

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

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

@media (min-width: 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: -webkit-sticky !important;
  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: -webkit-min-content !important;
  width: -moz-min-content !important;
  width: min-content !important;
}

.u-w-max{
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.u-min-w-sm{
  min-width: 320px !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: 1280px !important;
}

.u-max-w-2xl{
  max-width: 42rem !important;
}

.u-max-w-3xl{
  max-width: 48rem !important;
}

.u-max-w-4xl{
  max-width: 56rem !important;
}

.u-max-w-5xl{
  max-width: 64rem !important;
}

.u-max-w-6xl{
  max-width: 72rem !important;
}

.u-max-w-7xl{
  max-width: 80rem !important;
}

.u-max-w-full{
  max-width: 100% !important;
}

.u-max-w-min{
  max-width: -webkit-min-content !important;
  max-width: -moz-min-content !important;
  max-width: min-content !important;
}

.u-max-w-max{
  max-width: -webkit-max-content !important;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}

.u-max-w-prose{
  max-width: 65ch !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: 1120px !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;
}

@-webkit-keyframes u-spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes u-spin{
  to{
    transform: rotate(360deg);
  }
}

@-webkit-keyframes u-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes u-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes u-pulse{
  50%{
    opacity: .5;
  }
}

@keyframes u-pulse{
  50%{
    opacity: .5;
  }
}

@-webkit-keyframes u-bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes u-bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.u-animate-none{
  -webkit-animation: none !important;
          animation: none !important;
}

.u-animate-spin{
  -webkit-animation: u-spin 1s linear infinite !important;
          animation: u-spin 1s linear infinite !important;
}

.u-animate-ping{
  -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
          animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.u-animate-pulse{
  -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
          animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.u-animate-bounce{
  -webkit-animation: u-bounce 1s infinite !important;
          animation: u-bounce 1s infinite !important;
}

.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: -webkit-min-content !important;
  grid-auto-columns: min-content !important;
}

.u-auto-cols-max{
  grid-auto-columns: -webkit-max-content !important;
  grid-auto-columns: max-content !important;
}

.u-auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr) !important;
}

.u-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: -webkit-min-content !important;
  grid-auto-rows: min-content !important;
}

.u-auto-rows-max{
  grid-auto-rows: -webkit-max-content !important;
  grid-auto-rows: max-content !important;
}

.u-auto-rows-fr{
  grid-auto-rows: minmax(0, 1fr) !important;
}

.u-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-black > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
}

.u-divide-white > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
}

.u-divide-faded > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-success > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !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-black{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-border-white{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-border-faded{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.u-border-primary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-primary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-primary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-primary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-primary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-primary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-primary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-border-secundary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-secundary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-secundary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-secundary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-secundary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-secundary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-secundary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-border-success{
  --tw-border-opacity: 1 !important;
  border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
}

.u-border-neutral-15{
  --tw-border-opacity: 1 !important;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
}

.u-border-neutral-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
}

.u-border-neutral-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
}

.u-border-neutral-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
}

.u-border-neutral-45{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.u-border-neutral-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
}

.u-border-neutral-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-black{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-white{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-faded{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-success{
  --tw-border-opacity: 1 !important;
  border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-15{
  --tw-border-opacity: 1 !important;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-45{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-black:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-white:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-faded:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-0:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-10:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-20:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-0:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-10:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-20:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-success:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-15:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-20:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-45:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
}

.hover\:u-border-black:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.hover\:u-border-white:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.hover\:u-border-faded:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-0:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-10:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-0:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-10:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-success:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-15:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-45:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
}

.focus\:u-border-black:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus\:u-border-white:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.focus\:u-border-faded:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-0:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-10:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-0:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-10:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-success:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-15:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-45:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
}

.u-border-opacity-0{
  --tw-border-opacity: 0 !important;
}

.u-border-opacity-5{
  --tw-border-opacity: 0.05 !important;
}

.u-border-opacity-10{
  --tw-border-opacity: 0.1 !important;
}

.u-border-opacity-20{
  --tw-border-opacity: 0.2 !important;
}

.u-border-opacity-25{
  --tw-border-opacity: 0.25 !important;
}

.u-border-opacity-30{
  --tw-border-opacity: 0.3 !important;
}

.u-border-opacity-40{
  --tw-border-opacity: 0.4 !important;
}

.u-border-opacity-50{
  --tw-border-opacity: 0.5 !important;
}

.u-border-opacity-60{
  --tw-border-opacity: 0.6 !important;
}

.u-border-opacity-70{
  --tw-border-opacity: 0.7 !important;
}

.u-border-opacity-75{
  --tw-border-opacity: 0.75 !important;
}

.u-border-opacity-80{
  --tw-border-opacity: 0.8 !important;
}

.u-border-opacity-90{
  --tw-border-opacity: 0.9 !important;
}

.u-border-opacity-95{
  --tw-border-opacity: 0.95 !important;
}

.u-border-opacity-100{
  --tw-border-opacity: 1 !important;
}

.u-group:hover .group-hover\:u-border-opacity-0{
  --tw-border-opacity: 0 !important;
}

.u-group:hover .group-hover\:u-border-opacity-5{
  --tw-border-opacity: 0.05 !important;
}

.u-group:hover .group-hover\:u-border-opacity-10{
  --tw-border-opacity: 0.1 !important;
}

.u-group:hover .group-hover\:u-border-opacity-20{
  --tw-border-opacity: 0.2 !important;
}

.u-group:hover .group-hover\:u-border-opacity-25{
  --tw-border-opacity: 0.25 !important;
}

.u-group:hover .group-hover\:u-border-opacity-30{
  --tw-border-opacity: 0.3 !important;
}

.u-group:hover .group-hover\:u-border-opacity-40{
  --tw-border-opacity: 0.4 !important;
}

.u-group:hover .group-hover\:u-border-opacity-50{
  --tw-border-opacity: 0.5 !important;
}

.u-group:hover .group-hover\:u-border-opacity-60{
  --tw-border-opacity: 0.6 !important;
}

.u-group:hover .group-hover\:u-border-opacity-70{
  --tw-border-opacity: 0.7 !important;
}

.u-group:hover .group-hover\:u-border-opacity-75{
  --tw-border-opacity: 0.75 !important;
}

.u-group:hover .group-hover\:u-border-opacity-80{
  --tw-border-opacity: 0.8 !important;
}

.u-group:hover .group-hover\:u-border-opacity-90{
  --tw-border-opacity: 0.9 !important;
}

.u-group:hover .group-hover\:u-border-opacity-95{
  --tw-border-opacity: 0.95 !important;
}

.u-group:hover .group-hover\:u-border-opacity-100{
  --tw-border-opacity: 1 !important;
}

.focus-within\:u-border-opacity-0:focus-within{
  --tw-border-opacity: 0 !important;
}

.focus-within\:u-border-opacity-5:focus-within{
  --tw-border-opacity: 0.05 !important;
}

.focus-within\:u-border-opacity-10:focus-within{
  --tw-border-opacity: 0.1 !important;
}

.focus-within\:u-border-opacity-20:focus-within{
  --tw-border-opacity: 0.2 !important;
}

.focus-within\:u-border-opacity-25:focus-within{
  --tw-border-opacity: 0.25 !important;
}

.focus-within\:u-border-opacity-30:focus-within{
  --tw-border-opacity: 0.3 !important;
}

.focus-within\:u-border-opacity-40:focus-within{
  --tw-border-opacity: 0.4 !important;
}

.focus-within\:u-border-opacity-50:focus-within{
  --tw-border-opacity: 0.5 !important;
}

.focus-within\:u-border-opacity-60:focus-within{
  --tw-border-opacity: 0.6 !important;
}

.focus-within\:u-border-opacity-70:focus-within{
  --tw-border-opacity: 0.7 !important;
}

.focus-within\:u-border-opacity-75:focus-within{
  --tw-border-opacity: 0.75 !important;
}

.focus-within\:u-border-opacity-80:focus-within{
  --tw-border-opacity: 0.8 !important;
}

.focus-within\:u-border-opacity-90:focus-within{
  --tw-border-opacity: 0.9 !important;
}

.focus-within\:u-border-opacity-95:focus-within{
  --tw-border-opacity: 0.95 !important;
}

.focus-within\:u-border-opacity-100:focus-within{
  --tw-border-opacity: 1 !important;
}

.hover\:u-border-opacity-0:hover{
  --tw-border-opacity: 0 !important;
}

.hover\:u-border-opacity-5:hover{
  --tw-border-opacity: 0.05 !important;
}

.hover\:u-border-opacity-10:hover{
  --tw-border-opacity: 0.1 !important;
}

.hover\:u-border-opacity-20:hover{
  --tw-border-opacity: 0.2 !important;
}

.hover\:u-border-opacity-25:hover{
  --tw-border-opacity: 0.25 !important;
}

.hover\:u-border-opacity-30:hover{
  --tw-border-opacity: 0.3 !important;
}

.hover\:u-border-opacity-40:hover{
  --tw-border-opacity: 0.4 !important;
}

.hover\:u-border-opacity-50:hover{
  --tw-border-opacity: 0.5 !important;
}

.hover\:u-border-opacity-60:hover{
  --tw-border-opacity: 0.6 !important;
}

.hover\:u-border-opacity-70:hover{
  --tw-border-opacity: 0.7 !important;
}

.hover\:u-border-opacity-75:hover{
  --tw-border-opacity: 0.75 !important;
}

.hover\:u-border-opacity-80:hover{
  --tw-border-opacity: 0.8 !important;
}

.hover\:u-border-opacity-90:hover{
  --tw-border-opacity: 0.9 !important;
}

.hover\:u-border-opacity-95:hover{
  --tw-border-opacity: 0.95 !important;
}

.hover\:u-border-opacity-100:hover{
  --tw-border-opacity: 1 !important;
}

.focus\:u-border-opacity-0:focus{
  --tw-border-opacity: 0 !important;
}

.focus\:u-border-opacity-5:focus{
  --tw-border-opacity: 0.05 !important;
}

.focus\:u-border-opacity-10:focus{
  --tw-border-opacity: 0.1 !important;
}

.focus\:u-border-opacity-20:focus{
  --tw-border-opacity: 0.2 !important;
}

.focus\:u-border-opacity-25:focus{
  --tw-border-opacity: 0.25 !important;
}

.focus\:u-border-opacity-30:focus{
  --tw-border-opacity: 0.3 !important;
}

.focus\:u-border-opacity-40:focus{
  --tw-border-opacity: 0.4 !important;
}

.focus\:u-border-opacity-50:focus{
  --tw-border-opacity: 0.5 !important;
}

.focus\:u-border-opacity-60:focus{
  --tw-border-opacity: 0.6 !important;
}

.focus\:u-border-opacity-70:focus{
  --tw-border-opacity: 0.7 !important;
}

.focus\:u-border-opacity-75:focus{
  --tw-border-opacity: 0.75 !important;
}

.focus\:u-border-opacity-80:focus{
  --tw-border-opacity: 0.8 !important;
}

.focus\:u-border-opacity-90:focus{
  --tw-border-opacity: 0.9 !important;
}

.focus\:u-border-opacity-95:focus{
  --tw-border-opacity: 0.95 !important;
}

.focus\:u-border-opacity-100:focus{
  --tw-border-opacity: 1 !important;
}

.u-bg-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-bg-faded{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-15{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-45{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-faded{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-15{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-45{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-black:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-white:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-faded:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-0:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-10:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-0:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-10:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-success:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-15:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-45:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-black:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-white:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-faded:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-0:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-10:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-0:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-10:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-success:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-15:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-45:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-black:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-white:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-faded:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-0:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-10:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-0:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-10:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-success:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-15:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-45:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !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-black{
  --tw-gradient-from: #000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-from-white{
  --tw-gradient-from: #fff !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-from-faded{
  --tw-gradient-from: #818181 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.u-from-primary-0{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-primary-10{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-primary-20{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-primary-30{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-primary-40{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-primary-50{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-primary-60{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-from-secundary-0{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-secundary-10{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-secundary-20{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-secundary-30{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-secundary-40{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-secundary-50{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-secundary-60{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-from-success{
  --tw-gradient-from: #60a035 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
}

.u-from-neutral-15{
  --tw-gradient-from: #F5F5F5 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
}

.u-from-neutral-20{
  --tw-gradient-from: #F7F4F1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
}

.u-from-neutral-30{
  --tw-gradient-from: #D8D2CD !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
}

.u-from-neutral-40{
  --tw-gradient-from: #C4BBB2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
}

.u-from-neutral-45{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.u-from-neutral-50{
  --tw-gradient-from: #625C57 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
}

.u-from-neutral-60{
  --tw-gradient-from: #1B150F !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
}

.hover\:u-from-black:hover{
  --tw-gradient-from: #000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-from-white:hover{
  --tw-gradient-from: #fff !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-from-faded:hover{
  --tw-gradient-from: #818181 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.hover\:u-from-primary-0:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-primary-10:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-primary-20:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-primary-30:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-primary-40:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-primary-50:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-primary-60:hover{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-from-secundary-0:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-secundary-10:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-secundary-20:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-secundary-30:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-secundary-40:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-secundary-50:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-secundary-60:hover{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-from-success:hover{
  --tw-gradient-from: #60a035 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
}

.hover\:u-from-neutral-15:hover{
  --tw-gradient-from: #F5F5F5 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
}

.hover\:u-from-neutral-20:hover{
  --tw-gradient-from: #F7F4F1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
}

.hover\:u-from-neutral-30:hover{
  --tw-gradient-from: #D8D2CD !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
}

.hover\:u-from-neutral-40:hover{
  --tw-gradient-from: #C4BBB2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
}

.hover\:u-from-neutral-45:hover{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.hover\:u-from-neutral-50:hover{
  --tw-gradient-from: #625C57 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
}

.hover\:u-from-neutral-60:hover{
  --tw-gradient-from: #1B150F !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
}

.focus\:u-from-black:focus{
  --tw-gradient-from: #000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-from-white:focus{
  --tw-gradient-from: #fff !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-from-faded:focus{
  --tw-gradient-from: #818181 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.focus\:u-from-primary-0:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-primary-10:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-primary-20:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-primary-30:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-primary-40:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-primary-50:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-primary-60:focus{
  --tw-gradient-from: #5DB13B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-from-secundary-0:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-secundary-10:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-secundary-20:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-secundary-30:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-secundary-40:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-secundary-50:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-secundary-60:focus{
  --tw-gradient-from: #025157 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-from-success:focus{
  --tw-gradient-from: #60a035 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
}

.focus\:u-from-neutral-15:focus{
  --tw-gradient-from: #F5F5F5 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
}

.focus\:u-from-neutral-20:focus{
  --tw-gradient-from: #F7F4F1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
}

.focus\:u-from-neutral-30:focus{
  --tw-gradient-from: #D8D2CD !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
}

.focus\:u-from-neutral-40:focus{
  --tw-gradient-from: #C4BBB2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
}

.focus\:u-from-neutral-45:focus{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.focus\:u-from-neutral-50:focus{
  --tw-gradient-from: #625C57 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
}

.focus\:u-from-neutral-60:focus{
  --tw-gradient-from: #1B150F !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
}

.u-via-black{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-via-white{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-via-faded{
  --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.u-via-primary-0{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-primary-10{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-primary-20{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-primary-30{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-primary-40{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-primary-50{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-primary-60{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.u-via-secundary-0{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-secundary-10{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-secundary-20{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-secundary-30{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-secundary-40{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-secundary-50{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-secundary-60{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.u-via-success{
  --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
}

.u-via-neutral-15{
  --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
}

.u-via-neutral-20{
  --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
}

.u-via-neutral-30{
  --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
}

.u-via-neutral-40{
  --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
}

.u-via-neutral-45{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.u-via-neutral-50{
  --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
}

.u-via-neutral-60{
  --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
}

.hover\:u-via-black:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-via-white:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-via-faded:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.hover\:u-via-primary-0:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-primary-10:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-primary-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-primary-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-primary-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-primary-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-primary-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.hover\:u-via-secundary-0:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-secundary-10:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-secundary-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-secundary-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-secundary-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-secundary-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-secundary-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.hover\:u-via-success:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
}

.hover\:u-via-neutral-15:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
}

.hover\:u-via-neutral-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
}

.hover\:u-via-neutral-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
}

.hover\:u-via-neutral-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
}

.hover\:u-via-neutral-45:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.hover\:u-via-neutral-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
}

.hover\:u-via-neutral-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
}

.focus\:u-via-black:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-via-white:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-via-faded:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.focus\:u-via-primary-0:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-primary-10:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-primary-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-primary-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-primary-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-primary-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-primary-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
}

.focus\:u-via-secundary-0:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-secundary-10:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-secundary-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-secundary-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-secundary-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-secundary-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-secundary-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
}

.focus\:u-via-success:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
}

.focus\:u-via-neutral-15:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
}

.focus\:u-via-neutral-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
}

.focus\:u-via-neutral-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
}

.focus\:u-via-neutral-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
}

.focus\:u-via-neutral-45:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.focus\:u-via-neutral-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
}

.focus\:u-via-neutral-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
}

.u-to-black{
  --tw-gradient-to: #000 !important;
}

.u-to-white{
  --tw-gradient-to: #fff !important;
}

.u-to-faded{
  --tw-gradient-to: #818181 !important;
}

.u-to-primary-0{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-10{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-20{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-30{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-40{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-50{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-60{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-secundary-0{
  --tw-gradient-to: #025157 !important;
}

.u-to-secundary-10{
  --tw-gradient-to: #025157 !important;
}

.u-to-secundary-20{
  --tw-gradient-to: #025157 !important;
}

.u-to-secundary-30{
  --tw-gradient-to: #025157 !important;
}

.u-to-secundary-40{
  --tw-gradient-to: #025157 !important;
}

.u-to-secundary-50{
  --tw-gradient-to: #025157 !important;
}

.u-to-secundary-60{
  --tw-gradient-to: #025157 !important;
}

.u-to-success{
  --tw-gradient-to: #60a035 !important;
}

.u-to-danger{
  --tw-gradient-to: #FD6262 !important;
}

.u-to-neutral-0{
  --tw-gradient-to: #FFFFFF !important;
}

.u-to-neutral-10{
  --tw-gradient-to: #FFFBF7 !important;
}

.u-to-neutral-15{
  --tw-gradient-to: #F5F5F5 !important;
}

.u-to-neutral-20{
  --tw-gradient-to: #F7F4F1 !important;
}

.u-to-neutral-30{
  --tw-gradient-to: #D8D2CD !important;
}

.u-to-neutral-40{
  --tw-gradient-to: #C4BBB2 !important;
}

.u-to-neutral-45{
  --tw-gradient-to: #494949 !important;
}

.u-to-neutral-50{
  --tw-gradient-to: #625C57 !important;
}

.u-to-neutral-60{
  --tw-gradient-to: #1B150F !important;
}

.hover\:u-to-black:hover{
  --tw-gradient-to: #000 !important;
}

.hover\:u-to-white:hover{
  --tw-gradient-to: #fff !important;
}

.hover\:u-to-faded:hover{
  --tw-gradient-to: #818181 !important;
}

.hover\:u-to-primary-0:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-10:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-20:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-30:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-40:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-50:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-60:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-secundary-0:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-secundary-10:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-secundary-20:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-secundary-30:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-secundary-40:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-secundary-50:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-secundary-60:hover{
  --tw-gradient-to: #025157 !important;
}

.hover\:u-to-success:hover{
  --tw-gradient-to: #60a035 !important;
}

.hover\:u-to-danger:hover{
  --tw-gradient-to: #FD6262 !important;
}

.hover\:u-to-neutral-0:hover{
  --tw-gradient-to: #FFFFFF !important;
}

.hover\:u-to-neutral-10:hover{
  --tw-gradient-to: #FFFBF7 !important;
}

.hover\:u-to-neutral-15:hover{
  --tw-gradient-to: #F5F5F5 !important;
}

.hover\:u-to-neutral-20:hover{
  --tw-gradient-to: #F7F4F1 !important;
}

.hover\:u-to-neutral-30:hover{
  --tw-gradient-to: #D8D2CD !important;
}

.hover\:u-to-neutral-40:hover{
  --tw-gradient-to: #C4BBB2 !important;
}

.hover\:u-to-neutral-45:hover{
  --tw-gradient-to: #494949 !important;
}

.hover\:u-to-neutral-50:hover{
  --tw-gradient-to: #625C57 !important;
}

.hover\:u-to-neutral-60:hover{
  --tw-gradient-to: #1B150F !important;
}

.focus\:u-to-black:focus{
  --tw-gradient-to: #000 !important;
}

.focus\:u-to-white:focus{
  --tw-gradient-to: #fff !important;
}

.focus\:u-to-faded:focus{
  --tw-gradient-to: #818181 !important;
}

.focus\:u-to-primary-0:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-10:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-20:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-30:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-40:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-50:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-60:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-secundary-0:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-secundary-10:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-secundary-20:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-secundary-30:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-secundary-40:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-secundary-50:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-secundary-60:focus{
  --tw-gradient-to: #025157 !important;
}

.focus\:u-to-success:focus{
  --tw-gradient-to: #60a035 !important;
}

.focus\:u-to-danger:focus{
  --tw-gradient-to: #FD6262 !important;
}

.focus\:u-to-neutral-0:focus{
  --tw-gradient-to: #FFFFFF !important;
}

.focus\:u-to-neutral-10:focus{
  --tw-gradient-to: #FFFBF7 !important;
}

.focus\:u-to-neutral-15:focus{
  --tw-gradient-to: #F5F5F5 !important;
}

.focus\:u-to-neutral-20:focus{
  --tw-gradient-to: #F7F4F1 !important;
}

.focus\:u-to-neutral-30:focus{
  --tw-gradient-to: #D8D2CD !important;
}

.focus\:u-to-neutral-40:focus{
  --tw-gradient-to: #C4BBB2 !important;
}

.focus\:u-to-neutral-45:focus{
  --tw-gradient-to: #494949 !important;
}

.focus\:u-to-neutral-50:focus{
  --tw-gradient-to: #625C57 !important;
}

.focus\:u-to-neutral-60:focus{
  --tw-gradient-to: #1B150F !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: Mukta, sans-serif !important;
}

.u-font-heading{
  font-family: Playfair Display, serif !important;
}

.u-font-sans{
  font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
}

.u-text-xs{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.u-text-sm{
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.u-text-base{
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.u-text-lg{
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.u-text-xl{
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

.u-text-2xl{
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.u-text-3xl{
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.u-text-4xl{
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

.u-text-5xl{
  font-size: 3rem !important;
  line-height: 1 !important;
}

.u-text-6xl{
  font-size: 3.75rem !important;
  line-height: 1 !important;
}

.u-text-7xl{
  font-size: 4.5rem !important;
  line-height: 1 !important;
}

.u-text-8xl{
  font-size: 6rem !important;
  line-height: 1 !important;
}

.u-text-9xl{
  font-size: 8rem !important;
  line-height: 1 !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-black{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-text-faded{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.u-text-primary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-primary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-primary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-primary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-primary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-primary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-primary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-text-secundary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-secundary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-secundary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-secundary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-secundary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-secundary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-secundary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-text-success{
  --tw-text-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
}

.u-text-neutral-15{
  --tw-text-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
}

.u-text-neutral-20{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
}

.u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
}

.u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
}

.u-text-neutral-45{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
}

.u-text-neutral-60{
  --tw-text-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-black{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-faded{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-success{
  --tw-text-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-15{
  --tw-text-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-20{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-45{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-60{
  --tw-text-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-black:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-white:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-faded:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-0:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-10:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-0:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-10:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-success:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-15:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-45:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
}

.hover\:u-text-black:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.hover\:u-text-white:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.hover\:u-text-faded:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-0:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-10:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-0:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-10:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-success:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-15:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-45:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
}

.focus\:u-text-black:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus\:u-text-white:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.focus\:u-text-faded:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-0:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-10:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-0:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-10:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-success:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-15:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-45:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
}

.u-text-opacity-0{
  --tw-text-opacity: 0 !important;
}

.u-text-opacity-5{
  --tw-text-opacity: 0.05 !important;
}

.u-text-opacity-10{
  --tw-text-opacity: 0.1 !important;
}

.u-text-opacity-20{
  --tw-text-opacity: 0.2 !important;
}

.u-text-opacity-25{
  --tw-text-opacity: 0.25 !important;
}

.u-text-opacity-30{
  --tw-text-opacity: 0.3 !important;
}

.u-text-opacity-40{
  --tw-text-opacity: 0.4 !important;
}

.u-text-opacity-50{
  --tw-text-opacity: 0.5 !important;
}

.u-text-opacity-60{
  --tw-text-opacity: 0.6 !important;
}

.u-text-opacity-70{
  --tw-text-opacity: 0.7 !important;
}

.u-text-opacity-75{
  --tw-text-opacity: 0.75 !important;
}

.u-text-opacity-80{
  --tw-text-opacity: 0.8 !important;
}

.u-text-opacity-90{
  --tw-text-opacity: 0.9 !important;
}

.u-text-opacity-95{
  --tw-text-opacity: 0.95 !important;
}

.u-text-opacity-100{
  --tw-text-opacity: 1 !important;
}

.u-group:hover .group-hover\:u-text-opacity-0{
  --tw-text-opacity: 0 !important;
}

.u-group:hover .group-hover\:u-text-opacity-5{
  --tw-text-opacity: 0.05 !important;
}

.u-group:hover .group-hover\:u-text-opacity-10{
  --tw-text-opacity: 0.1 !important;
}

.u-group:hover .group-hover\:u-text-opacity-20{
  --tw-text-opacity: 0.2 !important;
}

.u-group:hover .group-hover\:u-text-opacity-25{
  --tw-text-opacity: 0.25 !important;
}

.u-group:hover .group-hover\:u-text-opacity-30{
  --tw-text-opacity: 0.3 !important;
}

.u-group:hover .group-hover\:u-text-opacity-40{
  --tw-text-opacity: 0.4 !important;
}

.u-group:hover .group-hover\:u-text-opacity-50{
  --tw-text-opacity: 0.5 !important;
}

.u-group:hover .group-hover\:u-text-opacity-60{
  --tw-text-opacity: 0.6 !important;
}

.u-group:hover .group-hover\:u-text-opacity-70{
  --tw-text-opacity: 0.7 !important;
}

.u-group:hover .group-hover\:u-text-opacity-75{
  --tw-text-opacity: 0.75 !important;
}

.u-group:hover .group-hover\:u-text-opacity-80{
  --tw-text-opacity: 0.8 !important;
}

.u-group:hover .group-hover\:u-text-opacity-90{
  --tw-text-opacity: 0.9 !important;
}

.u-group:hover .group-hover\:u-text-opacity-95{
  --tw-text-opacity: 0.95 !important;
}

.u-group:hover .group-hover\:u-text-opacity-100{
  --tw-text-opacity: 1 !important;
}

.focus-within\:u-text-opacity-0:focus-within{
  --tw-text-opacity: 0 !important;
}

.focus-within\:u-text-opacity-5:focus-within{
  --tw-text-opacity: 0.05 !important;
}

.focus-within\:u-text-opacity-10:focus-within{
  --tw-text-opacity: 0.1 !important;
}

.focus-within\:u-text-opacity-20:focus-within{
  --tw-text-opacity: 0.2 !important;
}

.focus-within\:u-text-opacity-25:focus-within{
  --tw-text-opacity: 0.25 !important;
}

.focus-within\:u-text-opacity-30:focus-within{
  --tw-text-opacity: 0.3 !important;
}

.focus-within\:u-text-opacity-40:focus-within{
  --tw-text-opacity: 0.4 !important;
}

.focus-within\:u-text-opacity-50:focus-within{
  --tw-text-opacity: 0.5 !important;
}

.focus-within\:u-text-opacity-60:focus-within{
  --tw-text-opacity: 0.6 !important;
}

.focus-within\:u-text-opacity-70:focus-within{
  --tw-text-opacity: 0.7 !important;
}

.focus-within\:u-text-opacity-75:focus-within{
  --tw-text-opacity: 0.75 !important;
}

.focus-within\:u-text-opacity-80:focus-within{
  --tw-text-opacity: 0.8 !important;
}

.focus-within\:u-text-opacity-90:focus-within{
  --tw-text-opacity: 0.9 !important;
}

.focus-within\:u-text-opacity-95:focus-within{
  --tw-text-opacity: 0.95 !important;
}

.focus-within\:u-text-opacity-100:focus-within{
  --tw-text-opacity: 1 !important;
}

.hover\:u-text-opacity-0:hover{
  --tw-text-opacity: 0 !important;
}

.hover\:u-text-opacity-5:hover{
  --tw-text-opacity: 0.05 !important;
}

.hover\:u-text-opacity-10:hover{
  --tw-text-opacity: 0.1 !important;
}

.hover\:u-text-opacity-20:hover{
  --tw-text-opacity: 0.2 !important;
}

.hover\:u-text-opacity-25:hover{
  --tw-text-opacity: 0.25 !important;
}

.hover\:u-text-opacity-30:hover{
  --tw-text-opacity: 0.3 !important;
}

.hover\:u-text-opacity-40:hover{
  --tw-text-opacity: 0.4 !important;
}

.hover\:u-text-opacity-50:hover{
  --tw-text-opacity: 0.5 !important;
}

.hover\:u-text-opacity-60:hover{
  --tw-text-opacity: 0.6 !important;
}

.hover\:u-text-opacity-70:hover{
  --tw-text-opacity: 0.7 !important;
}

.hover\:u-text-opacity-75:hover{
  --tw-text-opacity: 0.75 !important;
}

.hover\:u-text-opacity-80:hover{
  --tw-text-opacity: 0.8 !important;
}

.hover\:u-text-opacity-90:hover{
  --tw-text-opacity: 0.9 !important;
}

.hover\:u-text-opacity-95:hover{
  --tw-text-opacity: 0.95 !important;
}

.hover\:u-text-opacity-100:hover{
  --tw-text-opacity: 1 !important;
}

.focus\:u-text-opacity-0:focus{
  --tw-text-opacity: 0 !important;
}

.focus\:u-text-opacity-5:focus{
  --tw-text-opacity: 0.05 !important;
}

.focus\:u-text-opacity-10:focus{
  --tw-text-opacity: 0.1 !important;
}

.focus\:u-text-opacity-20:focus{
  --tw-text-opacity: 0.2 !important;
}

.focus\:u-text-opacity-25:focus{
  --tw-text-opacity: 0.25 !important;
}

.focus\:u-text-opacity-30:focus{
  --tw-text-opacity: 0.3 !important;
}

.focus\:u-text-opacity-40:focus{
  --tw-text-opacity: 0.4 !important;
}

.focus\:u-text-opacity-50:focus{
  --tw-text-opacity: 0.5 !important;
}

.focus\:u-text-opacity-60:focus{
  --tw-text-opacity: 0.6 !important;
}

.focus\:u-text-opacity-70:focus{
  --tw-text-opacity: 0.7 !important;
}

.focus\:u-text-opacity-75:focus{
  --tw-text-opacity: 0.75 !important;
}

.focus\:u-text-opacity-80:focus{
  --tw-text-opacity: 0.8 !important;
}

.focus\:u-text-opacity-90:focus{
  --tw-text-opacity: 0.9 !important;
}

.focus\:u-text-opacity-95:focus{
  --tw-text-opacity: 0.95 !important;
}

.focus\:u-text-opacity-100:focus{
  --tw-text-opacity: 1 !important;
}

.u-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-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-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-faded::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-faded::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-0::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-0::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-0::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-0::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-10::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-success::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-success::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-15::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-15::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(27, 21, 15, 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-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-faded:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-faded:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-0:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-0:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-success:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-success:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-15:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !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-black{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.u-ring-white{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.u-ring-faded{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-0{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-10{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-0{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-10{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-success{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-15{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-45{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-black:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-white:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-faded:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-0:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-10:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-0:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-10:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-success:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-15:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-45:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-black:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-white:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-faded:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-0:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-10:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-0:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-10:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-success:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-15:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-45:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
}

.u-ring-opacity-0{
  --tw-ring-opacity: 0 !important;
}

.u-ring-opacity-5{
  --tw-ring-opacity: 0.05 !important;
}

.u-ring-opacity-10{
  --tw-ring-opacity: 0.1 !important;
}

.u-ring-opacity-20{
  --tw-ring-opacity: 0.2 !important;
}

.u-ring-opacity-25{
  --tw-ring-opacity: 0.25 !important;
}

.u-ring-opacity-30{
  --tw-ring-opacity: 0.3 !important;
}

.u-ring-opacity-40{
  --tw-ring-opacity: 0.4 !important;
}

.u-ring-opacity-50{
  --tw-ring-opacity: 0.5 !important;
}

.u-ring-opacity-60{
  --tw-ring-opacity: 0.6 !important;
}

.u-ring-opacity-70{
  --tw-ring-opacity: 0.7 !important;
}

.u-ring-opacity-75{
  --tw-ring-opacity: 0.75 !important;
}

.u-ring-opacity-80{
  --tw-ring-opacity: 0.8 !important;
}

.u-ring-opacity-90{
  --tw-ring-opacity: 0.9 !important;
}

.u-ring-opacity-95{
  --tw-ring-opacity: 0.95 !important;
}

.u-ring-opacity-100{
  --tw-ring-opacity: 1 !important;
}

.focus-within\:u-ring-opacity-0:focus-within{
  --tw-ring-opacity: 0 !important;
}

.focus-within\:u-ring-opacity-5:focus-within{
  --tw-ring-opacity: 0.05 !important;
}

.focus-within\:u-ring-opacity-10:focus-within{
  --tw-ring-opacity: 0.1 !important;
}

.focus-within\:u-ring-opacity-20:focus-within{
  --tw-ring-opacity: 0.2 !important;
}

.focus-within\:u-ring-opacity-25:focus-within{
  --tw-ring-opacity: 0.25 !important;
}

.focus-within\:u-ring-opacity-30:focus-within{
  --tw-ring-opacity: 0.3 !important;
}

.focus-within\:u-ring-opacity-40:focus-within{
  --tw-ring-opacity: 0.4 !important;
}

.focus-within\:u-ring-opacity-50:focus-within{
  --tw-ring-opacity: 0.5 !important;
}

.focus-within\:u-ring-opacity-60:focus-within{
  --tw-ring-opacity: 0.6 !important;
}

.focus-within\:u-ring-opacity-70:focus-within{
  --tw-ring-opacity: 0.7 !important;
}

.focus-within\:u-ring-opacity-75:focus-within{
  --tw-ring-opacity: 0.75 !important;
}

.focus-within\:u-ring-opacity-80:focus-within{
  --tw-ring-opacity: 0.8 !important;
}

.focus-within\:u-ring-opacity-90:focus-within{
  --tw-ring-opacity: 0.9 !important;
}

.focus-within\:u-ring-opacity-95:focus-within{
  --tw-ring-opacity: 0.95 !important;
}

.focus-within\:u-ring-opacity-100:focus-within{
  --tw-ring-opacity: 1 !important;
}

.focus\:u-ring-opacity-0:focus{
  --tw-ring-opacity: 0 !important;
}

.focus\:u-ring-opacity-5:focus{
  --tw-ring-opacity: 0.05 !important;
}

.focus\:u-ring-opacity-10:focus{
  --tw-ring-opacity: 0.1 !important;
}

.focus\:u-ring-opacity-20:focus{
  --tw-ring-opacity: 0.2 !important;
}

.focus\:u-ring-opacity-25:focus{
  --tw-ring-opacity: 0.25 !important;
}

.focus\:u-ring-opacity-30:focus{
  --tw-ring-opacity: 0.3 !important;
}

.focus\:u-ring-opacity-40:focus{
  --tw-ring-opacity: 0.4 !important;
}

.focus\:u-ring-opacity-50:focus{
  --tw-ring-opacity: 0.5 !important;
}

.focus\:u-ring-opacity-60:focus{
  --tw-ring-opacity: 0.6 !important;
}

.focus\:u-ring-opacity-70:focus{
  --tw-ring-opacity: 0.7 !important;
}

.focus\:u-ring-opacity-75:focus{
  --tw-ring-opacity: 0.75 !important;
}

.focus\:u-ring-opacity-80:focus{
  --tw-ring-opacity: 0.8 !important;
}

.focus\:u-ring-opacity-90:focus{
  --tw-ring-opacity: 0.9 !important;
}

.focus\:u-ring-opacity-95:focus{
  --tw-ring-opacity: 0.95 !important;
}

.focus\:u-ring-opacity-100:focus{
  --tw-ring-opacity: 1 !important;
}

.u-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-black{
  --tw-ring-offset-color: #000 !important;
}

.u-ring-offset-white{
  --tw-ring-offset-color: #fff !important;
}

.u-ring-offset-faded{
  --tw-ring-offset-color: #818181 !important;
}

.u-ring-offset-primary-0{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-10{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-20{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-30{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-40{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-50{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-60{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-secundary-0{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-secundary-10{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-secundary-20{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-secundary-30{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-secundary-40{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-secundary-50{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-secundary-60{
  --tw-ring-offset-color: #025157 !important;
}

.u-ring-offset-success{
  --tw-ring-offset-color: #60a035 !important;
}

.u-ring-offset-danger{
  --tw-ring-offset-color: #FD6262 !important;
}

.u-ring-offset-neutral-0{
  --tw-ring-offset-color: #FFFFFF !important;
}

.u-ring-offset-neutral-10{
  --tw-ring-offset-color: #FFFBF7 !important;
}

.u-ring-offset-neutral-15{
  --tw-ring-offset-color: #F5F5F5 !important;
}

.u-ring-offset-neutral-20{
  --tw-ring-offset-color: #F7F4F1 !important;
}

.u-ring-offset-neutral-30{
  --tw-ring-offset-color: #D8D2CD !important;
}

.u-ring-offset-neutral-40{
  --tw-ring-offset-color: #C4BBB2 !important;
}

.u-ring-offset-neutral-45{
  --tw-ring-offset-color: #494949 !important;
}

.u-ring-offset-neutral-50{
  --tw-ring-offset-color: #625C57 !important;
}

.u-ring-offset-neutral-60{
  --tw-ring-offset-color: #1B150F !important;
}

.focus-within\:u-ring-offset-black:focus-within{
  --tw-ring-offset-color: #000 !important;
}

.focus-within\:u-ring-offset-white:focus-within{
  --tw-ring-offset-color: #fff !important;
}

.focus-within\:u-ring-offset-faded:focus-within{
  --tw-ring-offset-color: #818181 !important;
}

.focus-within\:u-ring-offset-primary-0:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-primary-10:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-primary-20:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-primary-30:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-primary-40:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-primary-50:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-primary-60:focus-within{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus-within\:u-ring-offset-secundary-0:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-secundary-10:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-secundary-20:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-secundary-30:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-secundary-40:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-secundary-50:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-secundary-60:focus-within{
  --tw-ring-offset-color: #025157 !important;
}

.focus-within\:u-ring-offset-success:focus-within{
  --tw-ring-offset-color: #60a035 !important;
}

.focus-within\:u-ring-offset-danger:focus-within{
  --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
}

.focus-within\:u-ring-offset-neutral-15:focus-within{
  --tw-ring-offset-color: #F5F5F5 !important;
}

.focus-within\:u-ring-offset-neutral-20:focus-within{
  --tw-ring-offset-color: #F7F4F1 !important;
}

.focus-within\:u-ring-offset-neutral-30:focus-within{
  --tw-ring-offset-color: #D8D2CD !important;
}

.focus-within\:u-ring-offset-neutral-40:focus-within{
  --tw-ring-offset-color: #C4BBB2 !important;
}

.focus-within\:u-ring-offset-neutral-45:focus-within{
  --tw-ring-offset-color: #494949 !important;
}

.focus-within\:u-ring-offset-neutral-50:focus-within{
  --tw-ring-offset-color: #625C57 !important;
}

.focus-within\:u-ring-offset-neutral-60:focus-within{
  --tw-ring-offset-color: #1B150F !important;
}

.focus\:u-ring-offset-black:focus{
  --tw-ring-offset-color: #000 !important;
}

.focus\:u-ring-offset-white:focus{
  --tw-ring-offset-color: #fff !important;
}

.focus\:u-ring-offset-faded:focus{
  --tw-ring-offset-color: #818181 !important;
}

.focus\:u-ring-offset-primary-0:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-primary-10:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-primary-20:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-primary-30:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-primary-40:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-primary-50:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-primary-60:focus{
  --tw-ring-offset-color: #5DB13B !important;
}

.focus\:u-ring-offset-secundary-0:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-secundary-10:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-secundary-20:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-secundary-30:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-secundary-40:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-secundary-50:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-secundary-60:focus{
  --tw-ring-offset-color: #025157 !important;
}

.focus\:u-ring-offset-success:focus{
  --tw-ring-offset-color: #60a035 !important;
}

.focus\:u-ring-offset-danger:focus{
  --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
}

.focus\:u-ring-offset-neutral-15:focus{
  --tw-ring-offset-color: #F5F5F5 !important;
}

.focus\:u-ring-offset-neutral-20:focus{
  --tw-ring-offset-color: #F7F4F1 !important;
}

.focus\:u-ring-offset-neutral-30:focus{
  --tw-ring-offset-color: #D8D2CD !important;
}

.focus\:u-ring-offset-neutral-40:focus{
  --tw-ring-offset-color: #C4BBB2 !important;
}

.focus\:u-ring-offset-neutral-45:focus{
  --tw-ring-offset-color: #494949 !important;
}

.focus\:u-ring-offset-neutral-50:focus{
  --tw-ring-offset-color: #625C57 !important;
}

.focus\:u-ring-offset-neutral-60:focus{
  --tw-ring-offset-color: #1B150F !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;
  -webkit-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;
          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{
  -webkit-backdrop-filter: none !important;
          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, -webkit-backdrop-filter !important;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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.
*/

/*
  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.
*/

html {
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0 0;
  padding: 0 0;
}

dd {
  margin: 0;
  margin-bottom: 0.5rem;
}

a > img {
  border: none;
}

p {
  margin: 0;
  margin-top: 0.5rem;
}

address {
  font-style: normal;
}

a img {
  border: none;
}

:root {
  --neutral-00: #FFFFFF;
  --neutral-10: #FFFBF7;
  --neutral-20: #F7F4F1;
  --neutral-30: #D8D2CD;
  --neutral-40: #C4BBB2;
  --neutral-45: #494949;
  --neutral-50: #625C57;
  --neutral-60: #1B150F;
  --primary-00: #5DB13B;
  --primary-10: #5DB13B;
  --primary-20: #5DB13B;
  --primary-30: #5DB13B;
  --primary-40: #5DB13B;
  --primary-50: #5DB13B;
  --primary-60: #5DB13B;
  --secundary-00: #025157;
  --secundary-10: #025157;
  --secundary-20: #025157;
  --secundary-30: #025157;
  --secundary-40: #025157;
  --secundary-50: #025157;
  --secundary-60: #025157;
  --body-color: var(--neutral-60);
  --body-bg-color: var(--neutral-10);
  --body-color-faded: #818181;
  --box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --color-info: #2373A9;
  --color-success: #60a035;
  --color-warning: #ae9434;
  --color-danger: #FD6262;
}

@media screen and (prefers-color-scheme: light) {
  :root {
    --neutral-00: #FFFFFF;
    --neutral-10: #FFFBF7;
    --neutral-20: #F7F4F1;
    --neutral-30: #D8D2CD;
    --neutral-40: #C4BBB2;
    --neutral-45: #494949;
    --neutral-50: #625C57;
    --neutral-60: #1B150F;
  }
}

* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

body {
  font-family: Mukta, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8em;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  height: 100%;
  background: var(--body-bg-color);
  color: var(--body-color);
  overflow-y: auto;
  transition: 500ms ease background;
}

body.is-dark-mode {
  background: var(--neutral-60);
  color: var(--neutral-00);
}

[v-cloak], [x-cloak] {
  display: none;
}

img[lazy=loaded] {
  -webkit-animation: 1s fadeIn;
          animation: 1s fadeIn;
}

/*
  These are bare, unclassed HTML elements. What does an h1 look like without a class on it?
  What does an a look like without a class on it? The Elements layer binds onto bare HTML element (or 'type') selectors only.
  It is slightly more explicit than the previous layer in that we are now saying 'make every h1 this big', or 'make every a be a certain colour'.
  It is still a very low-specificity layer, but affects slightly less of the DOM, and is slightly more opinionated, hence its location in the Triangle.

  The Base layer is typically the last one in which we'd find bare, element-based selectors, and is very rarely added to or changed after initial setup.
  Once we have defined element-level styles, all additions and deviations should be implemented using classes.
*/

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2em;
  margin: 0;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--secundary-40);
}

@media screen and (prefers-color-scheme: darkoff) {
  h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-60);
  }
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1280px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1280px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

h1 {
  margin-top: 1.5rem;
}

h1:first-child {
  margin-top: 0;
}

h1, h2 {
  font-family: Playfair Display, serif;
  word-break: break-word;
}

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

a:hover, a:focus {
  text-decoration: underline;
}

p {
  line-height: 1.5;
  margin-top: 0.5em;
}

p:first-child {
  margin-top: 0;
}

p a {
  text-decoration: underline;
}

address {
  font-style: normal;
}

::-moz-selection {
  background: var(--primary-40); /* WebKit/Blink Browsers */
  color: white;
}

::selection {
  background: var(--primary-40); /* WebKit/Blink Browsers */
  color: white;
}

blockquote {
  font-family: "PT Serif", serif;
  font-size: 1.25rem;
}

/*
  Users of OOCSS will be familiar with the concept of objects. This is the first layer in which we find class-based selectors.
  These are concerned with styling non-cosmetic design patterns, or 'objects'.
  Objects can range from something as simple as a .wrapper element, to layout systems, through to things like the OOCSS poster child – the Media Object.
  This layer affects less of the DOM than the last layer, has a higher specificity,
  and is slightly more explicit in that we are now targeting sections of the DOM with classes.
*/

.o-layout__page {
  width: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.o-layout__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.o-section {
  position: relative;
  margin-top: 2.5rem;
  display: inline-block;
  width: 100%;
}

@media (min-width: 1280px) {
  .o-section {
    margin-top: 5rem;
  }

  .o-section--pull-top {
    margin-top: 6.5rem;
  }
}

@media (min-width: 1280px) {
  .tablet\:o-section {
    margin-top: 5rem;
  }
}

/*
  The Components layer is where we begin to style recognisable pieces of UI.
  We're still binding onto classes here, so our specificity hasn't yet increased.
  However, this layer is more explicit than the last one in that we are now styling explicit, designed pieces of the DOM.

  We shouldn't find any selectors with a lower specificity than one class in this layer.
  This is where the majority of your work will happen after initial project set-up.
  Adding new components and features usually makes up the vast majority of development.
*/

.c-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-article__grid, .entry__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px){
  .c-article__grid, .entry__grid{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.c-article__grid, .entry__grid{
  margin-top: 2rem;
}

.c-article__column, .entry__column {
  display: flex;
  flex-direction: column;
}

.c-article__grid--dynamic .c-article__column, .c-article__grid--dynamic .entry__column {
  display: block;
}

.c-article__column .c-article__card, .entry__column .c-article__card {
  flex-grow: 1;
}

.c-article__card, .entry__card {
  margin-top: 2rem;
}

.c-article .align-center, .entry .align-center {
  text-align: center;
}

.c-article h2, .c-article h3, .entry h2, .entry h3 {
  margin-top: 2rem;
}

.c-article h2:first-child, .c-article h3:first-child, .entry h2:first-child, .entry h3:first-child {
  margin-top: 0;
}

.c-article ul, .entry ul {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.c-article ol, .entry ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.c-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--neutral-00);
  display: inline-flex;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-avatar {
    border: 1px solid var(--neutral-30);
  }
}

.c-avatar--fluid {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

@media (min-width: 768px) {
  .c-avatar--default\@tablet-large {
    width: 5rem;
    height: 5rem;
    border-radius: 2.5rem;
  }
}

.c-avatar--small {
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .c-avatar--small\@tablet-large {
    width: 5rem;
    height: 5rem;
    border-radius: 2.5rem;
  }
}

.c-avatar--large {
  width: 5rem;
  height: 5rem;
  border-radius: 2.5rem;
}

.c-avatar--larger {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 3.75rem;
}

.c-avatar--big {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 3.75rem;
  border-width: 2px;
}

@media (min-width: 768px) {
  .c-avatar--big {
    width: 11.25rem;
    height: 11.25rem;
    border-radius: 5.625rem;
  }
}

.c-avatar__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-bar-bottom {
  position: fixed;
  bottom: 0;
  z-index: 30;
  width: 100%;
  max-height: calc(100vh - 7em);
  pointer-events: all !important;
}

.c-bar-bottom--active {
  z-index: 30;
}

.c-bar-bottom--action {
  bottom: 0;
  display: flex;
}

.c-bar-bottom--is-ios {
  max-height: none;
}

.c-bar-bottom.bar-toggle-enter-active, .c-bar-bottom.bar-toggle-leave-active {
  transition: 600ms ease all;
}

.c-bar-bottom.bar-toggle-enter-to, .c-bar-bottom.bar-toggle-leave {
  max-height: calc(100vh - 7em);
}

.c-bar-bottom.bar-toggle-enter, .c-bar-bottom.bar-toggle-leave-to {
  max-height: 0;
}

.c-bar-bottom--action {
  height: calc(100% - 4em);
}

.c-bar-bottom--action.bar-toggle-enter-to, .c-bar-bottom--action.bar-toggle-leave {
  max-height: none;
  height: calc(100% - 4em);
}

.c-bar-bottom--action.bar-toggle-enter, .c-bar-bottom--action.bar-toggle-leave-to {
  max-height: none;
  height: 0;
}

.c-bar-bottom__wrapper {
  z-index: 1;
  width: 100%;
  background: var(--neutral-00);
  border-radius: 2rem 2rem 0 0;
  box-shadow: var(--box-shadow);
  pointer-events: all;
  max-height: calc(100vh - 7em);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-bar-bottom__wrapper {
    background: var(--neutral-20);
  }
}

.c-bar-bottom--is-ios .c-bar-bottom__wrapper {
  justify-content: normal;
}

.c-bar-bottom--action .c-bar-bottom__wrapper {
  max-height: none;
}

.c-bar-bottom__content {
  overflow-y: scroll;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-bar-bottom--is-ios.c-bar-bottom--action .c-bar-bottom__content {
  display: block;
}

.c-breadcrumbs {
  display: inline-flex;
  white-space: nowrap;
  overflow: auto;
  max-width: 100%;
}

.c-breadcrumbs__item:before {
  content: "\f105";
  color: var(--body-color-faded);
  font-family: "Font Awesome 5 Pro";
}

.c-breadcrumbs__item:first-child:before {
  content: "";
}

.c-breadcrumbs__link {
  display: inline-block;
  color: var(--body-color-faded);
  padding: 0.5rem;
  font-weight: bold;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-breadcrumbs__link {
    color: var(--neutral-40);
  }
}

.c-breadcrumbs__text {
  display: inline-block;
  color: var(--body-color-faded);
  padding: 0.5rem;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-breadcrumbs__text {
    color: var(--neutral-40);
  }
}

.c-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 600;
  background: transparent;
  line-height: 1.3em;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .c-btn {
    font-size: 1rem;
  }
}

.c-btn[disabled] {
  opacity: 0.7;
  cursor: default;
  color: var(--primary-10);
}

.c-btn--primary {
  background: var(--primary-40);
  color: white;
}

.is-dark-mode .c-btn--primary {
  background: var(--neutral-00);
  color: var(--neutral-60);
}

.c-btn--primary:hover, .c-btn--primary:focus {
  text-decoration: none;
  background: var(--primary-50) !important;
  color: white !important;
}

.c-btn--primary > i.fal {
  margin-right: 0.25rem;
}

.c-btn--primary:hover {
  text-decoration: none;
}

.c-btn--default {
  background: var(--secundary-40);
  color: white;
}

.c-btn--default:hover, .c-btn--default:focus {
  text-decoration: none;
  background: var(--secundary-50) !important;
  color: white !important;
}

.c-btn--default > i.fal {
  margin-right: 0.25rem;
}

.c-btn--lg {
  font-size: 1.5em;
}

.c-btn--text {
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
}

.c-btn--text:hover {
  text-decoration: none;
}

.c-btn--text:hover:after {
  margin-left: 1rem;
}

.c-btn--icon {
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 2.5rem;
  padding: 0;
  display: inline-flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--secundary-40);
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-btn--icon {
    color: var(--neutral-60);
  }
}

.c-btn--icon:hover, .c-btn--icon:focus {
  text-decoration: none;
}

.c-btn--icon.c-btn--lg {
  padding: 0;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
}

.c-btn--icon.c-btn--sm {
  padding: 0;
  font-size: 0.875rem;
}

.c-btn--icon.c-btn--default {
  background: var(--neutral-20);
  border: none;
}

.c-btn--icon.c-btn--default:hover, .c-btn--icon.c-btn--default:focus {
  text-decoration: none;
  background: var(--neutral-10);
}

.c-btn--icon.c-btn--secundary {
  color: var(--secundary-40);
  background: none;
  border: none;
}

.c-btn--icon.c-btn--secundary:hover, .c-btn--icon.c-btn--secundary:focus {
  text-decoration: none;
  color: var(--secundary-50);
}

.c-btn--icon > i.fal {
  margin-right: 0;
}

.c-card-article {
  background-color: var(--neutral-00);
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8rem;
}

@media (min-width: 768px) {
  .c-card-article {
    margin-bottom: 1rem;
  }
}

.c-card-article__content-wrapper {
  position: relative;
  margin: 1rem;
  margin-top: 12rem;
  margin-bottom: -8rem;
}

@media (min-width: 768px) {
  .c-card-article__content-wrapper {
    margin-bottom: -1rem;
    margin-right: 30%;
  }
}

.c-card-article__content {
  display: block;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
          backdrop-filter: saturate(180%) blur(15px);
  border-radius: 1rem;
  padding: 1rem;
  transition: 300ms ease all;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-card-article__content {
    background: rgba(33, 33, 33, 0.7);
  }
}

.c-card-article__content:hover {
  text-decoration: none;
  -webkit-backdrop-filter: saturate(100%) blur(5px);
          backdrop-filter: saturate(100%) blur(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.c-card-article__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow);
}

.c-card {
  padding-bottom: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.5rem;
  background-size: 100% auto;
  background-position-y: bottom;
  position: relative;
  box-shadow: var(--box-shadow);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(64px);
          backdrop-filter: saturate(180%) blur(64px);
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-card {
    background-color: var(--neutral-10);
    box-shadow: none;
  }
}

.c-card--primary {
  --tw-gradient-from: #025157;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0));
  --tw-gradient-to: #5DB13B;
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.c-card__header {
  padding: 2rem;
  padding-bottom: 0;
}

.c-card__heading {
  padding: 0 2rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .c-card__heading {
    padding-top: 2rem;
  }
}

.c-card__title {
  margin: 0;
}

.c-card--primary .c-card__title, .c-card--dark .c-card__title {
  color: var(--neutral-00);
}

.c-card--center .c-card__title {
  text-align: center;
}

.c-card__content {
  flex: 0 0 auto;
  position: relative;
}

.c-card--top-align .c-card__content {
  margin-top: -1.5rem;
}

@media (min-width: 768px) {
  .c-card--left-align .c-card__content {
    flex: 0 0 60%;
    margin-left: -10%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .c-card--right-align .c-card__content {
    flex: 0 0 60%;
    margin-right: -10%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.c-card__body {
  padding: 0 2rem;
  margin-top: 1.5rem;
}

.c-card__body:first-child {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .c-card__body:first-child {
    margin-top: 2rem;
  }
}

.c-card__footer {
  padding: 0 2rem;
  margin-top: 1.5rem;
}

.c-card--footer-center .c-card__footer {
  text-align: center;
}

.c-card__background-wrapper {
  width: 100%;
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
  position: relative;
  margin-bottom: -1.5rem;
  margin-top: -15%;
  z-index: 0;
}

.c-card--top-align .c-card__background-wrapper {
  border-radius: 1.5rem 1.5rem 0 0;
  margin-top: 0;
}

@media (min-width: 768px) {
  .c-card--right-align .c-card__background-wrapper, .c-card--left-align .c-card__background-wrapper {
    border-radius: 1.5rem;
    margin-top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

@media (min-width: 768px) {
  .c-card--left-align .c-card__background-wrapper {
    width: 60%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.c-card__background-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.666%;
  min-height: 8rem;
}

.c-card__background-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--neutral-10);
  background: linear-gradient(180deg, rgb(247, 247, 247) 0%, rgba(247, 247, 247, 0) 100%);
}

.c-card--dark .c-card__background-wrapper:after {
  background: var(--neutral-60);
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.c-card--top-align .c-card__background-wrapper:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgb(247, 247, 247) 100%);
}

.c-card--dark.c-card--top-align .c-card__background-wrapper:after {
  background: var(--neutral-60);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

@media (min-width: 768px) {
  .c-card--left-align .c-card__background-wrapper:after {
    background: linear-gradient(90deg, rgba(247, 247, 247, 0) 0%, rgb(247, 247, 247) 100%);
  }

  .c-card--dark.c-card--left-align .c-card__background-wrapper:after {
    background: var(--neutral-60);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  }
}

@media (min-width: 768px) {
  .c-card--right-align .c-card__background-wrapper:after {
    background: linear-gradient(90deg, rgb(247, 247, 247) 0%, rgba(247, 247, 247, 0) 100%);
  }

  .c-card--dark.c-card--right-align .c-card__background-wrapper:after {
    background: var(--neutral-60);
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.c-card__background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-checklist {
  margin: 0;
  list-style: none;
  padding: 0;
  display: inline-block;
}

.c-checklist__item {
  margin-top: 0.5em;
  position: relative;
  padding-left: 2em;
  text-align: left;
  font-weight: 600;
}

.c-checklist--inline .c-checklist__item {
  display: inline-block;
  margin-left: 1rem;
  margin-right: 1rem;
  color: var(--secundary-40);
}

.c-checklist--inline .c-checklist__item:before {
  color: var(--primary-40);
}

.c-checklist__item:first-child {
  margin-top: 0;
}

.c-checklist__item:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  margin-right: 1em;
  position: absolute;
  left: 0;
}

.c-checklist__item.is-off {
  color: var(--neutral-40);
}

.c-checklist__item.is-off:before {
  content: "\f06a";
  color: var(--neutral-40) !important;
}

.c-footer__author {
  padding: 3rem 0;
  display: block;
  text-align: center;
}

.c-footer__brandbeat-text {
  font-size: 0.875rem;
  color: var(--neutral-45);
}

.c-footer__brandbeat-logo {
  vertical-align: middle;
  padding-left: 0.5em;
  display: inline-block;
}

.c-form__fieldset {
  border: none;
  padding: 0;
  margin-top: 2rem;
}

.c-form__legend {
  font-size: 1.25rem;
  color: var(--primary-40);
  padding: 0.5rem 0;
  font-weight: bold;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--neutral-20);
}

.c-image {
  border-radius: 2rem;
  box-shadow: var(--box-shadow);
}

.c-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-family: Mukta, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  background: var(--neutral-00);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease all;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-input {
    background: var(--neutral-00);
  }
}

.c-input.is-error, .c-input--error {
  border-color: var(--color-danger);
}

.c-input:focus {
  border-color: var(--primary-50);
}

.c-input:disabled, .c-input.is-disabled {
  border-bottom-color: var(--neutral-20) !important;
  background: var(--neutral-20) !important;
}

.c-input:disabled::-moz-placeholder, .c-input.is-disabled::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input:disabled::placeholder, .c-input.is-disabled::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input--lg {
  padding: 1rem;
}

@media (min-width: 768px) {
  .c-input--lg {
    padding: 1.5rem;
    font-size: 1.25rem;
  }
}

.c-input--center {
  text-align: center;
}

.c-input--number {
  text-align: right;
}

.c-input--block {
  display: block;
  width: 100%;
}

.c-input__help {
  font-size: 0.875rem;
  margin-top: 0.5em;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input__help.is-error {
  color: var(--color-danger);
}

.c-input__help.is-error:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input__help a {
  text-decoration: underline;
}

.c-input__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 1.25rem;
  padding: 0.5rem 0;
}

.c-input:focus {
  outline: none;
}

.c-input-big {
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(64px);
          backdrop-filter: saturate(180%) blur(64px);
  overflow: hidden;
  display: flex;
}

.c-input-big__loading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-input-big__input {
  flex: 1 1 auto;
  padding: 0.5rem;
  padding-left: 1.5rem;
}

.c-input-big__input:focus {
  outline: var(--neutral-20);
}

.c-input-big__button {
  margin: 0.5rem;
}

.c-input-checkbox {
  display: inline-block;
  max-width: 100%;
}

.c-input-checkbox__label {
  cursor: pointer;
  color: var(--neutral-50);
  display: flex;
  align-items: baseline;
}

.c-input-checkbox__label:before {
  content: "\f00c";
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--neutral-30);
  border-radius: 0.25rem;
  font-family: "Font Awesome 5 Pro";
  font-size: 0.8em;
  font-weight: 900;
  text-align: center;
  padding: 2px;
  margin-right: 0.5rem;
}

.c-input-checkbox--profile .c-input-checkbox__label:before {
  margin-right: 1rem;
}

input[type=radio] + .c-input-checkbox__label:before {
  border-radius: 100%;
  content: "\f111";
}

input:checked + .c-input-checkbox__label:before {
  color: var(--tertiary-40);
  border-color: var(--tertiary-40);
}

.c-input-checkbox--diapos input:checked + .c-input-checkbox__label:before {
  color: var(--neutral-00);
}

input[type=radio]:checked + .c-input-checkbox__label:before {
  color: var(--neutral-50);
}

.c-input-checkbox input {
  display: none;
}

.c-input-group {
  margin-top: 0.5rem;
  display: block;
}

.c-input-group:first-child {
  margin-top: 0;
}

.c-input-group--horizontal {
  display: grid;
}

.c-input-group--center {
  align-items: center;
}

.c-input-group__label {
  color: var(--secundary-40);
  display: block;
  margin: 0;
  font-weight: 600;
}

.c-input-group--horizontal .c-input-group__label {
  margin-top: 0.5rem;
}

.c-input-group__input {
  margin-top: 0.5rem;
  position: relative;
}

.c-input-group__input:first-child {
  margin-top: 0;
}

.c-input-group--horizontal .c-input-group__input {
  margin-top: 0;
}

.c-input-group__input > input {
  display: block;
  width: 100%;
}

.c-input-group__passtoggle {
  background: none;
  border: none;
  font-size: 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}

.c-input-group__passtoggle:focus {
  outline: none;
}

.c-input-radio {
  display: inline-block;
  max-width: 100%;
}

.c-input-radio__label {
  cursor: pointer;
  color: var(--neutral-50);
  display: flex;
  align-items: baseline;
}

.c-input-radio__label:before {
  content: "\f00c";
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--neutral-30);
  border-radius: 0.25rem;
  font-family: "Font Awesome 5 Pro";
  font-size: 0.8em;
  font-weight: 900;
  text-align: center;
  padding: 2px;
  margin-right: 0.5rem;
}

.c-input-radio--profile .c-input-radio__label:before {
  margin-right: 1rem;
}

input[type=radio] + .c-input-radio__label:before {
  border-radius: 100%;
  content: "\f111";
}

input:checked + .c-input-radio__label:before {
  color: var(--tertiary-40);
  border-color: var(--tertiary-40);
}

.c-input-radio--diapos input:checked + .c-input-radio__label:before {
  color: var(--neutral-00);
}

input[type=radio]:checked + .c-input-radio__label:before {
  color: var(--neutral-50);
}

.c-input-radio input {
  display: none;
}

.c-input-select {
  position: relative;
}

.c-input-select--block {
  display: block;
}

.c-input-select__label {
  color: var(--neutral-50);
  line-height: 1.5em;
}

.c-input-select__input {
  width: 100%;
}

.c-input-select__input select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-family: Mukta, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  background: var(--neutral-00);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease all;
  padding-right: 2rem;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-input-select__input select {
    background: var(--neutral-00);
  }
}

.c-input-select__input select.is-error, .c-input-select__input select--error {
  border-color: var(--color-danger);
}

.c-input-select__input select:focus {
  border-color: var(--primary-50);
}

.c-input-select__input select:disabled, .c-input-select__input select.is-disabled {
  border-bottom-color: var(--neutral-20) !important;
  background: var(--neutral-20) !important;
}

.c-input-select__input select:disabled::-moz-placeholder, .c-input-select__input select.is-disabled::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select:disabled::placeholder, .c-input-select__input select.is-disabled::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select--lg {
  padding: 1rem;
}

@media (min-width: 768px) {
  .c-input-select__input select--lg {
    padding: 1.5rem;
    font-size: 1.25rem;
  }
}

.c-input-select__input select--center {
  text-align: center;
}

.c-input-select__input select--number {
  text-align: right;
}

.c-input-select__input select--block {
  display: block;
  width: 100%;
}

.c-input-select__input select__help {
  font-size: 0.875rem;
  margin-top: 0.5em;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input-select__input select__help.is-error {
  color: var(--color-danger);
}

.c-input-select__input select__help.is-error:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input-select__input select__help a {
  text-decoration: underline;
}

.c-input-select__input select__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 1.25rem;
  padding: 0.5rem 0;
}

.c-input-select__input select:focus {
  outline: none;
}

.is-error .c-input-select__input select {
  border-color: var(--color-danger);
}

.c-input-select__input select:focus {
  border-bottom-color: var(--primary-50);
  outline: none;
}

.c-input-select__input select::-moz-placeholder {
  color: var(--neutral-20);
}

.c-input-select__input select::placeholder {
  color: var(--neutral-20);
}

.c-input-select__select-pointer {
  position: absolute;
  top: 0;
  height: 100%;
  right: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.c-input-special {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-family: Mukta, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  background: transparent;
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid white;
  max-width: 100%;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease all;
}

.c-input-special:focus {
  outline: none;
}

.c-input-special::-moz-placeholder {
  color: var(--neutral-20);
  font-weight: normal;
}

.c-input-special::placeholder {
  color: var(--neutral-20);
  font-weight: normal;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-input-special::-moz-placeholder {
    color: var(--neutral-40);
  }
  .c-input-special::placeholder {
    color: var(--neutral-40);
  }
}

.c-input-toggle-pill {
  display: inline;
}

.c-input-toggle-pill__pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  background: var(--neutral-10);
  color: var(--neutral-60);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 1.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

@media (pointer: fine){
  .c-input-toggle-pill__pill:hover {
    text-decoration: none;
    background: var(--primary-50);
    color: white;
  }
}

.c-input-toggle-pill__pill{
  color: white;
  background: var(--secundary-40);
  cursor: pointer;
}

input:checked + .c-input-toggle-pill__pill {
  color: white;
  background: var(--primary-40);
}

@media (pointer: fine){
  input:checked + .c-input-toggle-pill__pill .c-pill__action:hover {
    background: var(--primary-60);
  }
}

.c-input-toggle-pill input {
  display: none;
}

.c-lead {
  margin-top: 0.5em;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .c-lead {
    font-weight: 300;
    font-size: 1.5rem;
  }
}

.c-lead:first-child {
  margin-top: 0;
}

.c-lead--diapos {
  color: var(--neutral-00);
}

.c-nav-main {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-nav-main__item {
  margin: 1rem 0;
  position: relative;
}

.c-nav-main--mobile .c-nav-main__item {
  margin: 0;
}

.c-nav-main__item:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-40);
  border-radius: 100%;
  margin: 0 auto;
  margin-top: 0.5rem;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: 200ms ease all;
}

.c-nav-main__item.is-current:after {
  opacity: 1;
}

.c-nav-main__item.is-current.is-active:after {
  opacity: 0;
}

.c-nav-main__link {
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  color: var(--secundary-40);
  font-size: 1.125rem;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-nav-main__link {
    color: var(--neutral-60);
  }
}

.c-nav-main__item.is-active .c-nav-main__link {
  background: var(--neutral-20);
}

.c-nav-main__link:hover {
  text-decoration: none;
  background: var(--neutral-20);
}

.c-nav-main--mobile .c-nav-main__link {
  font-size: 0.875rem;
  padding: 0.5rem;
}

.c-nav-main__dropdown {
  position: absolute;
  z-index: 1;
  top: 3rem;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
          backdrop-filter: saturate(180%) blur(15px);
  box-shadow: var(--box-shadow);
  border-radius: 1.5rem;
  padding: 1rem;
  min-width: 320px;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-nav-main__dropdown {
    background: rgba(33, 33, 33, 0.6);
    box-shadow: none;
  }
}

.c-nav-main__dropdown--large {
  min-width: 640px;
}

.c-nav-main--mobile .c-nav-main__dropdown {
  position: relative;
  box-shadow: none;
  border-radius: 0;
}

.c-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-nav--tabs .c-nav__item {
  display: inline-block;
  margin: 0 0.5rem;
}

.c-nav__link {
  display: block;
  padding: 0.25rem 0;
  color: var(--neutral-60);
  cursor: pointer;
  position: relative;
  text-decoration: underline;
  white-space: nowrap;
}

.c-nav--tabs .c-nav__link {
  font-weight: bold;
  color: var(--neutral-40);
  text-decoration: none;
}

.c-nav__link:hover {
  color: var(--primary-40);
}

.c-navbar-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 30;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
          backdrop-filter: saturate(180%) blur(15px);
  box-shadow: var(--box-shadow);
}

@media (min-width: 768px) {
  .c-navbar-bottom {
    display: none;
  }
}

.c-navbar-bottom__button {
  pointer-events: none;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.c-navbar-bottom__button .c-btn {
  pointer-events: all;
}

.c-navbar-bottom__submenu {
  margin-top: 1rem;
}

.c-navbar-bottom__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  -webkit-animation: fadeIn 300ms ease;
          animation: fadeIn 300ms ease;
}

.c-navbar-top {
  background: var(--body-bg-color);
}

@media (min-width: 768px) {
  .c-navbar-top {
    position: relative;
  }
}

.c-navbar-top__container {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: space-evenly;
  min-height: 5rem;
}

@media (min-width: 768px) {
  .c-navbar-top__container {
    min-height: 6.5rem;
  }
}

.c-navbar-top__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-navbar-top__logo {
  max-height: 4rem;
}

@media (min-width: 768px) {
  .c-navbar-top__logo {
    max-height: 6rem;
  }
}

.c-navbar-top__menu-toggle {
  grid-column: 1;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .c-navbar-top__menu-toggle {
    display: none;
  }
}

.c-navbar-top__menu-wrapper {
  grid-column: 2;
  padding: 0 1.5rem;
  display: none;
}

@media (min-width: 768px) {
  .c-navbar-top__menu-wrapper {
    display: flex;
    justify-content: center;
  }
}

.c-navbar-top__menu {
  display: flex;
  align-items: center;
}

.c-navbar-top__actions {
  display: flex;
  align-items: center;
  text-align: right;
}

.c-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
  max-height: 100vh;
}

@media (min-width: 768px) {
  .c-panel {
    height: 570px;
  }
}

.c-panel--no-height {
  height: auto !important;
}

.c-panel__header {
  padding: 1rem 1.5rem;
  padding-top: 1.5rem;
  position: relative;
  flex: 0 0 auto;
}

.c-panel__header:after {
  content: "";
  border-bottom: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-panel__header:after {
    content: "";
    border-bottom: 1px solid var(--neutral-30);
    width: calc(100% - 2em);
    position: absolute;
    bottom: 0;
    left: 1em;
  }
}

.c-panel__body {
  flex: 1 1 auto;
  max-height: 100vh;
  overflow: auto;
  transition: 300ms ease max-height;
}

.c-panel__body-wrapper {
  padding: 1rem 1.5rem;
}

.c-panel__footer {
  padding: 1rem 1.5rem;
  position: relative;
  flex: 0 0 auto;
}

.c-panel__footer:after {
  content: "";
  border-top: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
  bottom: auto;
  top: 0;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-panel__footer:after {
    content: "";
    border-top: 1px solid var(--neutral-30);
    width: calc(100% - 2em);
    position: absolute;
    bottom: 0;
    left: 1em;
    bottom: auto;
    top: 0;
  }
}

.c-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  background: var(--neutral-10);
  color: var(--neutral-60);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 1.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

.c-pill--toggle {
  background: var(--neutral-30);
  color: var(--neutral-60);
  cursor: pointer;
}

.c-pill--primary {
  color: white;
  background: var(--primary-40);
}

.c-pill--default {
  color: white;
  background: var(--secundary-40);
}

.c-pill--faded {
  background: var(--neutral-30);
  color: var(--neutral-60);
}

.c-pill--diapos {
  color: var(--neutral-60);
  background: var(--neutral-10);
}

.c-pill--lg {
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
}

@media (pointer: fine) {
  .c-pill:hover {
    text-decoration: none;
    background: var(--primary-50);
    color: white;
  }
}

.c-pill__action {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  margin-left: -1rem;
  transform: translateX(1rem);
  min-height: 1.5rem;
  cursor: pointer;
}

.c-pill__action:hover {
  text-decoration: none;
}

@media (pointer: fine) {
  .c-pill__action:hover {
    background: var(--neutral-50);
    border-radius: 0 2rem 2rem 0;
  }

  .c-pill--primary .c-pill__action:hover {
    background: var(--primary-60);
  }
}

.c-profile-box {
  display: inline-flex;
  align-items: center;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .c-profile-box--mobile-stack {
    display: block;
    text-align: center;
  }
}

.c-profile-box__avatar {
  width: 3rem;
  height: 3rem;
  display: block;
  flex: 0 0 3rem;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .c-profile-box--mobile-stack .c-profile-box__avatar {
    margin: 0 auto;
  }
}

.c-profile-box--large .c-profile-box__avatar {
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
}

.c-profile-box--small .c-profile-box__avatar {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
}

.c-profile-box--avatar-right .c-profile-box__avatar {
  order: 2;
}

.c-profile-box__label {
  padding: 0 1rem;
  margin: 0;
  flex: 0 1 auto;
  line-height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-profile-box__label > * {
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-profile-box--avatar-right .c-profile-box__label {
  text-align: right;
}

.c-profile-box:hover, .c-profile-box:focus {
  text-decoration: none !important;
}

.c-profile-box:focus {
  outline: none;
}

.c-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.c-social-list__item {
  display: inline-block;
  padding-top: 0.5rem;
}

.c-topnav-nav__link {
  display: block;
  padding: 0.5rem;
  color: var(--secundary-40);
  text-decoration: underline;
}

@media screen and (prefers-color-scheme: darkoff) {
  .c-topnav-nav__link {
    color: var(--neutral-60);
  }
}

.c-topnav-nav__item.is-current .c-topnav-nav__link, .c-topnav-nav__item.exact-active .c-topnav-nav__link {
  font-weight: 700;
  text-decoration: none;
}

.c-content table td {
  padding: 0.5rem;
}

/*
  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 */

/* purgecss end ignore */

@media (min-width: 450px){
  .mobile-large\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

  @media (min-width: 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: -webkit-sticky !important;
    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: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .mobile-large\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .mobile-large\:u-min-w-sm{
    min-width: 320px !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: 1280px !important;
  }

  .mobile-large\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .mobile-large\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .mobile-large\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .mobile-large\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .mobile-large\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .mobile-large\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .mobile-large\:u-max-w-full{
    max-width: 100% !important;
  }

  .mobile-large\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .mobile-large\:u-max-w-max{
    max-width: -webkit-max-content !important;
    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-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: 1120px !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{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .mobile-large\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .mobile-large\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .mobile-large\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .mobile-large\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .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: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .mobile-large\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .mobile-large\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .mobile-large\:u-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: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .mobile-large\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .mobile-large\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .mobile-large\:u-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-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !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-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !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-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .mobile-large\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .mobile-large\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .mobile-large\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .mobile-large\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .mobile-large\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .mobile-large\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .mobile-large\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .mobile-large\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .mobile-large\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .mobile-large\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .mobile-large\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .mobile-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .mobile-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .mobile-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .mobile-large\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .mobile-large\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .mobile-large\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .mobile-large\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .mobile-large\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .mobile-large\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .mobile-large\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .mobile-large\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .mobile-large\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .mobile-large\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .mobile-large\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .mobile-large\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .mobile-large\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .mobile-large\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .mobile-large\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .mobile-large\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .mobile-large\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .mobile-large\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .mobile-large\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !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: #FFFBF7 !important;
  }

  .mobile-large\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .mobile-large\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .mobile-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .mobile-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .mobile-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .mobile-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .mobile-large\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .mobile-large\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .mobile-large\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .mobile-large\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .mobile-large\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .mobile-large\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !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: #FFFBF7 !important;
  }

  .mobile-large\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .mobile-large\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .mobile-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .mobile-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .mobile-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .mobile-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !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: Mukta, sans-serif !important;
  }

  .mobile-large\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .mobile-large\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .mobile-large\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .mobile-large\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .mobile-large\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .mobile-large\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .mobile-large\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .mobile-large\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .mobile-large\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .mobile-large\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .mobile-large\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .mobile-large\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .mobile-large\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .mobile-large\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .mobile-large\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:u-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-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-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, 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-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-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .mobile-large\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile-large\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile-large\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile-large\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile-large\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile-large\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile-large\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile-large\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile-large\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile-large\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile-large\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile-large\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile-large\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile-large\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .mobile-large\:u-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-black{
    --tw-ring-offset-color: #000 !important;
  }

  .mobile-large\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .mobile-large\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .mobile-large\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .mobile-large\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .mobile-large\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .mobile-large\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .mobile-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .mobile-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .mobile-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .mobile-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .mobile-large\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .mobile-large\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .mobile-large\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .mobile-large\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .mobile-large\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !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;
    -webkit-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;
            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{
    -webkit-backdrop-filter: none !important;
            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, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

  @media (min-width: 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: -webkit-sticky !important;
    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: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet-small\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet-small\:u-min-w-sm{
    min-width: 320px !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: 1280px !important;
  }

  .tablet-small\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .tablet-small\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .tablet-small\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .tablet-small\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .tablet-small\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .tablet-small\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .tablet-small\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet-small\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .tablet-small\:u-max-w-max{
    max-width: -webkit-max-content !important;
    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-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: 1120px !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{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tablet-small\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .tablet-small\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet-small\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet-small\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .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: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .tablet-small\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .tablet-small\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .tablet-small\:u-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: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .tablet-small\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .tablet-small\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .tablet-small\:u-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-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !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-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !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-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-small\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-small\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-small\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-small\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-small\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-small\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-small\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-small\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-small\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-small\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-small\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-small\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-small\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-small\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-small\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-small\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-small\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-small\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .tablet-small\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .tablet-small\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-small\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet-small\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .tablet-small\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-small\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet-small\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet-small\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet-small\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet-small\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .tablet-small\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .tablet-small\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .tablet-small\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-small\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet-small\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-small\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-small\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet-small\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet-small\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet-small\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet-small\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .tablet-small\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .tablet-small\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .tablet-small\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-small\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-small\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet-small\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-small\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-small\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet-small\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet-small\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet-small\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet-small\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !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: Mukta, sans-serif !important;
  }

  .tablet-small\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .tablet-small\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .tablet-small\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .tablet-small\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .tablet-small\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .tablet-small\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .tablet-small\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .tablet-small\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .tablet-small\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .tablet-small\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .tablet-small\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .tablet-small\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .tablet-small\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .tablet-small\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .tablet-small\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:u-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-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-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, 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-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-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-small\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-small\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-small\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-small\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-small\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-small\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-small\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-small\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-small\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-small\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-small\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-small\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-small\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-small\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-small\:u-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-black{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-small\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-small\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-small\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet-small\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-small\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet-small\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet-small\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet-small\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet-small\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet-small\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .tablet-small\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-small\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-small\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-small\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet-small\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !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;
    -webkit-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;
            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{
    -webkit-backdrop-filter: none !important;
            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, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

  @media (min-width: 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: -webkit-sticky !important;
    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: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet\:u-min-w-sm{
    min-width: 320px !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: 1280px !important;
  }

  .tablet\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .tablet\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .tablet\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .tablet\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .tablet\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .tablet\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .tablet\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .tablet\:u-max-w-max{
    max-width: -webkit-max-content !important;
    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-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: 1120px !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{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tablet\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .tablet\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .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: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .tablet\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .tablet\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .tablet\:u-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: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .tablet\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .tablet\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .tablet\:u-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-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !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-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !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-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .tablet\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .tablet\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .tablet\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .tablet\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .tablet\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .tablet\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .tablet\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .tablet\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .tablet\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .tablet\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .tablet\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .tablet\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .tablet\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .tablet\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !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: Mukta, sans-serif !important;
  }

  .tablet\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .tablet\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .tablet\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .tablet\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .tablet\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .tablet\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .tablet\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .tablet\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .tablet\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .tablet\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .tablet\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .tablet\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .tablet\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .tablet\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .tablet\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:u-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-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-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, 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-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-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .tablet\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .tablet\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .tablet\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .tablet\:u-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-black{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .tablet\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .tablet\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .tablet\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !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;
    -webkit-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;
            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{
    -webkit-backdrop-filter: none !important;
            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, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

  @media (min-width: 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: -webkit-sticky !important;
    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: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet-large\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet-large\:u-min-w-sm{
    min-width: 320px !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: 1280px !important;
  }

  .tablet-large\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .tablet-large\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .tablet-large\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .tablet-large\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .tablet-large\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .tablet-large\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .tablet-large\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet-large\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .tablet-large\:u-max-w-max{
    max-width: -webkit-max-content !important;
    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-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: 1120px !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{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tablet-large\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .tablet-large\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet-large\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet-large\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .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: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .tablet-large\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .tablet-large\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .tablet-large\:u-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: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .tablet-large\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .tablet-large\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .tablet-large\:u-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-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !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-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !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-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-large\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-large\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-large\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-large\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-large\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-large\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-large\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-large\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-large\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-large\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-large\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-large\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-large\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-large\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .tablet-large\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .tablet-large\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .tablet-large\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-large\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet-large\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .tablet-large\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-large\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet-large\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet-large\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet-large\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet-large\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .tablet-large\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .tablet-large\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .tablet-large\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-large\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet-large\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-large\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-large\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .tablet-large\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .tablet-large\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .tablet-large\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-large\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .tablet-large\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .tablet-large\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-large\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-large\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .tablet-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .tablet-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .tablet-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .tablet-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !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: Mukta, sans-serif !important;
  }

  .tablet-large\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .tablet-large\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .tablet-large\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .tablet-large\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .tablet-large\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .tablet-large\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .tablet-large\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .tablet-large\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .tablet-large\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .tablet-large\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .tablet-large\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .tablet-large\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .tablet-large\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .tablet-large\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .tablet-large\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:u-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-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-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, 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-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-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, 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, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-large\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-large\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-large\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-large\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-large\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-large\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-large\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-large\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-large\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-large\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-large\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-large\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-large\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-large\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-large\:u-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-black{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-large\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-large\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-large\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet-large\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-large\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet-large\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .tablet-large\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-large\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-large\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .tablet-large\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .tablet-large\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !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;
    -webkit-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;
            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{
    -webkit-backdrop-filter: none !important;
            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, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

  @media (min-width: 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: -webkit-sticky !important;
    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: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .desktop\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .desktop\:u-min-w-sm{
    min-width: 320px !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: 1280px !important;
  }

  .desktop\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .desktop\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .desktop\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .desktop\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .desktop\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .desktop\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .desktop\:u-max-w-full{
    max-width: 100% !important;
  }

  .desktop\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .desktop\:u-max-w-max{
    max-width: -webkit-max-content !important;
    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-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: 1120px !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{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .desktop\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .desktop\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .desktop\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .desktop\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .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: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .desktop\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .desktop\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .desktop\:u-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: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .desktop\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .desktop\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .desktop\:u-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-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !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-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !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-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .desktop\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .desktop\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .desktop\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .desktop\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .desktop\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .desktop\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .desktop\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .desktop\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 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-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: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .desktop\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .desktop\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .desktop\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .desktop\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .desktop\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .desktop\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .desktop\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .desktop\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .desktop\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 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-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), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .desktop\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .desktop\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .desktop\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .desktop\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .desktop\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .desktop\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .desktop\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .desktop\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .desktop\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .desktop\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .desktop\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .desktop\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .desktop\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .desktop\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .desktop\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .desktop\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .desktop\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .desktop\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .desktop\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .desktop\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .desktop\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .desktop\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .desktop\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .desktop\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .desktop\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .desktop\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .desktop\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .desktop\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .desktop\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .desktop\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .desktop\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .desktop\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .desktop\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .desktop\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !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: Mukta, sans-serif !important;
  }

  .desktop\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .desktop\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .desktop\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .desktop\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .desktop\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .desktop\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .desktop\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .desktop\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .desktop\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .desktop\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .desktop\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .desktop\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .desktop\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .desktop\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .desktop\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !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-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:u-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-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-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-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, 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-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-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !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-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, 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-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(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .desktop\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .desktop\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .desktop\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .desktop\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .desktop\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .desktop\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .desktop\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .desktop\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .desktop\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .desktop\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .desktop\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .desktop\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .desktop\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .desktop\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .desktop\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .desktop\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .desktop\:u-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-black{
    --tw-ring-offset-color: #000 !important;
  }

  .desktop\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .desktop\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .desktop\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .desktop\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .desktop\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .desktop\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .desktop\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .desktop\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .desktop\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .desktop\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .desktop\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .desktop\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .desktop\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .desktop\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .desktop\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .desktop\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .desktop\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .desktop\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .desktop\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .desktop\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !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: #FFFBF7 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !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;
    -webkit-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;
            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{
    -webkit-backdrop-filter: none !important;
            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, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-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;
  }
}

@media (prefers-color-scheme: dark){
  .dark-mode\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

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

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

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

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

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

  .dark-mode\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .dark-mode\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .dark-mode\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .dark-mode\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .dark-mode\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .dark-mode\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .dark-mode\:u-pointer-events-none{
    pointer-events: none !important;
  }

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

  .dark-mode\:u-visible{
    visibility: visible !important;
  }

  .dark-mode\:u-invisible{
    visibility: hidden !important;
  }

  .dark-mode\:u-static{
    position: static !important;
  }

  .dark-mode\:u-fixed{
    position: fixed !important;
  }

  .dark-mode\:u-absolute{
    position: absolute !important;
  }

  .dark-mode\:u-relative{
    position: relative !important;
  }

  .dark-mode\:u-sticky{
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .dark-mode\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .dark-mode\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .dark-mode\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .dark-mode\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .dark-mode\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .dark-mode\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .dark-mode\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .dark-mode\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .dark-mode\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .dark-mode\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .dark-mode\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .dark-mode\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .dark-mode\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .dark-mode\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .dark-mode\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .dark-mode\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .dark-mode\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .dark-mode\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .dark-mode\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .dark-mode\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .dark-mode\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .dark-mode\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .dark-mode\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .dark-mode\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .dark-mode\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .dark-mode\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .dark-mode\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .dark-mode\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .dark-mode\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .dark-mode\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .dark-mode\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .dark-mode\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .dark-mode\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .dark-mode\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .dark-mode\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .dark-mode\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .dark-mode\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .dark-mode\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .dark-mode\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .dark-mode\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .dark-mode\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .dark-mode\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .dark-mode\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .dark-mode\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .dark-mode\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .dark-mode\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .dark-mode\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .dark-mode\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .dark-mode\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .dark-mode\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .dark-mode\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .dark-mode\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .dark-mode\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .dark-mode\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .dark-mode\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .dark-mode\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .dark-mode\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .dark-mode\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .dark-mode\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .dark-mode\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .dark-mode\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .dark-mode\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .dark-mode\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .dark-mode\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .dark-mode\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .dark-mode\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .dark-mode\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .dark-mode\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .dark-mode\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .dark-mode\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .dark-mode\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .dark-mode\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .dark-mode\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .dark-mode\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .dark-mode\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .dark-mode\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .dark-mode\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .dark-mode\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .dark-mode\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .dark-mode\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .dark-mode\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .dark-mode\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .dark-mode\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .dark-mode\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .dark-mode\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .dark-mode\:u-top-auto{
    top: auto !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .dark-mode\:u-right-auto{
    right: auto !important;
  }

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

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

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

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

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

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

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

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

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

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

  .dark-mode\:u--right-5{
    right: -1.25rem !important;
  }

  .dark-mode\:u--right-6{
    right: -1.5rem !important;
  }

  .dark-mode\:u--right-7{
    right: -1.75rem !important;
  }

  .dark-mode\:u--right-8{
    right: -2rem !important;
  }

  .dark-mode\:u--right-9{
    right: -2.25rem !important;
  }

  .dark-mode\:u--right-10{
    right: -2.5rem !important;
  }

  .dark-mode\:u--right-11{
    right: -2.75rem !important;
  }

  .dark-mode\:u--right-12{
    right: -3rem !important;
  }

  .dark-mode\:u--right-14{
    right: -3.5rem !important;
  }

  .dark-mode\:u--right-16{
    right: -4rem !important;
  }

  .dark-mode\:u--right-20{
    right: -5rem !important;
  }

  .dark-mode\:u--right-24{
    right: -6rem !important;
  }

  .dark-mode\:u--right-28{
    right: -7rem !important;
  }

  .dark-mode\:u--right-32{
    right: -8rem !important;
  }

  .dark-mode\:u--right-36{
    right: -9rem !important;
  }

  .dark-mode\:u--right-40{
    right: -10rem !important;
  }

  .dark-mode\:u--right-44{
    right: -11rem !important;
  }

  .dark-mode\:u--right-48{
    right: -12rem !important;
  }

  .dark-mode\:u--right-52{
    right: -13rem !important;
  }

  .dark-mode\:u--right-56{
    right: -14rem !important;
  }

  .dark-mode\:u--right-60{
    right: -15rem !important;
  }

  .dark-mode\:u--right-64{
    right: -16rem !important;
  }

  .dark-mode\:u--right-72{
    right: -18rem !important;
  }

  .dark-mode\:u--right-80{
    right: -20rem !important;
  }

  .dark-mode\:u--right-96{
    right: -24rem !important;
  }

  .dark-mode\:u--right-px{
    right: -1px !important;
  }

  .dark-mode\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .dark-mode\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .dark-mode\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .dark-mode\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .dark-mode\:u-right-1\/2{
    right: 50% !important;
  }

  .dark-mode\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .dark-mode\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .dark-mode\:u-right-1\/4{
    right: 25% !important;
  }

  .dark-mode\:u-right-2\/4{
    right: 50% !important;
  }

  .dark-mode\:u-right-3\/4{
    right: 75% !important;
  }

  .dark-mode\:u-right-full{
    right: 100% !important;
  }

  .dark-mode\:u--right-1\/2{
    right: -50% !important;
  }

  .dark-mode\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .dark-mode\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .dark-mode\:u--right-1\/4{
    right: -25% !important;
  }

  .dark-mode\:u--right-2\/4{
    right: -50% !important;
  }

  .dark-mode\:u--right-3\/4{
    right: -75% !important;
  }

  .dark-mode\:u--right-full{
    right: -100% !important;
  }

  .dark-mode\:u-bottom-0{
    bottom: 0px !important;
  }

  .dark-mode\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .dark-mode\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .dark-mode\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .dark-mode\:u-bottom-4{
    bottom: 1rem !important;
  }

  .dark-mode\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .dark-mode\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .dark-mode\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .dark-mode\:u-bottom-8{
    bottom: 2rem !important;
  }

  .dark-mode\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .dark-mode\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .dark-mode\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .dark-mode\:u-bottom-12{
    bottom: 3rem !important;
  }

  .dark-mode\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .dark-mode\:u-bottom-16{
    bottom: 4rem !important;
  }

  .dark-mode\:u-bottom-20{
    bottom: 5rem !important;
  }

  .dark-mode\:u-bottom-24{
    bottom: 6rem !important;
  }

  .dark-mode\:u-bottom-28{
    bottom: 7rem !important;
  }

  .dark-mode\:u-bottom-32{
    bottom: 8rem !important;
  }

  .dark-mode\:u-bottom-36{
    bottom: 9rem !important;
  }

  .dark-mode\:u-bottom-40{
    bottom: 10rem !important;
  }

  .dark-mode\:u-bottom-44{
    bottom: 11rem !important;
  }

  .dark-mode\:u-bottom-48{
    bottom: 12rem !important;
  }

  .dark-mode\:u-bottom-52{
    bottom: 13rem !important;
  }

  .dark-mode\:u-bottom-56{
    bottom: 14rem !important;
  }

  .dark-mode\:u-bottom-60{
    bottom: 15rem !important;
  }

  .dark-mode\:u-bottom-64{
    bottom: 16rem !important;
  }

  .dark-mode\:u-bottom-72{
    bottom: 18rem !important;
  }

  .dark-mode\:u-bottom-80{
    bottom: 20rem !important;
  }

  .dark-mode\:u-bottom-96{
    bottom: 24rem !important;
  }

  .dark-mode\:u-bottom-auto{
    bottom: auto !important;
  }

  .dark-mode\:u-bottom-px{
    bottom: 1px !important;
  }

  .dark-mode\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .dark-mode\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .dark-mode\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .dark-mode\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .dark-mode\:u--bottom-0{
    bottom: 0px !important;
  }

  .dark-mode\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .dark-mode\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .dark-mode\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .dark-mode\:u--bottom-4{
    bottom: -1rem !important;
  }

  .dark-mode\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .dark-mode\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .dark-mode\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .dark-mode\:u--bottom-8{
    bottom: -2rem !important;
  }

  .dark-mode\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .dark-mode\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .dark-mode\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .dark-mode\:u--bottom-12{
    bottom: -3rem !important;
  }

  .dark-mode\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .dark-mode\:u--bottom-16{
    bottom: -4rem !important;
  }

  .dark-mode\:u--bottom-20{
    bottom: -5rem !important;
  }

  .dark-mode\:u--bottom-24{
    bottom: -6rem !important;
  }

  .dark-mode\:u--bottom-28{
    bottom: -7rem !important;
  }

  .dark-mode\:u--bottom-32{
    bottom: -8rem !important;
  }

  .dark-mode\:u--bottom-36{
    bottom: -9rem !important;
  }

  .dark-mode\:u--bottom-40{
    bottom: -10rem !important;
  }

  .dark-mode\:u--bottom-44{
    bottom: -11rem !important;
  }

  .dark-mode\:u--bottom-48{
    bottom: -12rem !important;
  }

  .dark-mode\:u--bottom-52{
    bottom: -13rem !important;
  }

  .dark-mode\:u--bottom-56{
    bottom: -14rem !important;
  }

  .dark-mode\:u--bottom-60{
    bottom: -15rem !important;
  }

  .dark-mode\:u--bottom-64{
    bottom: -16rem !important;
  }

  .dark-mode\:u--bottom-72{
    bottom: -18rem !important;
  }

  .dark-mode\:u--bottom-80{
    bottom: -20rem !important;
  }

  .dark-mode\:u--bottom-96{
    bottom: -24rem !important;
  }

  .dark-mode\:u--bottom-px{
    bottom: -1px !important;
  }

  .dark-mode\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .dark-mode\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .dark-mode\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .dark-mode\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .dark-mode\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .dark-mode\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .dark-mode\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .dark-mode\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .dark-mode\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .dark-mode\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .dark-mode\:u-bottom-full{
    bottom: 100% !important;
  }

  .dark-mode\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .dark-mode\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .dark-mode\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .dark-mode\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .dark-mode\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .dark-mode\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .dark-mode\:u--bottom-full{
    bottom: -100% !important;
  }

  .dark-mode\:u-left-0{
    left: 0px !important;
  }

  .dark-mode\:u-left-1{
    left: 0.25rem !important;
  }

  .dark-mode\:u-left-2{
    left: 0.5rem !important;
  }

  .dark-mode\:u-left-3{
    left: 0.75rem !important;
  }

  .dark-mode\:u-left-4{
    left: 1rem !important;
  }

  .dark-mode\:u-left-5{
    left: 1.25rem !important;
  }

  .dark-mode\:u-left-6{
    left: 1.5rem !important;
  }

  .dark-mode\:u-left-7{
    left: 1.75rem !important;
  }

  .dark-mode\:u-left-8{
    left: 2rem !important;
  }

  .dark-mode\:u-left-9{
    left: 2.25rem !important;
  }

  .dark-mode\:u-left-10{
    left: 2.5rem !important;
  }

  .dark-mode\:u-left-11{
    left: 2.75rem !important;
  }

  .dark-mode\:u-left-12{
    left: 3rem !important;
  }

  .dark-mode\:u-left-14{
    left: 3.5rem !important;
  }

  .dark-mode\:u-left-16{
    left: 4rem !important;
  }

  .dark-mode\:u-left-20{
    left: 5rem !important;
  }

  .dark-mode\:u-left-24{
    left: 6rem !important;
  }

  .dark-mode\:u-left-28{
    left: 7rem !important;
  }

  .dark-mode\:u-left-32{
    left: 8rem !important;
  }

  .dark-mode\:u-left-36{
    left: 9rem !important;
  }

  .dark-mode\:u-left-40{
    left: 10rem !important;
  }

  .dark-mode\:u-left-44{
    left: 11rem !important;
  }

  .dark-mode\:u-left-48{
    left: 12rem !important;
  }

  .dark-mode\:u-left-52{
    left: 13rem !important;
  }

  .dark-mode\:u-left-56{
    left: 14rem !important;
  }

  .dark-mode\:u-left-60{
    left: 15rem !important;
  }

  .dark-mode\:u-left-64{
    left: 16rem !important;
  }

  .dark-mode\:u-left-72{
    left: 18rem !important;
  }

  .dark-mode\:u-left-80{
    left: 20rem !important;
  }

  .dark-mode\:u-left-96{
    left: 24rem !important;
  }

  .dark-mode\:u-left-auto{
    left: auto !important;
  }

  .dark-mode\:u-left-px{
    left: 1px !important;
  }

  .dark-mode\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .dark-mode\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .dark-mode\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .dark-mode\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .dark-mode\:u--left-0{
    left: 0px !important;
  }

  .dark-mode\:u--left-1{
    left: -0.25rem !important;
  }

  .dark-mode\:u--left-2{
    left: -0.5rem !important;
  }

  .dark-mode\:u--left-3{
    left: -0.75rem !important;
  }

  .dark-mode\:u--left-4{
    left: -1rem !important;
  }

  .dark-mode\:u--left-5{
    left: -1.25rem !important;
  }

  .dark-mode\:u--left-6{
    left: -1.5rem !important;
  }

  .dark-mode\:u--left-7{
    left: -1.75rem !important;
  }

  .dark-mode\:u--left-8{
    left: -2rem !important;
  }

  .dark-mode\:u--left-9{
    left: -2.25rem !important;
  }

  .dark-mode\:u--left-10{
    left: -2.5rem !important;
  }

  .dark-mode\:u--left-11{
    left: -2.75rem !important;
  }

  .dark-mode\:u--left-12{
    left: -3rem !important;
  }

  .dark-mode\:u--left-14{
    left: -3.5rem !important;
  }

  .dark-mode\:u--left-16{
    left: -4rem !important;
  }

  .dark-mode\:u--left-20{
    left: -5rem !important;
  }

  .dark-mode\:u--left-24{
    left: -6rem !important;
  }

  .dark-mode\:u--left-28{
    left: -7rem !important;
  }

  .dark-mode\:u--left-32{
    left: -8rem !important;
  }

  .dark-mode\:u--left-36{
    left: -9rem !important;
  }

  .dark-mode\:u--left-40{
    left: -10rem !important;
  }

  .dark-mode\:u--left-44{
    left: -11rem !important;
  }

  .dark-mode\:u--left-48{
    left: -12rem !important;
  }

  .dark-mode\:u--left-52{
    left: -13rem !important;
  }

  .dark-mode\:u--left-56{
    left: -14rem !important;
  }

  .dark-mode\:u--left-60{
    left: -15rem !important;
  }

  .dark-mode\:u--left-64{
    left: -16rem !important;
  }

  .dark-mode\:u--left-72{
    left: -18rem !important;
  }

  .dark-mode\:u--left-80{
    left: -20rem !important;
  }

  .dark-mode\:u--left-96{
    left: -24rem !important;
  }

  .dark-mode\:u--left-px{
    left: -1px !important;
  }

  .dark-mode\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .dark-mode\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .dark-mode\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .dark-mode\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .dark-mode\:u-left-1\/2{
    left: 50% !important;
  }

  .dark-mode\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .dark-mode\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .dark-mode\:u-left-1\/4{
    left: 25% !important;
  }

  .dark-mode\:u-left-2\/4{
    left: 50% !important;
  }

  .dark-mode\:u-left-3\/4{
    left: 75% !important;
  }

  .dark-mode\:u-left-full{
    left: 100% !important;
  }

  .dark-mode\:u--left-1\/2{
    left: -50% !important;
  }

  .dark-mode\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .dark-mode\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .dark-mode\:u--left-1\/4{
    left: -25% !important;
  }

  .dark-mode\:u--left-2\/4{
    left: -50% !important;
  }

  .dark-mode\:u--left-3\/4{
    left: -75% !important;
  }

  .dark-mode\:u--left-full{
    left: -100% !important;
  }

  .dark-mode\:u-isolate{
    isolation: isolate !important;
  }

  .dark-mode\:u-isolation-auto{
    isolation: auto !important;
  }

  .dark-mode\:u-z-0{
    z-index: 0 !important;
  }

  .dark-mode\:u-z-10{
    z-index: 10 !important;
  }

  .dark-mode\:u-z-20{
    z-index: 20 !important;
  }

  .dark-mode\:u-z-30{
    z-index: 30 !important;
  }

  .dark-mode\:u-z-40{
    z-index: 40 !important;
  }

  .dark-mode\:u-z-50{
    z-index: 50 !important;
  }

  .dark-mode\:u-z-auto{
    z-index: auto !important;
  }

  .dark-mode\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .dark-mode\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .dark-mode\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .dark-mode\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .dark-mode\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .dark-mode\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .dark-mode\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .dark-mode\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .dark-mode\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .dark-mode\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .dark-mode\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .dark-mode\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .dark-mode\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .dark-mode\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .dark-mode\:u-order-1{
    order: 1 !important;
  }

  .dark-mode\:u-order-2{
    order: 2 !important;
  }

  .dark-mode\:u-order-3{
    order: 3 !important;
  }

  .dark-mode\:u-order-4{
    order: 4 !important;
  }

  .dark-mode\:u-order-5{
    order: 5 !important;
  }

  .dark-mode\:u-order-6{
    order: 6 !important;
  }

  .dark-mode\:u-order-7{
    order: 7 !important;
  }

  .dark-mode\:u-order-8{
    order: 8 !important;
  }

  .dark-mode\:u-order-9{
    order: 9 !important;
  }

  .dark-mode\:u-order-10{
    order: 10 !important;
  }

  .dark-mode\:u-order-11{
    order: 11 !important;
  }

  .dark-mode\:u-order-12{
    order: 12 !important;
  }

  .dark-mode\:u-order-first{
    order: -9999 !important;
  }

  .dark-mode\:u-order-last{
    order: 9999 !important;
  }

  .dark-mode\:u-order-none{
    order: 0 !important;
  }

  .dark-mode\:u-col-auto{
    grid-column: auto !important;
  }

  .dark-mode\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .dark-mode\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .dark-mode\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .dark-mode\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .dark-mode\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .dark-mode\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .dark-mode\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .dark-mode\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .dark-mode\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .dark-mode\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .dark-mode\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .dark-mode\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .dark-mode\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .dark-mode\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .dark-mode\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .dark-mode\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .dark-mode\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .dark-mode\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .dark-mode\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .dark-mode\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .dark-mode\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .dark-mode\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .dark-mode\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .dark-mode\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .dark-mode\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .dark-mode\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .dark-mode\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .dark-mode\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .dark-mode\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .dark-mode\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .dark-mode\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .dark-mode\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .dark-mode\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .dark-mode\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .dark-mode\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .dark-mode\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .dark-mode\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .dark-mode\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .dark-mode\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .dark-mode\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .dark-mode\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .dark-mode\:u-row-auto{
    grid-row: auto !important;
  }

  .dark-mode\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .dark-mode\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .dark-mode\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .dark-mode\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .dark-mode\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .dark-mode\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .dark-mode\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .dark-mode\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .dark-mode\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .dark-mode\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .dark-mode\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .dark-mode\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .dark-mode\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .dark-mode\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .dark-mode\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .dark-mode\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .dark-mode\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .dark-mode\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .dark-mode\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .dark-mode\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .dark-mode\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .dark-mode\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .dark-mode\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .dark-mode\:u-float-right{
    float: right !important;
  }

  .dark-mode\:u-float-left{
    float: left !important;
  }

  .dark-mode\:u-float-none{
    float: none !important;
  }

  .dark-mode\:u-clear-left{
    clear: left !important;
  }

  .dark-mode\:u-clear-right{
    clear: right !important;
  }

  .dark-mode\:u-clear-both{
    clear: both !important;
  }

  .dark-mode\:u-clear-none{
    clear: none !important;
  }

  .dark-mode\:u-m-0{
    margin: 0px !important;
  }

  .dark-mode\:u-m-1{
    margin: 0.25rem !important;
  }

  .dark-mode\:u-m-2{
    margin: 0.5rem !important;
  }

  .dark-mode\:u-m-3{
    margin: 0.75rem !important;
  }

  .dark-mode\:u-m-4{
    margin: 1rem !important;
  }

  .dark-mode\:u-m-5{
    margin: 1.25rem !important;
  }

  .dark-mode\:u-m-6{
    margin: 1.5rem !important;
  }

  .dark-mode\:u-m-7{
    margin: 1.75rem !important;
  }

  .dark-mode\:u-m-8{
    margin: 2rem !important;
  }

  .dark-mode\:u-m-9{
    margin: 2.25rem !important;
  }

  .dark-mode\:u-m-10{
    margin: 2.5rem !important;
  }

  .dark-mode\:u-m-11{
    margin: 2.75rem !important;
  }

  .dark-mode\:u-m-12{
    margin: 3rem !important;
  }

  .dark-mode\:u-m-14{
    margin: 3.5rem !important;
  }

  .dark-mode\:u-m-16{
    margin: 4rem !important;
  }

  .dark-mode\:u-m-20{
    margin: 5rem !important;
  }

  .dark-mode\:u-m-24{
    margin: 6rem !important;
  }

  .dark-mode\:u-m-28{
    margin: 7rem !important;
  }

  .dark-mode\:u-m-32{
    margin: 8rem !important;
  }

  .dark-mode\:u-m-36{
    margin: 9rem !important;
  }

  .dark-mode\:u-m-40{
    margin: 10rem !important;
  }

  .dark-mode\:u-m-44{
    margin: 11rem !important;
  }

  .dark-mode\:u-m-48{
    margin: 12rem !important;
  }

  .dark-mode\:u-m-52{
    margin: 13rem !important;
  }

  .dark-mode\:u-m-56{
    margin: 14rem !important;
  }

  .dark-mode\:u-m-60{
    margin: 15rem !important;
  }

  .dark-mode\:u-m-64{
    margin: 16rem !important;
  }

  .dark-mode\:u-m-72{
    margin: 18rem !important;
  }

  .dark-mode\:u-m-80{
    margin: 20rem !important;
  }

  .dark-mode\:u-m-96{
    margin: 24rem !important;
  }

  .dark-mode\:u-m-auto{
    margin: auto !important;
  }

  .dark-mode\:u-m-px{
    margin: 1px !important;
  }

  .dark-mode\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .dark-mode\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .dark-mode\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .dark-mode\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .dark-mode\:u--m-0{
    margin: 0px !important;
  }

  .dark-mode\:u--m-1{
    margin: -0.25rem !important;
  }

  .dark-mode\:u--m-2{
    margin: -0.5rem !important;
  }

  .dark-mode\:u--m-3{
    margin: -0.75rem !important;
  }

  .dark-mode\:u--m-4{
    margin: -1rem !important;
  }

  .dark-mode\:u--m-5{
    margin: -1.25rem !important;
  }

  .dark-mode\:u--m-6{
    margin: -1.5rem !important;
  }

  .dark-mode\:u--m-7{
    margin: -1.75rem !important;
  }

  .dark-mode\:u--m-8{
    margin: -2rem !important;
  }

  .dark-mode\:u--m-9{
    margin: -2.25rem !important;
  }

  .dark-mode\:u--m-10{
    margin: -2.5rem !important;
  }

  .dark-mode\:u--m-11{
    margin: -2.75rem !important;
  }

  .dark-mode\:u--m-12{
    margin: -3rem !important;
  }

  .dark-mode\:u--m-14{
    margin: -3.5rem !important;
  }

  .dark-mode\:u--m-16{
    margin: -4rem !important;
  }

  .dark-mode\:u--m-20{
    margin: -5rem !important;
  }

  .dark-mode\:u--m-24{
    margin: -6rem !important;
  }

  .dark-mode\:u--m-28{
    margin: -7rem !important;
  }

  .dark-mode\:u--m-32{
    margin: -8rem !important;
  }

  .dark-mode\:u--m-36{
    margin: -9rem !important;
  }

  .dark-mode\:u--m-40{
    margin: -10rem !important;
  }

  .dark-mode\:u--m-44{
    margin: -11rem !important;
  }

  .dark-mode\:u--m-48{
    margin: -12rem !important;
  }

  .dark-mode\:u--m-52{
    margin: -13rem !important;
  }

  .dark-mode\:u--m-56{
    margin: -14rem !important;
  }

  .dark-mode\:u--m-60{
    margin: -15rem !important;
  }

  .dark-mode\:u--m-64{
    margin: -16rem !important;
  }

  .dark-mode\:u--m-72{
    margin: -18rem !important;
  }

  .dark-mode\:u--m-80{
    margin: -20rem !important;
  }

  .dark-mode\:u--m-96{
    margin: -24rem !important;
  }

  .dark-mode\:u--m-px{
    margin: -1px !important;
  }

  .dark-mode\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .dark-mode\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .dark-mode\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .dark-mode\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .dark-mode\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .dark-mode\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .dark-mode\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .dark-mode\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .dark-mode\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .dark-mode\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .dark-mode\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .dark-mode\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .dark-mode\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .dark-mode\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .dark-mode\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .dark-mode\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .dark-mode\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .dark-mode\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .dark-mode\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .dark-mode\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .dark-mode\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .dark-mode\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .dark-mode\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .dark-mode\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .dark-mode\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .dark-mode\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .dark-mode\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .dark-mode\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .dark-mode\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .dark-mode\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .dark-mode\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .dark-mode\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .dark-mode\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .dark-mode\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .dark-mode\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dark-mode\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .dark-mode\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .dark-mode\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .dark-mode\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .dark-mode\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .dark-mode\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .dark-mode\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .dark-mode\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .dark-mode\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .dark-mode\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .dark-mode\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .dark-mode\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .dark-mode\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .dark-mode\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .dark-mode\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .dark-mode\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .dark-mode\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .dark-mode\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .dark-mode\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .dark-mode\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .dark-mode\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .dark-mode\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .dark-mode\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .dark-mode\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .dark-mode\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .dark-mode\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .dark-mode\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .dark-mode\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .dark-mode\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .dark-mode\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .dark-mode\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .dark-mode\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .dark-mode\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .dark-mode\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .dark-mode\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .dark-mode\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .dark-mode\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .dark-mode\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .dark-mode\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .dark-mode\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .dark-mode\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .dark-mode\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .dark-mode\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .dark-mode\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .dark-mode\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .dark-mode\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .dark-mode\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .dark-mode\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .dark-mode\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .dark-mode\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .dark-mode\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .dark-mode\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .dark-mode\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .dark-mode\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .dark-mode\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .dark-mode\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .dark-mode\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .dark-mode\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .dark-mode\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .dark-mode\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .dark-mode\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .dark-mode\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .dark-mode\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .dark-mode\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .dark-mode\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .dark-mode\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .dark-mode\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .dark-mode\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .dark-mode\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .dark-mode\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .dark-mode\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .dark-mode\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .dark-mode\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .dark-mode\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .dark-mode\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .dark-mode\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .dark-mode\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .dark-mode\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .dark-mode\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .dark-mode\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .dark-mode\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .dark-mode\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .dark-mode\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .dark-mode\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .dark-mode\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .dark-mode\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .dark-mode\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .dark-mode\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .dark-mode\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .dark-mode\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .dark-mode\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .dark-mode\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .dark-mode\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .dark-mode\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .dark-mode\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .dark-mode\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .dark-mode\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .dark-mode\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .dark-mode\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .dark-mode\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .dark-mode\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .dark-mode\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .dark-mode\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .dark-mode\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .dark-mode\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .dark-mode\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .dark-mode\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .dark-mode\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .dark-mode\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .dark-mode\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .dark-mode\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .dark-mode\:u-mt-0{
    margin-top: 0px !important;
  }

  .dark-mode\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .dark-mode\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .dark-mode\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .dark-mode\:u-mt-4{
    margin-top: 1rem !important;
  }

  .dark-mode\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .dark-mode\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .dark-mode\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .dark-mode\:u-mt-8{
    margin-top: 2rem !important;
  }

  .dark-mode\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .dark-mode\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .dark-mode\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .dark-mode\:u-mt-12{
    margin-top: 3rem !important;
  }

  .dark-mode\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .dark-mode\:u-mt-16{
    margin-top: 4rem !important;
  }

  .dark-mode\:u-mt-20{
    margin-top: 5rem !important;
  }

  .dark-mode\:u-mt-24{
    margin-top: 6rem !important;
  }

  .dark-mode\:u-mt-28{
    margin-top: 7rem !important;
  }

  .dark-mode\:u-mt-32{
    margin-top: 8rem !important;
  }

  .dark-mode\:u-mt-36{
    margin-top: 9rem !important;
  }

  .dark-mode\:u-mt-40{
    margin-top: 10rem !important;
  }

  .dark-mode\:u-mt-44{
    margin-top: 11rem !important;
  }

  .dark-mode\:u-mt-48{
    margin-top: 12rem !important;
  }

  .dark-mode\:u-mt-52{
    margin-top: 13rem !important;
  }

  .dark-mode\:u-mt-56{
    margin-top: 14rem !important;
  }

  .dark-mode\:u-mt-60{
    margin-top: 15rem !important;
  }

  .dark-mode\:u-mt-64{
    margin-top: 16rem !important;
  }

  .dark-mode\:u-mt-72{
    margin-top: 18rem !important;
  }

  .dark-mode\:u-mt-80{
    margin-top: 20rem !important;
  }

  .dark-mode\:u-mt-96{
    margin-top: 24rem !important;
  }

  .dark-mode\:u-mt-auto{
    margin-top: auto !important;
  }

  .dark-mode\:u-mt-px{
    margin-top: 1px !important;
  }

  .dark-mode\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .dark-mode\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .dark-mode\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .dark-mode\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .dark-mode\:u--mt-0{
    margin-top: 0px !important;
  }

  .dark-mode\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .dark-mode\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .dark-mode\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .dark-mode\:u--mt-4{
    margin-top: -1rem !important;
  }

  .dark-mode\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .dark-mode\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .dark-mode\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .dark-mode\:u--mt-8{
    margin-top: -2rem !important;
  }

  .dark-mode\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .dark-mode\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .dark-mode\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .dark-mode\:u--mt-12{
    margin-top: -3rem !important;
  }

  .dark-mode\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .dark-mode\:u--mt-16{
    margin-top: -4rem !important;
  }

  .dark-mode\:u--mt-20{
    margin-top: -5rem !important;
  }

  .dark-mode\:u--mt-24{
    margin-top: -6rem !important;
  }

  .dark-mode\:u--mt-28{
    margin-top: -7rem !important;
  }

  .dark-mode\:u--mt-32{
    margin-top: -8rem !important;
  }

  .dark-mode\:u--mt-36{
    margin-top: -9rem !important;
  }

  .dark-mode\:u--mt-40{
    margin-top: -10rem !important;
  }

  .dark-mode\:u--mt-44{
    margin-top: -11rem !important;
  }

  .dark-mode\:u--mt-48{
    margin-top: -12rem !important;
  }

  .dark-mode\:u--mt-52{
    margin-top: -13rem !important;
  }

  .dark-mode\:u--mt-56{
    margin-top: -14rem !important;
  }

  .dark-mode\:u--mt-60{
    margin-top: -15rem !important;
  }

  .dark-mode\:u--mt-64{
    margin-top: -16rem !important;
  }

  .dark-mode\:u--mt-72{
    margin-top: -18rem !important;
  }

  .dark-mode\:u--mt-80{
    margin-top: -20rem !important;
  }

  .dark-mode\:u--mt-96{
    margin-top: -24rem !important;
  }

  .dark-mode\:u--mt-px{
    margin-top: -1px !important;
  }

  .dark-mode\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .dark-mode\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .dark-mode\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .dark-mode\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .dark-mode\:u-mr-0{
    margin-right: 0px !important;
  }

  .dark-mode\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .dark-mode\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .dark-mode\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .dark-mode\:u-mr-4{
    margin-right: 1rem !important;
  }

  .dark-mode\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .dark-mode\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .dark-mode\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .dark-mode\:u-mr-8{
    margin-right: 2rem !important;
  }

  .dark-mode\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .dark-mode\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .dark-mode\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .dark-mode\:u-mr-12{
    margin-right: 3rem !important;
  }

  .dark-mode\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .dark-mode\:u-mr-16{
    margin-right: 4rem !important;
  }

  .dark-mode\:u-mr-20{
    margin-right: 5rem !important;
  }

  .dark-mode\:u-mr-24{
    margin-right: 6rem !important;
  }

  .dark-mode\:u-mr-28{
    margin-right: 7rem !important;
  }

  .dark-mode\:u-mr-32{
    margin-right: 8rem !important;
  }

  .dark-mode\:u-mr-36{
    margin-right: 9rem !important;
  }

  .dark-mode\:u-mr-40{
    margin-right: 10rem !important;
  }

  .dark-mode\:u-mr-44{
    margin-right: 11rem !important;
  }

  .dark-mode\:u-mr-48{
    margin-right: 12rem !important;
  }

  .dark-mode\:u-mr-52{
    margin-right: 13rem !important;
  }

  .dark-mode\:u-mr-56{
    margin-right: 14rem !important;
  }

  .dark-mode\:u-mr-60{
    margin-right: 15rem !important;
  }

  .dark-mode\:u-mr-64{
    margin-right: 16rem !important;
  }

  .dark-mode\:u-mr-72{
    margin-right: 18rem !important;
  }

  .dark-mode\:u-mr-80{
    margin-right: 20rem !important;
  }

  .dark-mode\:u-mr-96{
    margin-right: 24rem !important;
  }

  .dark-mode\:u-mr-auto{
    margin-right: auto !important;
  }

  .dark-mode\:u-mr-px{
    margin-right: 1px !important;
  }

  .dark-mode\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .dark-mode\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .dark-mode\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .dark-mode\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .dark-mode\:u--mr-0{
    margin-right: 0px !important;
  }

  .dark-mode\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .dark-mode\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .dark-mode\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .dark-mode\:u--mr-4{
    margin-right: -1rem !important;
  }

  .dark-mode\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .dark-mode\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .dark-mode\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .dark-mode\:u--mr-8{
    margin-right: -2rem !important;
  }

  .dark-mode\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .dark-mode\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .dark-mode\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .dark-mode\:u--mr-12{
    margin-right: -3rem !important;
  }

  .dark-mode\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .dark-mode\:u--mr-16{
    margin-right: -4rem !important;
  }

  .dark-mode\:u--mr-20{
    margin-right: -5rem !important;
  }

  .dark-mode\:u--mr-24{
    margin-right: -6rem !important;
  }

  .dark-mode\:u--mr-28{
    margin-right: -7rem !important;
  }

  .dark-mode\:u--mr-32{
    margin-right: -8rem !important;
  }

  .dark-mode\:u--mr-36{
    margin-right: -9rem !important;
  }

  .dark-mode\:u--mr-40{
    margin-right: -10rem !important;
  }

  .dark-mode\:u--mr-44{
    margin-right: -11rem !important;
  }

  .dark-mode\:u--mr-48{
    margin-right: -12rem !important;
  }

  .dark-mode\:u--mr-52{
    margin-right: -13rem !important;
  }

  .dark-mode\:u--mr-56{
    margin-right: -14rem !important;
  }

  .dark-mode\:u--mr-60{
    margin-right: -15rem !important;
  }

  .dark-mode\:u--mr-64{
    margin-right: -16rem !important;
  }

  .dark-mode\:u--mr-72{
    margin-right: -18rem !important;
  }

  .dark-mode\:u--mr-80{
    margin-right: -20rem !important;
  }

  .dark-mode\:u--mr-96{
    margin-right: -24rem !important;
  }

  .dark-mode\:u--mr-px{
    margin-right: -1px !important;
  }

  .dark-mode\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .dark-mode\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .dark-mode\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .dark-mode\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .dark-mode\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .dark-mode\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .dark-mode\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .dark-mode\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .dark-mode\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .dark-mode\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .dark-mode\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .dark-mode\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .dark-mode\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .dark-mode\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .dark-mode\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .dark-mode\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .dark-mode\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .dark-mode\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .dark-mode\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .dark-mode\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .dark-mode\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .dark-mode\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .dark-mode\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .dark-mode\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .dark-mode\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .dark-mode\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .dark-mode\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .dark-mode\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .dark-mode\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .dark-mode\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .dark-mode\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .dark-mode\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .dark-mode\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .dark-mode\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .dark-mode\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .dark-mode\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .dark-mode\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .dark-mode\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .dark-mode\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .dark-mode\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .dark-mode\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .dark-mode\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .dark-mode\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .dark-mode\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .dark-mode\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .dark-mode\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .dark-mode\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .dark-mode\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .dark-mode\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .dark-mode\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .dark-mode\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .dark-mode\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .dark-mode\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .dark-mode\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .dark-mode\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .dark-mode\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .dark-mode\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .dark-mode\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .dark-mode\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .dark-mode\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .dark-mode\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .dark-mode\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .dark-mode\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .dark-mode\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .dark-mode\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .dark-mode\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .dark-mode\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .dark-mode\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .dark-mode\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .dark-mode\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .dark-mode\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .dark-mode\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .dark-mode\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .dark-mode\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .dark-mode\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .dark-mode\:u-ml-0{
    margin-left: 0px !important;
  }

  .dark-mode\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .dark-mode\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .dark-mode\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .dark-mode\:u-ml-4{
    margin-left: 1rem !important;
  }

  .dark-mode\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .dark-mode\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .dark-mode\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .dark-mode\:u-ml-8{
    margin-left: 2rem !important;
  }

  .dark-mode\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .dark-mode\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .dark-mode\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .dark-mode\:u-ml-12{
    margin-left: 3rem !important;
  }

  .dark-mode\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .dark-mode\:u-ml-16{
    margin-left: 4rem !important;
  }

  .dark-mode\:u-ml-20{
    margin-left: 5rem !important;
  }

  .dark-mode\:u-ml-24{
    margin-left: 6rem !important;
  }

  .dark-mode\:u-ml-28{
    margin-left: 7rem !important;
  }

  .dark-mode\:u-ml-32{
    margin-left: 8rem !important;
  }

  .dark-mode\:u-ml-36{
    margin-left: 9rem !important;
  }

  .dark-mode\:u-ml-40{
    margin-left: 10rem !important;
  }

  .dark-mode\:u-ml-44{
    margin-left: 11rem !important;
  }

  .dark-mode\:u-ml-48{
    margin-left: 12rem !important;
  }

  .dark-mode\:u-ml-52{
    margin-left: 13rem !important;
  }

  .dark-mode\:u-ml-56{
    margin-left: 14rem !important;
  }

  .dark-mode\:u-ml-60{
    margin-left: 15rem !important;
  }

  .dark-mode\:u-ml-64{
    margin-left: 16rem !important;
  }

  .dark-mode\:u-ml-72{
    margin-left: 18rem !important;
  }

  .dark-mode\:u-ml-80{
    margin-left: 20rem !important;
  }

  .dark-mode\:u-ml-96{
    margin-left: 24rem !important;
  }

  .dark-mode\:u-ml-auto{
    margin-left: auto !important;
  }

  .dark-mode\:u-ml-px{
    margin-left: 1px !important;
  }

  .dark-mode\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .dark-mode\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .dark-mode\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .dark-mode\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .dark-mode\:u--ml-0{
    margin-left: 0px !important;
  }

  .dark-mode\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .dark-mode\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .dark-mode\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .dark-mode\:u--ml-4{
    margin-left: -1rem !important;
  }

  .dark-mode\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .dark-mode\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .dark-mode\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .dark-mode\:u--ml-8{
    margin-left: -2rem !important;
  }

  .dark-mode\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .dark-mode\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .dark-mode\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .dark-mode\:u--ml-12{
    margin-left: -3rem !important;
  }

  .dark-mode\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .dark-mode\:u--ml-16{
    margin-left: -4rem !important;
  }

  .dark-mode\:u--ml-20{
    margin-left: -5rem !important;
  }

  .dark-mode\:u--ml-24{
    margin-left: -6rem !important;
  }

  .dark-mode\:u--ml-28{
    margin-left: -7rem !important;
  }

  .dark-mode\:u--ml-32{
    margin-left: -8rem !important;
  }

  .dark-mode\:u--ml-36{
    margin-left: -9rem !important;
  }

  .dark-mode\:u--ml-40{
    margin-left: -10rem !important;
  }

  .dark-mode\:u--ml-44{
    margin-left: -11rem !important;
  }

  .dark-mode\:u--ml-48{
    margin-left: -12rem !important;
  }

  .dark-mode\:u--ml-52{
    margin-left: -13rem !important;
  }

  .dark-mode\:u--ml-56{
    margin-left: -14rem !important;
  }

  .dark-mode\:u--ml-60{
    margin-left: -15rem !important;
  }

  .dark-mode\:u--ml-64{
    margin-left: -16rem !important;
  }

  .dark-mode\:u--ml-72{
    margin-left: -18rem !important;
  }

  .dark-mode\:u--ml-80{
    margin-left: -20rem !important;
  }

  .dark-mode\:u--ml-96{
    margin-left: -24rem !important;
  }

  .dark-mode\:u--ml-px{
    margin-left: -1px !important;
  }

  .dark-mode\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .dark-mode\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .dark-mode\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .dark-mode\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .dark-mode\:u-box-border{
    box-sizing: border-box !important;
  }

  .dark-mode\:u-box-content{
    box-sizing: content-box !important;
  }

  .dark-mode\:u-block{
    display: block !important;
  }

  .dark-mode\:u-inline-block{
    display: inline-block !important;
  }

  .dark-mode\:u-inline{
    display: inline !important;
  }

  .dark-mode\:u-flex{
    display: flex !important;
  }

  .dark-mode\:u-inline-flex{
    display: inline-flex !important;
  }

  .dark-mode\:u-table{
    display: table !important;
  }

  .dark-mode\:u-inline-table{
    display: inline-table !important;
  }

  .dark-mode\:u-table-caption{
    display: table-caption !important;
  }

  .dark-mode\:u-table-cell{
    display: table-cell !important;
  }

  .dark-mode\:u-table-column{
    display: table-column !important;
  }

  .dark-mode\:u-table-column-group{
    display: table-column-group !important;
  }

  .dark-mode\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .dark-mode\:u-table-header-group{
    display: table-header-group !important;
  }

  .dark-mode\:u-table-row-group{
    display: table-row-group !important;
  }

  .dark-mode\:u-table-row{
    display: table-row !important;
  }

  .dark-mode\:u-flow-root{
    display: flow-root !important;
  }

  .dark-mode\:u-grid{
    display: grid !important;
  }

  .dark-mode\:u-inline-grid{
    display: inline-grid !important;
  }

  .dark-mode\:u-contents{
    display: contents !important;
  }

  .dark-mode\:u-list-item{
    display: list-item !important;
  }

  .dark-mode\:u-hidden{
    display: none !important;
  }

  .dark-mode\:u-h-0{
    height: 0px !important;
  }

  .dark-mode\:u-h-1{
    height: 0.25rem !important;
  }

  .dark-mode\:u-h-2{
    height: 0.5rem !important;
  }

  .dark-mode\:u-h-3{
    height: 0.75rem !important;
  }

  .dark-mode\:u-h-4{
    height: 1rem !important;
  }

  .dark-mode\:u-h-5{
    height: 1.25rem !important;
  }

  .dark-mode\:u-h-6{
    height: 1.5rem !important;
  }

  .dark-mode\:u-h-7{
    height: 1.75rem !important;
  }

  .dark-mode\:u-h-8{
    height: 2rem !important;
  }

  .dark-mode\:u-h-9{
    height: 2.25rem !important;
  }

  .dark-mode\:u-h-10{
    height: 2.5rem !important;
  }

  .dark-mode\:u-h-11{
    height: 2.75rem !important;
  }

  .dark-mode\:u-h-12{
    height: 3rem !important;
  }

  .dark-mode\:u-h-14{
    height: 3.5rem !important;
  }

  .dark-mode\:u-h-16{
    height: 4rem !important;
  }

  .dark-mode\:u-h-20{
    height: 5rem !important;
  }

  .dark-mode\:u-h-24{
    height: 6rem !important;
  }

  .dark-mode\:u-h-28{
    height: 7rem !important;
  }

  .dark-mode\:u-h-32{
    height: 8rem !important;
  }

  .dark-mode\:u-h-36{
    height: 9rem !important;
  }

  .dark-mode\:u-h-40{
    height: 10rem !important;
  }

  .dark-mode\:u-h-44{
    height: 11rem !important;
  }

  .dark-mode\:u-h-48{
    height: 12rem !important;
  }

  .dark-mode\:u-h-52{
    height: 13rem !important;
  }

  .dark-mode\:u-h-56{
    height: 14rem !important;
  }

  .dark-mode\:u-h-60{
    height: 15rem !important;
  }

  .dark-mode\:u-h-64{
    height: 16rem !important;
  }

  .dark-mode\:u-h-72{
    height: 18rem !important;
  }

  .dark-mode\:u-h-80{
    height: 20rem !important;
  }

  .dark-mode\:u-h-96{
    height: 24rem !important;
  }

  .dark-mode\:u-h-auto{
    height: auto !important;
  }

  .dark-mode\:u-h-px{
    height: 1px !important;
  }

  .dark-mode\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .dark-mode\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .dark-mode\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .dark-mode\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .dark-mode\:u-h-1\/2{
    height: 50% !important;
  }

  .dark-mode\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .dark-mode\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .dark-mode\:u-h-1\/4{
    height: 25% !important;
  }

  .dark-mode\:u-h-2\/4{
    height: 50% !important;
  }

  .dark-mode\:u-h-3\/4{
    height: 75% !important;
  }

  .dark-mode\:u-h-1\/5{
    height: 20% !important;
  }

  .dark-mode\:u-h-2\/5{
    height: 40% !important;
  }

  .dark-mode\:u-h-3\/5{
    height: 60% !important;
  }

  .dark-mode\:u-h-4\/5{
    height: 80% !important;
  }

  .dark-mode\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .dark-mode\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .dark-mode\:u-h-3\/6{
    height: 50% !important;
  }

  .dark-mode\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .dark-mode\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .dark-mode\:u-h-full{
    height: 100% !important;
  }

  .dark-mode\:u-h-screen{
    height: 100vh !important;
  }

  .dark-mode\:u-max-h-0{
    max-height: 0px !important;
  }

  .dark-mode\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .dark-mode\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .dark-mode\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .dark-mode\:u-max-h-4{
    max-height: 1rem !important;
  }

  .dark-mode\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .dark-mode\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .dark-mode\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .dark-mode\:u-max-h-8{
    max-height: 2rem !important;
  }

  .dark-mode\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .dark-mode\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .dark-mode\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .dark-mode\:u-max-h-12{
    max-height: 3rem !important;
  }

  .dark-mode\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .dark-mode\:u-max-h-16{
    max-height: 4rem !important;
  }

  .dark-mode\:u-max-h-20{
    max-height: 5rem !important;
  }

  .dark-mode\:u-max-h-24{
    max-height: 6rem !important;
  }

  .dark-mode\:u-max-h-28{
    max-height: 7rem !important;
  }

  .dark-mode\:u-max-h-32{
    max-height: 8rem !important;
  }

  .dark-mode\:u-max-h-36{
    max-height: 9rem !important;
  }

  .dark-mode\:u-max-h-40{
    max-height: 10rem !important;
  }

  .dark-mode\:u-max-h-44{
    max-height: 11rem !important;
  }

  .dark-mode\:u-max-h-48{
    max-height: 12rem !important;
  }

  .dark-mode\:u-max-h-52{
    max-height: 13rem !important;
  }

  .dark-mode\:u-max-h-56{
    max-height: 14rem !important;
  }

  .dark-mode\:u-max-h-60{
    max-height: 15rem !important;
  }

  .dark-mode\:u-max-h-64{
    max-height: 16rem !important;
  }

  .dark-mode\:u-max-h-72{
    max-height: 18rem !important;
  }

  .dark-mode\:u-max-h-80{
    max-height: 20rem !important;
  }

  .dark-mode\:u-max-h-96{
    max-height: 24rem !important;
  }

  .dark-mode\:u-max-h-px{
    max-height: 1px !important;
  }

  .dark-mode\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .dark-mode\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .dark-mode\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .dark-mode\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .dark-mode\:u-max-h-full{
    max-height: 100% !important;
  }

  .dark-mode\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .dark-mode\:u-min-h-0{
    min-height: 0px !important;
  }

  .dark-mode\:u-min-h-full{
    min-height: 100% !important;
  }

  .dark-mode\:u-min-h-screen{
    min-height: 100vh !important;
  }

  .dark-mode\:u-w-0{
    width: 0px !important;
  }

  .dark-mode\:u-w-1{
    width: 0.25rem !important;
  }

  .dark-mode\:u-w-2{
    width: 0.5rem !important;
  }

  .dark-mode\:u-w-3{
    width: 0.75rem !important;
  }

  .dark-mode\:u-w-4{
    width: 1rem !important;
  }

  .dark-mode\:u-w-5{
    width: 1.25rem !important;
  }

  .dark-mode\:u-w-6{
    width: 1.5rem !important;
  }

  .dark-mode\:u-w-7{
    width: 1.75rem !important;
  }

  .dark-mode\:u-w-8{
    width: 2rem !important;
  }

  .dark-mode\:u-w-9{
    width: 2.25rem !important;
  }

  .dark-mode\:u-w-10{
    width: 2.5rem !important;
  }

  .dark-mode\:u-w-11{
    width: 2.75rem !important;
  }

  .dark-mode\:u-w-12{
    width: 3rem !important;
  }

  .dark-mode\:u-w-14{
    width: 3.5rem !important;
  }

  .dark-mode\:u-w-16{
    width: 4rem !important;
  }

  .dark-mode\:u-w-20{
    width: 5rem !important;
  }

  .dark-mode\:u-w-24{
    width: 6rem !important;
  }

  .dark-mode\:u-w-28{
    width: 7rem !important;
  }

  .dark-mode\:u-w-32{
    width: 8rem !important;
  }

  .dark-mode\:u-w-36{
    width: 9rem !important;
  }

  .dark-mode\:u-w-40{
    width: 10rem !important;
  }

  .dark-mode\:u-w-44{
    width: 11rem !important;
  }

  .dark-mode\:u-w-48{
    width: 12rem !important;
  }

  .dark-mode\:u-w-52{
    width: 13rem !important;
  }

  .dark-mode\:u-w-56{
    width: 14rem !important;
  }

  .dark-mode\:u-w-60{
    width: 15rem !important;
  }

  .dark-mode\:u-w-64{
    width: 16rem !important;
  }

  .dark-mode\:u-w-72{
    width: 18rem !important;
  }

  .dark-mode\:u-w-80{
    width: 20rem !important;
  }

  .dark-mode\:u-w-96{
    width: 24rem !important;
  }

  .dark-mode\:u-w-auto{
    width: auto !important;
  }

  .dark-mode\:u-w-px{
    width: 1px !important;
  }

  .dark-mode\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .dark-mode\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .dark-mode\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .dark-mode\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .dark-mode\:u-w-1\/2{
    width: 50% !important;
  }

  .dark-mode\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .dark-mode\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .dark-mode\:u-w-1\/4{
    width: 25% !important;
  }

  .dark-mode\:u-w-2\/4{
    width: 50% !important;
  }

  .dark-mode\:u-w-3\/4{
    width: 75% !important;
  }

  .dark-mode\:u-w-1\/5{
    width: 20% !important;
  }

  .dark-mode\:u-w-2\/5{
    width: 40% !important;
  }

  .dark-mode\:u-w-3\/5{
    width: 60% !important;
  }

  .dark-mode\:u-w-4\/5{
    width: 80% !important;
  }

  .dark-mode\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .dark-mode\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .dark-mode\:u-w-3\/6{
    width: 50% !important;
  }

  .dark-mode\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .dark-mode\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .dark-mode\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .dark-mode\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .dark-mode\:u-w-3\/12{
    width: 25% !important;
  }

  .dark-mode\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .dark-mode\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .dark-mode\:u-w-6\/12{
    width: 50% !important;
  }

  .dark-mode\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .dark-mode\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .dark-mode\:u-w-9\/12{
    width: 75% !important;
  }

  .dark-mode\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .dark-mode\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .dark-mode\:u-w-full{
    width: 100% !important;
  }

  .dark-mode\:u-w-screen{
    width: 100vw !important;
  }

  .dark-mode\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .dark-mode\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .dark-mode\:u-min-w-sm{
    min-width: 320px !important;
  }

  .dark-mode\:u-max-w-0{
    max-width: 0rem !important;
  }

  .dark-mode\:u-max-w-none{
    max-width: none !important;
  }

  .dark-mode\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .dark-mode\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .dark-mode\:u-max-w-md{
    max-width: 28rem !important;
  }

  .dark-mode\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .dark-mode\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .dark-mode\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .dark-mode\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .dark-mode\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .dark-mode\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .dark-mode\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .dark-mode\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .dark-mode\:u-max-w-full{
    max-width: 100% !important;
  }

  .dark-mode\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .dark-mode\:u-max-w-max{
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .dark-mode\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .dark-mode\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .dark-mode\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .dark-mode\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .dark-mode\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .dark-mode\:u-max-w-screen-desktop{
    max-width: 1280px !important;
  }

  .dark-mode\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .dark-mode\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .dark-mode\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .dark-mode\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .dark-mode\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .dark-mode\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .dark-mode\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .dark-mode\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .dark-mode\:u-flex-none{
    flex: none !important;
  }

  .dark-mode\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .dark-mode\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .dark-mode\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .dark-mode\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .dark-mode\:u-table-auto{
    table-layout: auto !important;
  }

  .dark-mode\:u-table-fixed{
    table-layout: fixed !important;
  }

  .dark-mode\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .dark-mode\:u-border-separate{
    border-collapse: separate !important;
  }

  .dark-mode\:u-origin-center{
    transform-origin: center !important;
  }

  .dark-mode\:u-origin-top{
    transform-origin: top !important;
  }

  .dark-mode\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .dark-mode\:u-origin-right{
    transform-origin: right !important;
  }

  .dark-mode\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .dark-mode\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .dark-mode\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .dark-mode\:u-origin-left{
    transform-origin: left !important;
  }

  .dark-mode\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .dark-mode\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .dark-mode\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .dark-mode\:u-transform-none{
    transform: none !important;
  }

  .dark-mode\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .dark-mode\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .dark-mode\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .dark-mode\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .dark-mode\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .dark-mode\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .dark-mode\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .dark-mode\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .dark-mode\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .dark-mode\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .dark-mode\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .dark-mode\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .dark-mode\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .dark-mode\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .dark-mode\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .dark-mode\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .dark-mode\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .dark-mode\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .dark-mode\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .dark-mode\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .dark-mode\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .dark-mode\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .dark-mode\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .dark-mode\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .dark-mode\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .dark-mode\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .dark-mode\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .dark-mode\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .dark-mode\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .dark-mode\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .dark-mode\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .dark-mode\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .dark-mode\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .dark-mode\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .dark-mode\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .dark-mode\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .dark-mode\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .dark-mode\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .dark-mode\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .dark-mode\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .dark-mode\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .dark-mode\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .dark-mode\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .dark-mode\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .dark-mode\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .dark-mode\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .dark-mode\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .dark-mode\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .dark-mode\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .dark-mode\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .dark-mode\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .dark-mode\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .dark-mode\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .dark-mode\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .dark-mode\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .dark-mode\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .dark-mode\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .dark-mode\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .dark-mode\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .dark-mode\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .dark-mode\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .dark-mode\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .dark-mode\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .dark-mode\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .dark-mode\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .dark-mode\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .dark-mode\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .dark-mode\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .dark-mode\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .dark-mode\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .dark-mode\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .dark-mode\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .dark-mode\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .dark-mode\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .dark-mode\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .dark-mode\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .dark-mode\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .dark-mode\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .dark-mode\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .dark-mode\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .dark-mode\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .dark-mode\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .dark-mode\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .dark-mode\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .dark-mode\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .dark-mode\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .dark-mode\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .dark-mode\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .dark-mode\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .dark-mode\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .dark-mode\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .dark-mode\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .dark-mode\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .dark-mode\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .dark-mode\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .dark-mode\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .dark-mode\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .dark-mode\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .dark-mode\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .dark-mode\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .dark-mode\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .dark-mode\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .dark-mode\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .dark-mode\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .dark-mode\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .dark-mode\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .dark-mode\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .dark-mode\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .dark-mode\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .dark-mode\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .dark-mode\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .dark-mode\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .dark-mode\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .dark-mode\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .dark-mode\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .dark-mode\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .dark-mode\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .dark-mode\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .dark-mode\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .dark-mode\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .dark-mode\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .dark-mode\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .dark-mode\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .dark-mode\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .dark-mode\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .dark-mode\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .dark-mode\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .dark-mode\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .dark-mode\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .dark-mode\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .dark-mode\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .dark-mode\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .dark-mode\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .dark-mode\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .dark-mode\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .dark-mode\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .dark-mode\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .dark-mode\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .dark-mode\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .dark-mode\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .dark-mode\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .dark-mode\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .dark-mode\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .dark-mode\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .dark-mode\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .dark-mode\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .dark-mode\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .dark-mode\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .dark-mode\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .dark-mode\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .dark-mode\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .dark-mode\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .dark-mode\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .dark-mode\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .dark-mode\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .dark-mode\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .dark-mode\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .dark-mode\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .dark-mode\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .dark-mode\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .dark-mode\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .dark-mode\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .dark-mode\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .dark-mode\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .dark-mode\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .dark-mode\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .dark-mode\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .dark-mode\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .dark-mode\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .dark-mode\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .dark-mode\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .dark-mode\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .dark-mode\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .dark-mode\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .dark-mode\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .dark-mode\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .dark-mode\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .dark-mode\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .dark-mode\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .dark-mode\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .dark-mode\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .dark-mode\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .dark-mode\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .dark-mode\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .dark-mode\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .dark-mode\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .dark-mode\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .dark-mode\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .dark-mode\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .dark-mode\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .dark-mode\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .dark-mode\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .dark-mode\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .dark-mode\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .dark-mode\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .dark-mode\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .dark-mode\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .dark-mode\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .dark-mode\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .dark-mode\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .dark-mode\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .dark-mode\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .dark-mode\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .dark-mode\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .dark-mode\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .dark-mode\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .dark-mode\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .dark-mode\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .dark-mode\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .dark-mode\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .dark-mode\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .dark-mode\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .dark-mode\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .dark-mode\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .dark-mode\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .dark-mode\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .dark-mode\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .dark-mode\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .dark-mode\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .dark-mode\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .dark-mode\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .dark-mode\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .dark-mode\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .dark-mode\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .dark-mode\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .dark-mode\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .dark-mode\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .dark-mode\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .dark-mode\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .dark-mode\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .dark-mode\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .dark-mode\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .dark-mode\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .dark-mode\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .dark-mode\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .dark-mode\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .dark-mode\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .dark-mode\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .dark-mode\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .dark-mode\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .dark-mode\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .dark-mode\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .dark-mode\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .dark-mode\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .dark-mode\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .dark-mode\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .dark-mode\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .dark-mode\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .dark-mode\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .dark-mode\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .dark-mode\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .dark-mode\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .dark-mode\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .dark-mode\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .dark-mode\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .dark-mode\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .dark-mode\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .dark-mode\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .dark-mode\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .dark-mode\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .dark-mode\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .dark-mode\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .dark-mode\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .dark-mode\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .dark-mode\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .dark-mode\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .dark-mode\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .dark-mode\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .dark-mode\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .dark-mode\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .dark-mode\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .dark-mode\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .dark-mode\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .dark-mode\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .dark-mode\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .dark-mode\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .dark-mode\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .dark-mode\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .dark-mode\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .dark-mode\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .dark-mode\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .dark-mode\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .dark-mode\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .dark-mode\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .dark-mode\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .dark-mode\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .dark-mode\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .dark-mode\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .dark-mode\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .dark-mode\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .dark-mode\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .dark-mode\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .dark-mode\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .dark-mode\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .dark-mode\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .dark-mode\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .dark-mode\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .dark-mode\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .dark-mode\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .dark-mode\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .dark-mode\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .dark-mode\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .dark-mode\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .dark-mode\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .dark-mode\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .dark-mode\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .dark-mode\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .dark-mode\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .dark-mode\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .dark-mode\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .dark-mode\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .dark-mode\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .dark-mode\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .dark-mode\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .dark-mode\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .dark-mode\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .dark-mode\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .dark-mode\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .dark-mode\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .dark-mode\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .dark-mode\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .dark-mode\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .dark-mode\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .dark-mode\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .dark-mode\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .dark-mode\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .dark-mode\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .dark-mode\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .dark-mode\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .dark-mode\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .dark-mode\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .dark-mode\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .dark-mode\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .dark-mode\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .dark-mode\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .dark-mode\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .dark-mode\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .dark-mode\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .dark-mode\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .dark-mode\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .dark-mode\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .dark-mode\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .dark-mode\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .dark-mode\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .dark-mode\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .dark-mode\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .dark-mode\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .dark-mode\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .dark-mode\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .dark-mode\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .dark-mode\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .dark-mode\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .dark-mode\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .dark-mode\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .dark-mode\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .dark-mode\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .dark-mode\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .dark-mode\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .dark-mode\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .dark-mode\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .dark-mode\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .dark-mode\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .dark-mode\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .dark-mode\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .dark-mode\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .dark-mode\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .dark-mode\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .dark-mode\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .dark-mode\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .dark-mode\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .dark-mode\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .dark-mode\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .dark-mode\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .dark-mode\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .dark-mode\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .dark-mode\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .dark-mode\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .dark-mode\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .dark-mode\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .dark-mode\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .dark-mode\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .dark-mode\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .dark-mode\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .dark-mode\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .dark-mode\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .dark-mode\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .dark-mode\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .dark-mode\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .dark-mode\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .dark-mode\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .dark-mode\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .dark-mode\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .dark-mode\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .dark-mode\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .dark-mode\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .dark-mode\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .dark-mode\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .dark-mode\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .dark-mode\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .dark-mode\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .dark-mode\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .dark-mode\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .dark-mode\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .dark-mode\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .dark-mode\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .dark-mode\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .dark-mode\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .dark-mode\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .dark-mode\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .dark-mode\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .dark-mode\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .dark-mode\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .dark-mode\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .dark-mode\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .dark-mode\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .dark-mode\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .dark-mode\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .dark-mode\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .dark-mode\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .dark-mode\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .dark-mode\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .dark-mode\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .dark-mode\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .dark-mode\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .dark-mode\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .dark-mode\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .dark-mode\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .dark-mode\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .dark-mode\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .dark-mode\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .dark-mode\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .dark-mode\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .dark-mode\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .dark-mode\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .dark-mode\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .dark-mode\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .dark-mode\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .dark-mode\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .dark-mode\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .dark-mode\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .dark-mode\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .dark-mode\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .dark-mode\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .dark-mode\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .dark-mode\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .dark-mode\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .dark-mode\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .dark-mode\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .dark-mode\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .dark-mode\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .dark-mode\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .dark-mode\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .dark-mode\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .dark-mode\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .dark-mode\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .dark-mode\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .dark-mode\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .dark-mode\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .dark-mode\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .dark-mode\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .dark-mode\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .dark-mode\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .dark-mode\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .dark-mode\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .dark-mode\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .dark-mode\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .dark-mode\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .dark-mode\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .dark-mode\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .dark-mode\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .dark-mode\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .dark-mode\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .dark-mode\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .dark-mode\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .dark-mode\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .dark-mode\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .dark-mode\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .dark-mode\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .dark-mode\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .dark-mode\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .dark-mode\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .dark-mode\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .dark-mode\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .dark-mode\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .dark-mode\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .dark-mode\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .dark-mode\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .dark-mode\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .dark-mode\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .dark-mode\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .dark-mode\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .dark-mode\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .dark-mode\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .dark-mode\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .dark-mode\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .dark-mode\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .dark-mode\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .dark-mode\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .dark-mode\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .dark-mode\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .dark-mode\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .dark-mode\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .dark-mode\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .dark-mode\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .dark-mode\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .dark-mode\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .dark-mode\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .dark-mode\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .dark-mode\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .dark-mode\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .dark-mode\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .dark-mode\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .dark-mode\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .dark-mode\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .dark-mode\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .dark-mode\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .dark-mode\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .dark-mode\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .dark-mode\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .dark-mode\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .dark-mode\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .dark-mode\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .dark-mode\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .dark-mode\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .dark-mode\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .dark-mode\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .dark-mode\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .dark-mode\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .dark-mode\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .dark-mode\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .dark-mode\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .dark-mode\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .dark-mode\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .dark-mode\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .dark-mode\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .dark-mode\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .dark-mode\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .dark-mode\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .dark-mode\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .dark-mode\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .dark-mode\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .dark-mode\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .dark-mode\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .dark-mode\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .dark-mode\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .dark-mode\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .dark-mode\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .dark-mode\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .dark-mode\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .dark-mode\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .dark-mode\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .dark-mode\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .dark-mode\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .dark-mode\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .dark-mode\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .dark-mode\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .dark-mode\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .dark-mode\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .dark-mode\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .dark-mode\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .dark-mode\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .dark-mode\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .dark-mode\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .dark-mode\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .dark-mode\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .dark-mode\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .dark-mode\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .dark-mode\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .dark-mode\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .dark-mode\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .dark-mode\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .dark-mode\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .dark-mode\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .dark-mode\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .dark-mode\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .dark-mode\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .dark-mode\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .dark-mode\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .dark-mode\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .dark-mode\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .dark-mode\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .dark-mode\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .dark-mode\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .dark-mode\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .dark-mode\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .dark-mode\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .dark-mode\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .dark-mode\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .dark-mode\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .dark-mode\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .dark-mode\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .dark-mode\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .dark-mode\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .dark-mode\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .dark-mode\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .dark-mode\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .dark-mode\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .dark-mode\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .dark-mode\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .dark-mode\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .dark-mode\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .dark-mode\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .dark-mode\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .dark-mode\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .dark-mode\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .dark-mode\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .dark-mode\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .dark-mode\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .dark-mode\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .dark-mode\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .dark-mode\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .dark-mode\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .dark-mode\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .dark-mode\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .dark-mode\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .dark-mode\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .dark-mode\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .dark-mode\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .dark-mode\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .dark-mode\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .dark-mode\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .dark-mode\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .dark-mode\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .dark-mode\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .dark-mode\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .dark-mode\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .dark-mode\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .dark-mode\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .dark-mode\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .dark-mode\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .dark-mode\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .dark-mode\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .dark-mode\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .dark-mode\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .dark-mode\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .dark-mode\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .dark-mode\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .dark-mode\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .dark-mode\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .dark-mode\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .dark-mode\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .dark-mode\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .dark-mode\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .dark-mode\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .dark-mode\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .dark-mode\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .dark-mode\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .dark-mode\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .dark-mode\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .dark-mode\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .dark-mode\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .dark-mode\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .dark-mode\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .dark-mode\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .dark-mode\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .dark-mode\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .dark-mode\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .dark-mode\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .dark-mode\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .dark-mode\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .dark-mode\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .dark-mode\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .dark-mode\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .dark-mode\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .dark-mode\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .dark-mode\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .dark-mode\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .dark-mode\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .dark-mode\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .dark-mode\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .dark-mode\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .dark-mode\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .dark-mode\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .dark-mode\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .dark-mode\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .dark-mode\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .dark-mode\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .dark-mode\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .dark-mode\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .dark-mode\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .dark-mode\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .dark-mode\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .dark-mode\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .dark-mode\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .dark-mode\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .dark-mode\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .dark-mode\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .dark-mode\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .dark-mode\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .dark-mode\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .dark-mode\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .dark-mode\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .dark-mode\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .dark-mode\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .dark-mode\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .dark-mode\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .dark-mode\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .dark-mode\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .dark-mode\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .dark-mode\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .dark-mode\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .dark-mode\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .dark-mode\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .dark-mode\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .dark-mode\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .dark-mode\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .dark-mode\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .dark-mode\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .dark-mode\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .dark-mode\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .dark-mode\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .dark-mode\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .dark-mode\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .dark-mode\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .dark-mode\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .dark-mode\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .dark-mode\:u-cursor-auto{
    cursor: auto !important;
  }

  .dark-mode\:u-cursor-default{
    cursor: default !important;
  }

  .dark-mode\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .dark-mode\:u-cursor-wait{
    cursor: wait !important;
  }

  .dark-mode\:u-cursor-text{
    cursor: text !important;
  }

  .dark-mode\:u-cursor-move{
    cursor: move !important;
  }

  .dark-mode\:u-cursor-help{
    cursor: help !important;
  }

  .dark-mode\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .dark-mode\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .dark-mode\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .dark-mode\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .dark-mode\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .dark-mode\:u-resize-none{
    resize: none !important;
  }

  .dark-mode\:u-resize-y{
    resize: vertical !important;
  }

  .dark-mode\:u-resize-x{
    resize: horizontal !important;
  }

  .dark-mode\:u-resize{
    resize: both !important;
  }

  .dark-mode\:u-list-inside{
    list-style-position: inside !important;
  }

  .dark-mode\:u-list-outside{
    list-style-position: outside !important;
  }

  .dark-mode\:u-list-none{
    list-style-type: none !important;
  }

  .dark-mode\:u-list-disc{
    list-style-type: disc !important;
  }

  .dark-mode\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .dark-mode\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .dark-mode\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .dark-mode\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .dark-mode\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .dark-mode\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .dark-mode\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .dark-mode\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .dark-mode\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .dark-mode\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .dark-mode\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .dark-mode\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .dark-mode\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .dark-mode\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .dark-mode\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .dark-mode\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .dark-mode\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .dark-mode\:u-flex-row{
    flex-direction: row !important;
  }

  .dark-mode\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .dark-mode\:u-flex-col{
    flex-direction: column !important;
  }

  .dark-mode\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .dark-mode\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .dark-mode\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .dark-mode\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .dark-mode\:u-place-content-center{
    place-content: center !important;
  }

  .dark-mode\:u-place-content-start{
    place-content: start !important;
  }

  .dark-mode\:u-place-content-end{
    place-content: end !important;
  }

  .dark-mode\:u-place-content-between{
    place-content: space-between !important;
  }

  .dark-mode\:u-place-content-around{
    place-content: space-around !important;
  }

  .dark-mode\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .dark-mode\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .dark-mode\:u-place-items-start{
    place-items: start !important;
  }

  .dark-mode\:u-place-items-end{
    place-items: end !important;
  }

  .dark-mode\:u-place-items-center{
    place-items: center !important;
  }

  .dark-mode\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .dark-mode\:u-content-center{
    align-content: center !important;
  }

  .dark-mode\:u-content-start{
    align-content: flex-start !important;
  }

  .dark-mode\:u-content-end{
    align-content: flex-end !important;
  }

  .dark-mode\:u-content-between{
    align-content: space-between !important;
  }

  .dark-mode\:u-content-around{
    align-content: space-around !important;
  }

  .dark-mode\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .dark-mode\:u-items-start{
    align-items: flex-start !important;
  }

  .dark-mode\:u-items-end{
    align-items: flex-end !important;
  }

  .dark-mode\:u-items-center{
    align-items: center !important;
  }

  .dark-mode\:u-items-baseline{
    align-items: baseline !important;
  }

  .dark-mode\:u-items-stretch{
    align-items: stretch !important;
  }

  .dark-mode\:u-justify-start{
    justify-content: flex-start !important;
  }

  .dark-mode\:u-justify-end{
    justify-content: flex-end !important;
  }

  .dark-mode\:u-justify-center{
    justify-content: center !important;
  }

  .dark-mode\:u-justify-between{
    justify-content: space-between !important;
  }

  .dark-mode\:u-justify-around{
    justify-content: space-around !important;
  }

  .dark-mode\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .dark-mode\:u-justify-items-start{
    justify-items: start !important;
  }

  .dark-mode\:u-justify-items-end{
    justify-items: end !important;
  }

  .dark-mode\:u-justify-items-center{
    justify-items: center !important;
  }

  .dark-mode\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .dark-mode\:u-gap-0{
    gap: 0px !important;
  }

  .dark-mode\:u-gap-1{
    gap: 0.25rem !important;
  }

  .dark-mode\:u-gap-2{
    gap: 0.5rem !important;
  }

  .dark-mode\:u-gap-3{
    gap: 0.75rem !important;
  }

  .dark-mode\:u-gap-4{
    gap: 1rem !important;
  }

  .dark-mode\:u-gap-5{
    gap: 1.25rem !important;
  }

  .dark-mode\:u-gap-6{
    gap: 1.5rem !important;
  }

  .dark-mode\:u-gap-7{
    gap: 1.75rem !important;
  }

  .dark-mode\:u-gap-8{
    gap: 2rem !important;
  }

  .dark-mode\:u-gap-9{
    gap: 2.25rem !important;
  }

  .dark-mode\:u-gap-10{
    gap: 2.5rem !important;
  }

  .dark-mode\:u-gap-11{
    gap: 2.75rem !important;
  }

  .dark-mode\:u-gap-12{
    gap: 3rem !important;
  }

  .dark-mode\:u-gap-14{
    gap: 3.5rem !important;
  }

  .dark-mode\:u-gap-16{
    gap: 4rem !important;
  }

  .dark-mode\:u-gap-20{
    gap: 5rem !important;
  }

  .dark-mode\:u-gap-24{
    gap: 6rem !important;
  }

  .dark-mode\:u-gap-28{
    gap: 7rem !important;
  }

  .dark-mode\:u-gap-32{
    gap: 8rem !important;
  }

  .dark-mode\:u-gap-36{
    gap: 9rem !important;
  }

  .dark-mode\:u-gap-40{
    gap: 10rem !important;
  }

  .dark-mode\:u-gap-44{
    gap: 11rem !important;
  }

  .dark-mode\:u-gap-48{
    gap: 12rem !important;
  }

  .dark-mode\:u-gap-52{
    gap: 13rem !important;
  }

  .dark-mode\:u-gap-56{
    gap: 14rem !important;
  }

  .dark-mode\:u-gap-60{
    gap: 15rem !important;
  }

  .dark-mode\:u-gap-64{
    gap: 16rem !important;
  }

  .dark-mode\:u-gap-72{
    gap: 18rem !important;
  }

  .dark-mode\:u-gap-80{
    gap: 20rem !important;
  }

  .dark-mode\:u-gap-96{
    gap: 24rem !important;
  }

  .dark-mode\:u-gap-px{
    gap: 1px !important;
  }

  .dark-mode\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .dark-mode\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .dark-mode\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .dark-mode\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .dark-mode\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .dark-mode\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .dark-mode\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .dark-mode\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .dark-mode\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .dark-mode\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .dark-mode\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .dark-mode\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .dark-mode\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .dark-mode\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .dark-mode\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .dark-mode\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .dark-mode\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .dark-mode\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .dark-mode\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .dark-mode\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .dark-mode\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .dark-mode\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .dark-mode\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .dark-mode\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .dark-mode\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .dark-mode\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .dark-mode\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .dark-mode\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .dark-mode\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .dark-mode\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .dark-mode\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .dark-mode\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .dark-mode\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .dark-mode\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .dark-mode\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .dark-mode\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .dark-mode\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .dark-mode\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .dark-mode\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .dark-mode\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .dark-mode\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .dark-mode\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .dark-mode\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .dark-mode\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .dark-mode\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .dark-mode\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .dark-mode\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .dark-mode\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .dark-mode\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .dark-mode\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .dark-mode\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .dark-mode\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .dark-mode\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .dark-mode\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .dark-mode\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .dark-mode\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .dark-mode\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .dark-mode\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .dark-mode\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .dark-mode\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .dark-mode\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .dark-mode\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .dark-mode\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .dark-mode\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .dark-mode\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .dark-mode\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .dark-mode\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .dark-mode\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .dark-mode\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .dark-mode\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .dark-mode\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .dark-mode\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .dark-mode\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .dark-mode\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .dark-mode\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark-mode\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .dark-mode\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .dark-mode\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .dark-mode\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark-mode\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark-mode\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark-mode\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark-mode\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark-mode\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .dark-mode\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .dark-mode\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .dark-mode\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .dark-mode\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .dark-mode\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .dark-mode\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .dark-mode\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .dark-mode\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .dark-mode\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .dark-mode\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .dark-mode\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .dark-mode\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .dark-mode\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .dark-mode\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .dark-mode\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .dark-mode\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .dark-mode\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .dark-mode\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .dark-mode\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .dark-mode\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .dark-mode\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .dark-mode\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .dark-mode\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .dark-mode\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .dark-mode\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .dark-mode\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .dark-mode\:u-place-self-auto{
    place-self: auto !important;
  }

  .dark-mode\:u-place-self-start{
    place-self: start !important;
  }

  .dark-mode\:u-place-self-end{
    place-self: end !important;
  }

  .dark-mode\:u-place-self-center{
    place-self: center !important;
  }

  .dark-mode\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .dark-mode\:u-self-auto{
    align-self: auto !important;
  }

  .dark-mode\:u-self-start{
    align-self: flex-start !important;
  }

  .dark-mode\:u-self-end{
    align-self: flex-end !important;
  }

  .dark-mode\:u-self-center{
    align-self: center !important;
  }

  .dark-mode\:u-self-stretch{
    align-self: stretch !important;
  }

  .dark-mode\:u-self-baseline{
    align-self: baseline !important;
  }

  .dark-mode\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .dark-mode\:u-justify-self-start{
    justify-self: start !important;
  }

  .dark-mode\:u-justify-self-end{
    justify-self: end !important;
  }

  .dark-mode\:u-justify-self-center{
    justify-self: center !important;
  }

  .dark-mode\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .dark-mode\:u-overflow-auto{
    overflow: auto !important;
  }

  .dark-mode\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .dark-mode\:u-overflow-visible{
    overflow: visible !important;
  }

  .dark-mode\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .dark-mode\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .dark-mode\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .dark-mode\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .dark-mode\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .dark-mode\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .dark-mode\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .dark-mode\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .dark-mode\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .dark-mode\:u-overscroll-auto{
    overscroll-behavior: auto !important;
  }

  .dark-mode\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .dark-mode\:u-overscroll-none{
    overscroll-behavior: none !important;
  }

  .dark-mode\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .dark-mode\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .dark-mode\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .dark-mode\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .dark-mode\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .dark-mode\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .dark-mode\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .dark-mode\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .dark-mode\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .dark-mode\:u-whitespace-normal{
    white-space: normal !important;
  }

  .dark-mode\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .dark-mode\:u-whitespace-pre{
    white-space: pre !important;
  }

  .dark-mode\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .dark-mode\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .dark-mode\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .dark-mode\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .dark-mode\:u-break-all{
    word-break: break-all !important;
  }

  .dark-mode\:u-rounded-none{
    border-radius: 0px !important;
  }

  .dark-mode\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .dark-mode\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .dark-mode\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .dark-mode\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .dark-mode\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-tl-none{
    border-top-left-radius: 0px !important;
  }

  .dark-mode\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .dark-mode\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .dark-mode\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .dark-mode\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .dark-mode\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .dark-mode\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .dark-mode\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .dark-mode\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .dark-mode\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .dark-mode\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .dark-mode\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .dark-mode\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .dark-mode\:u-border-0{
    border-width: 0px !important;
  }

  .dark-mode\:u-border-2{
    border-width: 2px !important;
  }

  .dark-mode\:u-border-4{
    border-width: 4px !important;
  }

  .dark-mode\:u-border-8{
    border-width: 8px !important;
  }

  .dark-mode\:u-border{
    border-width: 1px !important;
  }

  .dark-mode\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .dark-mode\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .dark-mode\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .dark-mode\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .dark-mode\:u-border-t{
    border-top-width: 1px !important;
  }

  .dark-mode\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .dark-mode\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .dark-mode\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .dark-mode\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .dark-mode\:u-border-r{
    border-right-width: 1px !important;
  }

  .dark-mode\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .dark-mode\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .dark-mode\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .dark-mode\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .dark-mode\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .dark-mode\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .dark-mode\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .dark-mode\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .dark-mode\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .dark-mode\:u-border-l{
    border-left-width: 1px !important;
  }

  .dark-mode\:u-border-solid{
    border-style: solid !important;
  }

  .dark-mode\:u-border-dashed{
    border-style: dashed !important;
  }

  .dark-mode\:u-border-dotted{
    border-style: dotted !important;
  }

  .dark-mode\:u-border-double{
    border-style: double !important;
  }

  .dark-mode\:u-border-none{
    border-style: none !important;
  }

  .dark-mode\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\: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 .dark-mode\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .dark-mode\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .dark-mode\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .dark-mode\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .dark-mode\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .dark-mode\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .dark-mode\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .dark-mode\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .dark-mode\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .dark-mode\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .dark-mode\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .dark-mode\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .dark-mode\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .dark-mode\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .dark-mode\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .dark-mode\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .dark-mode\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .dark-mode\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .dark-mode\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .dark-mode\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .dark-mode\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .dark-mode\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .dark-mode\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .dark-mode\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .dark-mode\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .dark-mode\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .dark-mode\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .dark-mode\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .dark-mode\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .dark-mode\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .dark-mode\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .dark-mode\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .dark-mode\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .dark-mode\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\: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 .dark-mode\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .dark-mode\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark-mode\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark-mode\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark-mode\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark-mode\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark-mode\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark-mode\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark-mode\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark-mode\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark-mode\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark-mode\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark-mode\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark-mode\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark-mode\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark-mode\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark-mode\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .dark-mode\:u-bg-none{
    background-image: none !important;
  }

  .dark-mode\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .dark-mode\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-mode\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark-mode\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .dark-mode\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark-mode\: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;
  }

  .dark-mode\:u-from-neutral-10{
    --tw-gradient-from: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .dark-mode\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .dark-mode\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .dark-mode\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .dark-mode\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .dark-mode\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark-mode\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .dark-mode\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .dark-mode\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-mode\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .dark-mode\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark-mode\: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;
  }

  .dark-mode\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .dark-mode\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-mode\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .dark-mode\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark-mode\: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;
  }

  .dark-mode\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .dark-mode\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-mode\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark-mode\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .dark-mode\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark-mode\:u-via-neutral-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .dark-mode\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .dark-mode\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .dark-mode\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .dark-mode\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .dark-mode\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark-mode\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .dark-mode\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .dark-mode\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-mode\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .dark-mode\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .dark-mode\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-mode\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .dark-mode\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .dark-mode\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .dark-mode\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .dark-mode\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .dark-mode\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .dark-mode\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .dark-mode\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .dark-mode\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .dark-mode\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .dark-mode\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .dark-mode\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .dark-mode\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .dark-mode\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .dark-mode\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .dark-mode\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .dark-mode\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .dark-mode\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .dark-mode\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .dark-mode\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .dark-mode\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .dark-mode\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .dark-mode\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .dark-mode\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .dark-mode\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .dark-mode\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .dark-mode\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .dark-mode\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .dark-mode\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .dark-mode\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .dark-mode\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .dark-mode\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .dark-mode\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .dark-mode\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .dark-mode\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .dark-mode\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .dark-mode\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .dark-mode\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .dark-mode\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .dark-mode\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .dark-mode\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .dark-mode\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .dark-mode\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .dark-mode\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .dark-mode\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !important;
  }

  .dark-mode\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .dark-mode\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !important;
  }

  .dark-mode\:u-bg-auto{
    background-size: auto !important;
  }

  .dark-mode\:u-bg-cover{
    background-size: cover !important;
  }

  .dark-mode\:u-bg-contain{
    background-size: contain !important;
  }

  .dark-mode\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .dark-mode\:u-bg-local{
    background-attachment: local !important;
  }

  .dark-mode\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .dark-mode\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .dark-mode\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .dark-mode\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .dark-mode\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .dark-mode\:u-bg-bottom{
    background-position: bottom !important;
  }

  .dark-mode\:u-bg-center{
    background-position: center !important;
  }

  .dark-mode\:u-bg-left{
    background-position: left !important;
  }

  .dark-mode\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .dark-mode\:u-bg-left-top{
    background-position: left top !important;
  }

  .dark-mode\:u-bg-right{
    background-position: right !important;
  }

  .dark-mode\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .dark-mode\:u-bg-right-top{
    background-position: right top !important;
  }

  .dark-mode\:u-bg-top{
    background-position: top !important;
  }

  .dark-mode\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .dark-mode\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .dark-mode\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .dark-mode\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .dark-mode\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .dark-mode\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .dark-mode\:u-bg-origin-border{
    background-origin: border-box !important;
  }

  .dark-mode\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .dark-mode\:u-bg-origin-content{
    background-origin: content-box !important;
  }

  .dark-mode\:u-fill-current{
    fill: currentColor !important;
  }

  .dark-mode\:u-stroke-current{
    stroke: currentColor !important;
  }

  .dark-mode\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .dark-mode\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .dark-mode\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .dark-mode\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .dark-mode\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .dark-mode\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .dark-mode\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .dark-mode\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .dark-mode\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .dark-mode\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .dark-mode\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .dark-mode\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .dark-mode\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .dark-mode\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .dark-mode\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .dark-mode\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .dark-mode\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .dark-mode\:u-p-0{
    padding: 0px !important;
  }

  .dark-mode\:u-p-1{
    padding: 0.25rem !important;
  }

  .dark-mode\:u-p-2{
    padding: 0.5rem !important;
  }

  .dark-mode\:u-p-3{
    padding: 0.75rem !important;
  }

  .dark-mode\:u-p-4{
    padding: 1rem !important;
  }

  .dark-mode\:u-p-5{
    padding: 1.25rem !important;
  }

  .dark-mode\:u-p-6{
    padding: 1.5rem !important;
  }

  .dark-mode\:u-p-7{
    padding: 1.75rem !important;
  }

  .dark-mode\:u-p-8{
    padding: 2rem !important;
  }

  .dark-mode\:u-p-9{
    padding: 2.25rem !important;
  }

  .dark-mode\:u-p-10{
    padding: 2.5rem !important;
  }

  .dark-mode\:u-p-11{
    padding: 2.75rem !important;
  }

  .dark-mode\:u-p-12{
    padding: 3rem !important;
  }

  .dark-mode\:u-p-14{
    padding: 3.5rem !important;
  }

  .dark-mode\:u-p-16{
    padding: 4rem !important;
  }

  .dark-mode\:u-p-20{
    padding: 5rem !important;
  }

  .dark-mode\:u-p-24{
    padding: 6rem !important;
  }

  .dark-mode\:u-p-28{
    padding: 7rem !important;
  }

  .dark-mode\:u-p-32{
    padding: 8rem !important;
  }

  .dark-mode\:u-p-36{
    padding: 9rem !important;
  }

  .dark-mode\:u-p-40{
    padding: 10rem !important;
  }

  .dark-mode\:u-p-44{
    padding: 11rem !important;
  }

  .dark-mode\:u-p-48{
    padding: 12rem !important;
  }

  .dark-mode\:u-p-52{
    padding: 13rem !important;
  }

  .dark-mode\:u-p-56{
    padding: 14rem !important;
  }

  .dark-mode\:u-p-60{
    padding: 15rem !important;
  }

  .dark-mode\:u-p-64{
    padding: 16rem !important;
  }

  .dark-mode\:u-p-72{
    padding: 18rem !important;
  }

  .dark-mode\:u-p-80{
    padding: 20rem !important;
  }

  .dark-mode\:u-p-96{
    padding: 24rem !important;
  }

  .dark-mode\:u-p-px{
    padding: 1px !important;
  }

  .dark-mode\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .dark-mode\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .dark-mode\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .dark-mode\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .dark-mode\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .dark-mode\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .dark-mode\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .dark-mode\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .dark-mode\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .dark-mode\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .dark-mode\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .dark-mode\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .dark-mode\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .dark-mode\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .dark-mode\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .dark-mode\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .dark-mode\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .dark-mode\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .dark-mode\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .dark-mode\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .dark-mode\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .dark-mode\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .dark-mode\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .dark-mode\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .dark-mode\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .dark-mode\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .dark-mode\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .dark-mode\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .dark-mode\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .dark-mode\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .dark-mode\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .dark-mode\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .dark-mode\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .dark-mode\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .dark-mode\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .dark-mode\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .dark-mode\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .dark-mode\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .dark-mode\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .dark-mode\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .dark-mode\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .dark-mode\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .dark-mode\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .dark-mode\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .dark-mode\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .dark-mode\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .dark-mode\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .dark-mode\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .dark-mode\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .dark-mode\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .dark-mode\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .dark-mode\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .dark-mode\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .dark-mode\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .dark-mode\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .dark-mode\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .dark-mode\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .dark-mode\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .dark-mode\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .dark-mode\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .dark-mode\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .dark-mode\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .dark-mode\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .dark-mode\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .dark-mode\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .dark-mode\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .dark-mode\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .dark-mode\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .dark-mode\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .dark-mode\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .dark-mode\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .dark-mode\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .dark-mode\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .dark-mode\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .dark-mode\:u-pt-0{
    padding-top: 0px !important;
  }

  .dark-mode\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .dark-mode\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .dark-mode\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .dark-mode\:u-pt-4{
    padding-top: 1rem !important;
  }

  .dark-mode\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .dark-mode\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .dark-mode\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .dark-mode\:u-pt-8{
    padding-top: 2rem !important;
  }

  .dark-mode\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .dark-mode\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .dark-mode\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .dark-mode\:u-pt-12{
    padding-top: 3rem !important;
  }

  .dark-mode\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .dark-mode\:u-pt-16{
    padding-top: 4rem !important;
  }

  .dark-mode\:u-pt-20{
    padding-top: 5rem !important;
  }

  .dark-mode\:u-pt-24{
    padding-top: 6rem !important;
  }

  .dark-mode\:u-pt-28{
    padding-top: 7rem !important;
  }

  .dark-mode\:u-pt-32{
    padding-top: 8rem !important;
  }

  .dark-mode\:u-pt-36{
    padding-top: 9rem !important;
  }

  .dark-mode\:u-pt-40{
    padding-top: 10rem !important;
  }

  .dark-mode\:u-pt-44{
    padding-top: 11rem !important;
  }

  .dark-mode\:u-pt-48{
    padding-top: 12rem !important;
  }

  .dark-mode\:u-pt-52{
    padding-top: 13rem !important;
  }

  .dark-mode\:u-pt-56{
    padding-top: 14rem !important;
  }

  .dark-mode\:u-pt-60{
    padding-top: 15rem !important;
  }

  .dark-mode\:u-pt-64{
    padding-top: 16rem !important;
  }

  .dark-mode\:u-pt-72{
    padding-top: 18rem !important;
  }

  .dark-mode\:u-pt-80{
    padding-top: 20rem !important;
  }

  .dark-mode\:u-pt-96{
    padding-top: 24rem !important;
  }

  .dark-mode\:u-pt-px{
    padding-top: 1px !important;
  }

  .dark-mode\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .dark-mode\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .dark-mode\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .dark-mode\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .dark-mode\:u-pr-0{
    padding-right: 0px !important;
  }

  .dark-mode\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .dark-mode\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .dark-mode\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .dark-mode\:u-pr-4{
    padding-right: 1rem !important;
  }

  .dark-mode\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .dark-mode\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .dark-mode\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .dark-mode\:u-pr-8{
    padding-right: 2rem !important;
  }

  .dark-mode\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .dark-mode\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .dark-mode\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .dark-mode\:u-pr-12{
    padding-right: 3rem !important;
  }

  .dark-mode\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .dark-mode\:u-pr-16{
    padding-right: 4rem !important;
  }

  .dark-mode\:u-pr-20{
    padding-right: 5rem !important;
  }

  .dark-mode\:u-pr-24{
    padding-right: 6rem !important;
  }

  .dark-mode\:u-pr-28{
    padding-right: 7rem !important;
  }

  .dark-mode\:u-pr-32{
    padding-right: 8rem !important;
  }

  .dark-mode\:u-pr-36{
    padding-right: 9rem !important;
  }

  .dark-mode\:u-pr-40{
    padding-right: 10rem !important;
  }

  .dark-mode\:u-pr-44{
    padding-right: 11rem !important;
  }

  .dark-mode\:u-pr-48{
    padding-right: 12rem !important;
  }

  .dark-mode\:u-pr-52{
    padding-right: 13rem !important;
  }

  .dark-mode\:u-pr-56{
    padding-right: 14rem !important;
  }

  .dark-mode\:u-pr-60{
    padding-right: 15rem !important;
  }

  .dark-mode\:u-pr-64{
    padding-right: 16rem !important;
  }

  .dark-mode\:u-pr-72{
    padding-right: 18rem !important;
  }

  .dark-mode\:u-pr-80{
    padding-right: 20rem !important;
  }

  .dark-mode\:u-pr-96{
    padding-right: 24rem !important;
  }

  .dark-mode\:u-pr-px{
    padding-right: 1px !important;
  }

  .dark-mode\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .dark-mode\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .dark-mode\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .dark-mode\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .dark-mode\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .dark-mode\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .dark-mode\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .dark-mode\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .dark-mode\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .dark-mode\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .dark-mode\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .dark-mode\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .dark-mode\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .dark-mode\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .dark-mode\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .dark-mode\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .dark-mode\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .dark-mode\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .dark-mode\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .dark-mode\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .dark-mode\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .dark-mode\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .dark-mode\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .dark-mode\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .dark-mode\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .dark-mode\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .dark-mode\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .dark-mode\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .dark-mode\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .dark-mode\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .dark-mode\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .dark-mode\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .dark-mode\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .dark-mode\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .dark-mode\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .dark-mode\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .dark-mode\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .dark-mode\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .dark-mode\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .dark-mode\:u-pl-0{
    padding-left: 0px !important;
  }

  .dark-mode\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .dark-mode\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .dark-mode\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .dark-mode\:u-pl-4{
    padding-left: 1rem !important;
  }

  .dark-mode\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .dark-mode\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .dark-mode\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .dark-mode\:u-pl-8{
    padding-left: 2rem !important;
  }

  .dark-mode\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .dark-mode\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .dark-mode\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .dark-mode\:u-pl-12{
    padding-left: 3rem !important;
  }

  .dark-mode\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .dark-mode\:u-pl-16{
    padding-left: 4rem !important;
  }

  .dark-mode\:u-pl-20{
    padding-left: 5rem !important;
  }

  .dark-mode\:u-pl-24{
    padding-left: 6rem !important;
  }

  .dark-mode\:u-pl-28{
    padding-left: 7rem !important;
  }

  .dark-mode\:u-pl-32{
    padding-left: 8rem !important;
  }

  .dark-mode\:u-pl-36{
    padding-left: 9rem !important;
  }

  .dark-mode\:u-pl-40{
    padding-left: 10rem !important;
  }

  .dark-mode\:u-pl-44{
    padding-left: 11rem !important;
  }

  .dark-mode\:u-pl-48{
    padding-left: 12rem !important;
  }

  .dark-mode\:u-pl-52{
    padding-left: 13rem !important;
  }

  .dark-mode\:u-pl-56{
    padding-left: 14rem !important;
  }

  .dark-mode\:u-pl-60{
    padding-left: 15rem !important;
  }

  .dark-mode\:u-pl-64{
    padding-left: 16rem !important;
  }

  .dark-mode\:u-pl-72{
    padding-left: 18rem !important;
  }

  .dark-mode\:u-pl-80{
    padding-left: 20rem !important;
  }

  .dark-mode\:u-pl-96{
    padding-left: 24rem !important;
  }

  .dark-mode\:u-pl-px{
    padding-left: 1px !important;
  }

  .dark-mode\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .dark-mode\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .dark-mode\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .dark-mode\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .dark-mode\:u-text-left{
    text-align: left !important;
  }

  .dark-mode\:u-text-center{
    text-align: center !important;
  }

  .dark-mode\:u-text-right{
    text-align: right !important;
  }

  .dark-mode\:u-text-justify{
    text-align: justify !important;
  }

  .dark-mode\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .dark-mode\:u-align-top{
    vertical-align: top !important;
  }

  .dark-mode\:u-align-middle{
    vertical-align: middle !important;
  }

  .dark-mode\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .dark-mode\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .dark-mode\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .dark-mode\:u-font-body{
    font-family: Mukta, sans-serif !important;
  }

  .dark-mode\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .dark-mode\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .dark-mode\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .dark-mode\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .dark-mode\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .dark-mode\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .dark-mode\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .dark-mode\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .dark-mode\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .dark-mode\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .dark-mode\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .dark-mode\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .dark-mode\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .dark-mode\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .dark-mode\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !important;
  }

  .dark-mode\:u-font-thin{
    font-weight: 100 !important;
  }

  .dark-mode\:u-font-extralight{
    font-weight: 200 !important;
  }

  .dark-mode\:u-font-light{
    font-weight: 300 !important;
  }

  .dark-mode\:u-font-normal{
    font-weight: 400 !important;
  }

  .dark-mode\:u-font-medium{
    font-weight: 500 !important;
  }

  .dark-mode\:u-font-semibold{
    font-weight: 600 !important;
  }

  .dark-mode\:u-font-bold{
    font-weight: 700 !important;
  }

  .dark-mode\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .dark-mode\:u-font-black{
    font-weight: 900 !important;
  }

  .dark-mode\:u-uppercase{
    text-transform: uppercase !important;
  }

  .dark-mode\:u-lowercase{
    text-transform: lowercase !important;
  }

  .dark-mode\:u-capitalize{
    text-transform: capitalize !important;
  }

  .dark-mode\:u-normal-case{
    text-transform: none !important;
  }

  .dark-mode\:u-italic{
    font-style: italic !important;
  }

  .dark-mode\:u-not-italic{
    font-style: normal !important;
  }

  .dark-mode\:u-ordinal, .dark-mode\:u-slashed-zero, .dark-mode\:u-lining-nums, .dark-mode\:u-oldstyle-nums, .dark-mode\:u-proportional-nums, .dark-mode\:u-tabular-nums, .dark-mode\:u-diagonal-fractions, .dark-mode\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .dark-mode\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .dark-mode\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .dark-mode\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .dark-mode\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .dark-mode\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .dark-mode\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .dark-mode\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .dark-mode\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .dark-mode\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .dark-mode\:u-leading-3{
    line-height: .75rem !important;
  }

  .dark-mode\:u-leading-4{
    line-height: 1rem !important;
  }

  .dark-mode\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .dark-mode\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .dark-mode\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .dark-mode\:u-leading-8{
    line-height: 2rem !important;
  }

  .dark-mode\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .dark-mode\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .dark-mode\:u-leading-none{
    line-height: 1 !important;
  }

  .dark-mode\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .dark-mode\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .dark-mode\:u-leading-normal{
    line-height: 1.5 !important;
  }

  .dark-mode\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .dark-mode\:u-leading-loose{
    line-height: 2 !important;
  }

  .dark-mode\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .dark-mode\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .dark-mode\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .dark-mode\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .dark-mode\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .dark-mode\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .dark-mode\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-0{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-0{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .dark-mode\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .dark-mode\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .dark-mode\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .dark-mode\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .dark-mode\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .dark-mode\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .dark-mode\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .dark-mode\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .dark-mode\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .dark-mode\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .dark-mode\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .dark-mode\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .dark-mode\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .dark-mode\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .dark-mode\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .dark-mode\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .dark-mode\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .dark-mode\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .dark-mode\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .dark-mode\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .dark-mode\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .dark-mode\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .dark-mode\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .dark-mode\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .dark-mode\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .dark-mode\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .dark-mode\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .dark-mode\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .dark-mode\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .dark-mode\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .dark-mode\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .dark-mode\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .dark-mode\:u-underline{
    text-decoration: underline !important;
  }

  .dark-mode\:u-line-through{
    text-decoration: line-through !important;
  }

  .dark-mode\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .dark-mode\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .dark-mode\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .dark-mode\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .dark-mode\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .dark-mode\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .dark-mode\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .dark-mode\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .dark-mode\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .dark-mode\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .dark-mode\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .dark-mode\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .dark-mode\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark-mode\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark-mode\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark-mode\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark-mode\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark-mode\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark-mode\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark-mode\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark-mode\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark-mode\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark-mode\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark-mode\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark-mode\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark-mode\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark-mode\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark-mode\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark-mode\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark-mode\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark-mode\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark-mode\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark-mode\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark-mode\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark-mode\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark-mode\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark-mode\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark-mode\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark-mode\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark-mode\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark-mode\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark-mode\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark-mode\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark-mode\:u-opacity-0{
    opacity: 0 !important;
  }

  .dark-mode\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .dark-mode\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .dark-mode\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .dark-mode\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .dark-mode\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .dark-mode\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .dark-mode\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .dark-mode\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .dark-mode\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .dark-mode\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .dark-mode\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .dark-mode\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .dark-mode\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .dark-mode\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .dark-mode\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .dark-mode\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .dark-mode\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .dark-mode\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .dark-mode\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .dark-mode\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .dark-mode\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .dark-mode\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .dark-mode\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .dark-mode\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .dark-mode\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .dark-mode\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .dark-mode\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .dark-mode\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .dark-mode\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .dark-mode\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .dark-mode\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .dark-mode\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .dark-mode\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .dark-mode\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .dark-mode\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .dark-mode\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .dark-mode\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .dark-mode\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .dark-mode\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .dark-mode\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .dark-mode\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .dark-mode\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .dark-mode\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .dark-mode\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .dark-mode\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .dark-mode\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .dark-mode\:u-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .dark-mode\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .dark-mode\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .dark-mode\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .dark-mode\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .dark-mode\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .dark-mode\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .dark-mode\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .dark-mode\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .dark-mode\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .dark-mode\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .dark-mode\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .dark-mode\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .dark-mode\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .dark-mode\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .dark-mode\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .dark-mode\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .dark-mode\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .dark-mode\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .dark-mode\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .dark-mode\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .dark-mode\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .dark-mode\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .dark-mode\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .dark-mode\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .dark-mode\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .dark-mode\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .dark-mode\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .dark-mode\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .dark-mode\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .dark-mode\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .dark-mode\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !important;
  }

  .dark-mode\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark-mode\: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;
  }

  .dark-mode\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark-mode\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .dark-mode\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark-mode\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .dark-mode\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .dark-mode\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .dark-mode\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\: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;
  }

  .dark-mode\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .dark-mode\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .dark-mode\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .dark-mode\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .dark-mode\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .dark-mode\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .dark-mode\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .dark-mode\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .dark-mode\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .dark-mode\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .dark-mode\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .dark-mode\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .dark-mode\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .dark-mode\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .dark-mode\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .dark-mode\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .dark-mode\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .dark-mode\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .dark-mode\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .dark-mode\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .dark-mode\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .dark-mode\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .dark-mode\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .dark-mode\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .dark-mode\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .dark-mode\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .dark-mode\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .dark-mode\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .dark-mode\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .dark-mode\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .dark-mode\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .dark-mode\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .dark-mode\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .dark-mode\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .dark-mode\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .dark-mode\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .dark-mode\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .dark-mode\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .dark-mode\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .dark-mode\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .dark-mode\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .dark-mode\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .dark-mode\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .dark-mode\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .dark-mode\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .dark-mode\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !important;
  }

  .dark-mode\: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;
  }

  .dark-mode\:u-filter-none{
    filter: none !important;
  }

  .dark-mode\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .dark-mode\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .dark-mode\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .dark-mode\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .dark-mode\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .dark-mode\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .dark-mode\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .dark-mode\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .dark-mode\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .dark-mode\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .dark-mode\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .dark-mode\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .dark-mode\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .dark-mode\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .dark-mode\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .dark-mode\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .dark-mode\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .dark-mode\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .dark-mode\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .dark-mode\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .dark-mode\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .dark-mode\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .dark-mode\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .dark-mode\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .dark-mode\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .dark-mode\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .dark-mode\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .dark-mode\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .dark-mode\: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;
  }

  .dark-mode\: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;
  }

  .dark-mode\: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;
  }

  .dark-mode\: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;
  }

  .dark-mode\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .dark-mode\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .dark-mode\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .dark-mode\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .dark-mode\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .dark-mode\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .dark-mode\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .dark-mode\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .dark-mode\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .dark-mode\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .dark-mode\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .dark-mode\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .dark-mode\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .dark-mode\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .dark-mode\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .dark-mode\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .dark-mode\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .dark-mode\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .dark-mode\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .dark-mode\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .dark-mode\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .dark-mode\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .dark-mode\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .dark-mode\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .dark-mode\: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;
    -webkit-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;
            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;
  }

  .dark-mode\:u-backdrop-filter-none{
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }

  .dark-mode\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .dark-mode\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .dark-mode\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .dark-mode\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .dark-mode\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .dark-mode\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .dark-mode\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .dark-mode\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .dark-mode\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .dark-mode\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .dark-mode\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .dark-mode\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .dark-mode\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .dark-mode\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .dark-mode\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .dark-mode\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .dark-mode\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .dark-mode\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .dark-mode\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .dark-mode\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .dark-mode\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .dark-mode\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .dark-mode\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .dark-mode\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .dark-mode\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .dark-mode\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .dark-mode\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .dark-mode\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .dark-mode\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .dark-mode\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .dark-mode\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .dark-mode\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .dark-mode\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .dark-mode\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .dark-mode\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .dark-mode\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .dark-mode\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .dark-mode\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .dark-mode\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .dark-mode\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .dark-mode\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .dark-mode\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .dark-mode\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .dark-mode\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .dark-mode\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .dark-mode\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .dark-mode\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .dark-mode\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .dark-mode\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .dark-mode\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .dark-mode\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .dark-mode\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .dark-mode\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .dark-mode\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .dark-mode\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .dark-mode\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .dark-mode\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .dark-mode\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .dark-mode\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .dark-mode\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .dark-mode\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .dark-mode\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .dark-mode\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .dark-mode\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !important;
  }

  .dark-mode\:u-transition-none{
    transition-property: none !important;
  }

  .dark-mode\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .dark-mode\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .dark-mode\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .dark-mode\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .dark-mode\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .dark-mode\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .dark-mode\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .dark-mode\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .dark-mode\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .dark-mode\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .dark-mode\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .dark-mode\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .dark-mode\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .dark-mode\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .dark-mode\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .dark-mode\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .dark-mode\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .dark-mode\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .dark-mode\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .dark-mode\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}

@media (prefers-color-scheme: light){
  .light-mode\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .light-mode\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .light-mode\:u-container{
      max-width: 600px;
    }
  }

  @media (min-width: 768px){
    .light-mode\:u-container{
      max-width: 768px;
    }
  }

  @media (min-width: 900px){
    .light-mode\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1280px){
    .light-mode\:u-container{
      max-width: 1280px;
    }
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .light-mode\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .light-mode\:u-visible{
    visibility: visible !important;
  }

  .light-mode\:u-invisible{
    visibility: hidden !important;
  }

  .light-mode\:u-static{
    position: static !important;
  }

  .light-mode\:u-fixed{
    position: fixed !important;
  }

  .light-mode\:u-absolute{
    position: absolute !important;
  }

  .light-mode\:u-relative{
    position: relative !important;
  }

  .light-mode\:u-sticky{
    position: -webkit-sticky !important;
    position: sticky !important;
  }

  .light-mode\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .light-mode\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .light-mode\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .light-mode\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .light-mode\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .light-mode\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .light-mode\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .light-mode\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .light-mode\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .light-mode\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .light-mode\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .light-mode\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .light-mode\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .light-mode\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .light-mode\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .light-mode\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .light-mode\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .light-mode\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .light-mode\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .light-mode\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .light-mode\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .light-mode\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .light-mode\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .light-mode\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .light-mode\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .light-mode\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .light-mode\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .light-mode\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .light-mode\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .light-mode\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .light-mode\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .light-mode\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .light-mode\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .light-mode\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .light-mode\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .light-mode\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .light-mode\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .light-mode\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .light-mode\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .light-mode\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .light-mode\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .light-mode\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .light-mode\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .light-mode\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .light-mode\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .light-mode\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .light-mode\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .light-mode\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .light-mode\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .light-mode\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .light-mode\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .light-mode\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .light-mode\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .light-mode\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .light-mode\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .light-mode\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .light-mode\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .light-mode\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .light-mode\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .light-mode\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .light-mode\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .light-mode\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .light-mode\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .light-mode\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .light-mode\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .light-mode\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .light-mode\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .light-mode\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .light-mode\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .light-mode\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .light-mode\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .light-mode\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .light-mode\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .light-mode\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .light-mode\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .light-mode\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .light-mode\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .light-mode\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .light-mode\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .light-mode\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .light-mode\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .light-mode\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .light-mode\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .light-mode\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .light-mode\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .light-mode\:u-inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .light-mode\:u-inset-x-1{
    left: 0.25rem !important;
    right: 0.25rem !important;
  }

  .light-mode\:u-inset-x-2{
    left: 0.5rem !important;
    right: 0.5rem !important;
  }

  .light-mode\:u-inset-x-3{
    left: 0.75rem !important;
    right: 0.75rem !important;
  }

  .light-mode\:u-inset-x-4{
    left: 1rem !important;
    right: 1rem !important;
  }

  .light-mode\:u-inset-x-5{
    left: 1.25rem !important;
    right: 1.25rem !important;
  }

  .light-mode\:u-inset-x-6{
    left: 1.5rem !important;
    right: 1.5rem !important;
  }

  .light-mode\:u-inset-x-7{
    left: 1.75rem !important;
    right: 1.75rem !important;
  }

  .light-mode\:u-inset-x-8{
    left: 2rem !important;
    right: 2rem !important;
  }

  .light-mode\:u-inset-x-9{
    left: 2.25rem !important;
    right: 2.25rem !important;
  }

  .light-mode\:u-inset-x-10{
    left: 2.5rem !important;
    right: 2.5rem !important;
  }

  .light-mode\:u-inset-x-11{
    left: 2.75rem !important;
    right: 2.75rem !important;
  }

  .light-mode\:u-inset-x-12{
    left: 3rem !important;
    right: 3rem !important;
  }

  .light-mode\:u-inset-x-14{
    left: 3.5rem !important;
    right: 3.5rem !important;
  }

  .light-mode\:u-inset-x-16{
    left: 4rem !important;
    right: 4rem !important;
  }

  .light-mode\:u-inset-x-20{
    left: 5rem !important;
    right: 5rem !important;
  }

  .light-mode\:u-inset-x-24{
    left: 6rem !important;
    right: 6rem !important;
  }

  .light-mode\:u-inset-x-28{
    left: 7rem !important;
    right: 7rem !important;
  }

  .light-mode\:u-inset-x-32{
    left: 8rem !important;
    right: 8rem !important;
  }

  .light-mode\:u-inset-x-36{
    left: 9rem !important;
    right: 9rem !important;
  }

  .light-mode\:u-inset-x-40{
    left: 10rem !important;
    right: 10rem !important;
  }

  .light-mode\:u-inset-x-44{
    left: 11rem !important;
    right: 11rem !important;
  }

  .light-mode\:u-inset-x-48{
    left: 12rem !important;
    right: 12rem !important;
  }

  .light-mode\:u-inset-x-52{
    left: 13rem !important;
    right: 13rem !important;
  }

  .light-mode\:u-inset-x-56{
    left: 14rem !important;
    right: 14rem !important;
  }

  .light-mode\:u-inset-x-60{
    left: 15rem !important;
    right: 15rem !important;
  }

  .light-mode\:u-inset-x-64{
    left: 16rem !important;
    right: 16rem !important;
  }

  .light-mode\:u-inset-x-72{
    left: 18rem !important;
    right: 18rem !important;
  }

  .light-mode\:u-inset-x-80{
    left: 20rem !important;
    right: 20rem !important;
  }

  .light-mode\:u-inset-x-96{
    left: 24rem !important;
    right: 24rem !important;
  }

  .light-mode\:u-inset-x-auto{
    left: auto !important;
    right: auto !important;
  }

  .light-mode\:u-inset-x-px{
    left: 1px !important;
    right: 1px !important;
  }

  .light-mode\:u-inset-x-0\.5{
    left: 0.125rem !important;
    right: 0.125rem !important;
  }

  .light-mode\:u-inset-x-1\.5{
    left: 0.375rem !important;
    right: 0.375rem !important;
  }

  .light-mode\:u-inset-x-2\.5{
    left: 0.625rem !important;
    right: 0.625rem !important;
  }

  .light-mode\:u-inset-x-3\.5{
    left: 0.875rem !important;
    right: 0.875rem !important;
  }

  .light-mode\:u--inset-x-0{
    left: 0px !important;
    right: 0px !important;
  }

  .light-mode\:u--inset-x-1{
    left: -0.25rem !important;
    right: -0.25rem !important;
  }

  .light-mode\:u--inset-x-2{
    left: -0.5rem !important;
    right: -0.5rem !important;
  }

  .light-mode\:u--inset-x-3{
    left: -0.75rem !important;
    right: -0.75rem !important;
  }

  .light-mode\:u--inset-x-4{
    left: -1rem !important;
    right: -1rem !important;
  }

  .light-mode\:u--inset-x-5{
    left: -1.25rem !important;
    right: -1.25rem !important;
  }

  .light-mode\:u--inset-x-6{
    left: -1.5rem !important;
    right: -1.5rem !important;
  }

  .light-mode\:u--inset-x-7{
    left: -1.75rem !important;
    right: -1.75rem !important;
  }

  .light-mode\:u--inset-x-8{
    left: -2rem !important;
    right: -2rem !important;
  }

  .light-mode\:u--inset-x-9{
    left: -2.25rem !important;
    right: -2.25rem !important;
  }

  .light-mode\:u--inset-x-10{
    left: -2.5rem !important;
    right: -2.5rem !important;
  }

  .light-mode\:u--inset-x-11{
    left: -2.75rem !important;
    right: -2.75rem !important;
  }

  .light-mode\:u--inset-x-12{
    left: -3rem !important;
    right: -3rem !important;
  }

  .light-mode\:u--inset-x-14{
    left: -3.5rem !important;
    right: -3.5rem !important;
  }

  .light-mode\:u--inset-x-16{
    left: -4rem !important;
    right: -4rem !important;
  }

  .light-mode\:u--inset-x-20{
    left: -5rem !important;
    right: -5rem !important;
  }

  .light-mode\:u--inset-x-24{
    left: -6rem !important;
    right: -6rem !important;
  }

  .light-mode\:u--inset-x-28{
    left: -7rem !important;
    right: -7rem !important;
  }

  .light-mode\:u--inset-x-32{
    left: -8rem !important;
    right: -8rem !important;
  }

  .light-mode\:u--inset-x-36{
    left: -9rem !important;
    right: -9rem !important;
  }

  .light-mode\:u--inset-x-40{
    left: -10rem !important;
    right: -10rem !important;
  }

  .light-mode\:u--inset-x-44{
    left: -11rem !important;
    right: -11rem !important;
  }

  .light-mode\:u--inset-x-48{
    left: -12rem !important;
    right: -12rem !important;
  }

  .light-mode\:u--inset-x-52{
    left: -13rem !important;
    right: -13rem !important;
  }

  .light-mode\:u--inset-x-56{
    left: -14rem !important;
    right: -14rem !important;
  }

  .light-mode\:u--inset-x-60{
    left: -15rem !important;
    right: -15rem !important;
  }

  .light-mode\:u--inset-x-64{
    left: -16rem !important;
    right: -16rem !important;
  }

  .light-mode\:u--inset-x-72{
    left: -18rem !important;
    right: -18rem !important;
  }

  .light-mode\:u--inset-x-80{
    left: -20rem !important;
    right: -20rem !important;
  }

  .light-mode\:u--inset-x-96{
    left: -24rem !important;
    right: -24rem !important;
  }

  .light-mode\:u--inset-x-px{
    left: -1px !important;
    right: -1px !important;
  }

  .light-mode\:u--inset-x-0\.5{
    left: -0.125rem !important;
    right: -0.125rem !important;
  }

  .light-mode\:u--inset-x-1\.5{
    left: -0.375rem !important;
    right: -0.375rem !important;
  }

  .light-mode\:u--inset-x-2\.5{
    left: -0.625rem !important;
    right: -0.625rem !important;
  }

  .light-mode\:u--inset-x-3\.5{
    left: -0.875rem !important;
    right: -0.875rem !important;
  }

  .light-mode\:u-inset-x-1\/2{
    left: 50% !important;
    right: 50% !important;
  }

  .light-mode\:u-inset-x-1\/3{
    left: 33.333333% !important;
    right: 33.333333% !important;
  }

  .light-mode\:u-inset-x-2\/3{
    left: 66.666667% !important;
    right: 66.666667% !important;
  }

  .light-mode\:u-inset-x-1\/4{
    left: 25% !important;
    right: 25% !important;
  }

  .light-mode\:u-inset-x-2\/4{
    left: 50% !important;
    right: 50% !important;
  }

  .light-mode\:u-inset-x-3\/4{
    left: 75% !important;
    right: 75% !important;
  }

  .light-mode\:u-inset-x-full{
    left: 100% !important;
    right: 100% !important;
  }

  .light-mode\:u--inset-x-1\/2{
    left: -50% !important;
    right: -50% !important;
  }

  .light-mode\:u--inset-x-1\/3{
    left: -33.333333% !important;
    right: -33.333333% !important;
  }

  .light-mode\:u--inset-x-2\/3{
    left: -66.666667% !important;
    right: -66.666667% !important;
  }

  .light-mode\:u--inset-x-1\/4{
    left: -25% !important;
    right: -25% !important;
  }

  .light-mode\:u--inset-x-2\/4{
    left: -50% !important;
    right: -50% !important;
  }

  .light-mode\:u--inset-x-3\/4{
    left: -75% !important;
    right: -75% !important;
  }

  .light-mode\:u--inset-x-full{
    left: -100% !important;
    right: -100% !important;
  }

  .light-mode\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .light-mode\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .light-mode\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .light-mode\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .light-mode\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .light-mode\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .light-mode\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .light-mode\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .light-mode\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .light-mode\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .light-mode\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .light-mode\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .light-mode\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .light-mode\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .light-mode\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .light-mode\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .light-mode\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .light-mode\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .light-mode\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .light-mode\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .light-mode\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .light-mode\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .light-mode\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .light-mode\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .light-mode\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .light-mode\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .light-mode\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .light-mode\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .light-mode\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .light-mode\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .light-mode\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .light-mode\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .light-mode\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .light-mode\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .light-mode\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .light-mode\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .light-mode\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .light-mode\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .light-mode\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .light-mode\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .light-mode\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .light-mode\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .light-mode\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .light-mode\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .light-mode\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .light-mode\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .light-mode\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .light-mode\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .light-mode\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .light-mode\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .light-mode\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .light-mode\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .light-mode\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .light-mode\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .light-mode\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .light-mode\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .light-mode\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .light-mode\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .light-mode\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .light-mode\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .light-mode\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .light-mode\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .light-mode\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .light-mode\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .light-mode\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .light-mode\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .light-mode\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .light-mode\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .light-mode\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .light-mode\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .light-mode\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .light-mode\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .light-mode\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .light-mode\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .light-mode\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .light-mode\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .light-mode\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .light-mode\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .light-mode\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .light-mode\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .light-mode\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .light-mode\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .light-mode\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .light-mode\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .light-mode\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .light-mode\:u-top-0{
    top: 0px !important;
  }

  .light-mode\:u-top-1{
    top: 0.25rem !important;
  }

  .light-mode\:u-top-2{
    top: 0.5rem !important;
  }

  .light-mode\:u-top-3{
    top: 0.75rem !important;
  }

  .light-mode\:u-top-4{
    top: 1rem !important;
  }

  .light-mode\:u-top-5{
    top: 1.25rem !important;
  }

  .light-mode\:u-top-6{
    top: 1.5rem !important;
  }

  .light-mode\:u-top-7{
    top: 1.75rem !important;
  }

  .light-mode\:u-top-8{
    top: 2rem !important;
  }

  .light-mode\:u-top-9{
    top: 2.25rem !important;
  }

  .light-mode\:u-top-10{
    top: 2.5rem !important;
  }

  .light-mode\:u-top-11{
    top: 2.75rem !important;
  }

  .light-mode\:u-top-12{
    top: 3rem !important;
  }

  .light-mode\:u-top-14{
    top: 3.5rem !important;
  }

  .light-mode\:u-top-16{
    top: 4rem !important;
  }

  .light-mode\:u-top-20{
    top: 5rem !important;
  }

  .light-mode\:u-top-24{
    top: 6rem !important;
  }

  .light-mode\:u-top-28{
    top: 7rem !important;
  }

  .light-mode\:u-top-32{
    top: 8rem !important;
  }

  .light-mode\:u-top-36{
    top: 9rem !important;
  }

  .light-mode\:u-top-40{
    top: 10rem !important;
  }

  .light-mode\:u-top-44{
    top: 11rem !important;
  }

  .light-mode\:u-top-48{
    top: 12rem !important;
  }

  .light-mode\:u-top-52{
    top: 13rem !important;
  }

  .light-mode\:u-top-56{
    top: 14rem !important;
  }

  .light-mode\:u-top-60{
    top: 15rem !important;
  }

  .light-mode\:u-top-64{
    top: 16rem !important;
  }

  .light-mode\:u-top-72{
    top: 18rem !important;
  }

  .light-mode\:u-top-80{
    top: 20rem !important;
  }

  .light-mode\:u-top-96{
    top: 24rem !important;
  }

  .light-mode\:u-top-auto{
    top: auto !important;
  }

  .light-mode\:u-top-px{
    top: 1px !important;
  }

  .light-mode\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .light-mode\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .light-mode\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .light-mode\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .light-mode\:u--top-0{
    top: 0px !important;
  }

  .light-mode\:u--top-1{
    top: -0.25rem !important;
  }

  .light-mode\:u--top-2{
    top: -0.5rem !important;
  }

  .light-mode\:u--top-3{
    top: -0.75rem !important;
  }

  .light-mode\:u--top-4{
    top: -1rem !important;
  }

  .light-mode\:u--top-5{
    top: -1.25rem !important;
  }

  .light-mode\:u--top-6{
    top: -1.5rem !important;
  }

  .light-mode\:u--top-7{
    top: -1.75rem !important;
  }

  .light-mode\:u--top-8{
    top: -2rem !important;
  }

  .light-mode\:u--top-9{
    top: -2.25rem !important;
  }

  .light-mode\:u--top-10{
    top: -2.5rem !important;
  }

  .light-mode\:u--top-11{
    top: -2.75rem !important;
  }

  .light-mode\:u--top-12{
    top: -3rem !important;
  }

  .light-mode\:u--top-14{
    top: -3.5rem !important;
  }

  .light-mode\:u--top-16{
    top: -4rem !important;
  }

  .light-mode\:u--top-20{
    top: -5rem !important;
  }

  .light-mode\:u--top-24{
    top: -6rem !important;
  }

  .light-mode\:u--top-28{
    top: -7rem !important;
  }

  .light-mode\:u--top-32{
    top: -8rem !important;
  }

  .light-mode\:u--top-36{
    top: -9rem !important;
  }

  .light-mode\:u--top-40{
    top: -10rem !important;
  }

  .light-mode\:u--top-44{
    top: -11rem !important;
  }

  .light-mode\:u--top-48{
    top: -12rem !important;
  }

  .light-mode\:u--top-52{
    top: -13rem !important;
  }

  .light-mode\:u--top-56{
    top: -14rem !important;
  }

  .light-mode\:u--top-60{
    top: -15rem !important;
  }

  .light-mode\:u--top-64{
    top: -16rem !important;
  }

  .light-mode\:u--top-72{
    top: -18rem !important;
  }

  .light-mode\:u--top-80{
    top: -20rem !important;
  }

  .light-mode\:u--top-96{
    top: -24rem !important;
  }

  .light-mode\:u--top-px{
    top: -1px !important;
  }

  .light-mode\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .light-mode\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .light-mode\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .light-mode\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .light-mode\:u-top-1\/2{
    top: 50% !important;
  }

  .light-mode\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .light-mode\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .light-mode\:u-top-1\/4{
    top: 25% !important;
  }

  .light-mode\:u-top-2\/4{
    top: 50% !important;
  }

  .light-mode\:u-top-3\/4{
    top: 75% !important;
  }

  .light-mode\:u-top-full{
    top: 100% !important;
  }

  .light-mode\:u--top-1\/2{
    top: -50% !important;
  }

  .light-mode\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .light-mode\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .light-mode\:u--top-1\/4{
    top: -25% !important;
  }

  .light-mode\:u--top-2\/4{
    top: -50% !important;
  }

  .light-mode\:u--top-3\/4{
    top: -75% !important;
  }

  .light-mode\:u--top-full{
    top: -100% !important;
  }

  .light-mode\:u-right-0{
    right: 0px !important;
  }

  .light-mode\:u-right-1{
    right: 0.25rem !important;
  }

  .light-mode\:u-right-2{
    right: 0.5rem !important;
  }

  .light-mode\:u-right-3{
    right: 0.75rem !important;
  }

  .light-mode\:u-right-4{
    right: 1rem !important;
  }

  .light-mode\:u-right-5{
    right: 1.25rem !important;
  }

  .light-mode\:u-right-6{
    right: 1.5rem !important;
  }

  .light-mode\:u-right-7{
    right: 1.75rem !important;
  }

  .light-mode\:u-right-8{
    right: 2rem !important;
  }

  .light-mode\:u-right-9{
    right: 2.25rem !important;
  }

  .light-mode\:u-right-10{
    right: 2.5rem !important;
  }

  .light-mode\:u-right-11{
    right: 2.75rem !important;
  }

  .light-mode\:u-right-12{
    right: 3rem !important;
  }

  .light-mode\:u-right-14{
    right: 3.5rem !important;
  }

  .light-mode\:u-right-16{
    right: 4rem !important;
  }

  .light-mode\:u-right-20{
    right: 5rem !important;
  }

  .light-mode\:u-right-24{
    right: 6rem !important;
  }

  .light-mode\:u-right-28{
    right: 7rem !important;
  }

  .light-mode\:u-right-32{
    right: 8rem !important;
  }

  .light-mode\:u-right-36{
    right: 9rem !important;
  }

  .light-mode\:u-right-40{
    right: 10rem !important;
  }

  .light-mode\:u-right-44{
    right: 11rem !important;
  }

  .light-mode\:u-right-48{
    right: 12rem !important;
  }

  .light-mode\:u-right-52{
    right: 13rem !important;
  }

  .light-mode\:u-right-56{
    right: 14rem !important;
  }

  .light-mode\:u-right-60{
    right: 15rem !important;
  }

  .light-mode\:u-right-64{
    right: 16rem !important;
  }

  .light-mode\:u-right-72{
    right: 18rem !important;
  }

  .light-mode\:u-right-80{
    right: 20rem !important;
  }

  .light-mode\:u-right-96{
    right: 24rem !important;
  }

  .light-mode\:u-right-auto{
    right: auto !important;
  }

  .light-mode\:u-right-px{
    right: 1px !important;
  }

  .light-mode\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .light-mode\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .light-mode\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .light-mode\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .light-mode\:u--right-0{
    right: 0px !important;
  }

  .light-mode\:u--right-1{
    right: -0.25rem !important;
  }

  .light-mode\:u--right-2{
    right: -0.5rem !important;
  }

  .light-mode\:u--right-3{
    right: -0.75rem !important;
  }

  .light-mode\:u--right-4{
    right: -1rem !important;
  }

  .light-mode\:u--right-5{
    right: -1.25rem !important;
  }

  .light-mode\:u--right-6{
    right: -1.5rem !important;
  }

  .light-mode\:u--right-7{
    right: -1.75rem !important;
  }

  .light-mode\:u--right-8{
    right: -2rem !important;
  }

  .light-mode\:u--right-9{
    right: -2.25rem !important;
  }

  .light-mode\:u--right-10{
    right: -2.5rem !important;
  }

  .light-mode\:u--right-11{
    right: -2.75rem !important;
  }

  .light-mode\:u--right-12{
    right: -3rem !important;
  }

  .light-mode\:u--right-14{
    right: -3.5rem !important;
  }

  .light-mode\:u--right-16{
    right: -4rem !important;
  }

  .light-mode\:u--right-20{
    right: -5rem !important;
  }

  .light-mode\:u--right-24{
    right: -6rem !important;
  }

  .light-mode\:u--right-28{
    right: -7rem !important;
  }

  .light-mode\:u--right-32{
    right: -8rem !important;
  }

  .light-mode\:u--right-36{
    right: -9rem !important;
  }

  .light-mode\:u--right-40{
    right: -10rem !important;
  }

  .light-mode\:u--right-44{
    right: -11rem !important;
  }

  .light-mode\:u--right-48{
    right: -12rem !important;
  }

  .light-mode\:u--right-52{
    right: -13rem !important;
  }

  .light-mode\:u--right-56{
    right: -14rem !important;
  }

  .light-mode\:u--right-60{
    right: -15rem !important;
  }

  .light-mode\:u--right-64{
    right: -16rem !important;
  }

  .light-mode\:u--right-72{
    right: -18rem !important;
  }

  .light-mode\:u--right-80{
    right: -20rem !important;
  }

  .light-mode\:u--right-96{
    right: -24rem !important;
  }

  .light-mode\:u--right-px{
    right: -1px !important;
  }

  .light-mode\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .light-mode\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .light-mode\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .light-mode\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .light-mode\:u-right-1\/2{
    right: 50% !important;
  }

  .light-mode\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .light-mode\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .light-mode\:u-right-1\/4{
    right: 25% !important;
  }

  .light-mode\:u-right-2\/4{
    right: 50% !important;
  }

  .light-mode\:u-right-3\/4{
    right: 75% !important;
  }

  .light-mode\:u-right-full{
    right: 100% !important;
  }

  .light-mode\:u--right-1\/2{
    right: -50% !important;
  }

  .light-mode\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .light-mode\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .light-mode\:u--right-1\/4{
    right: -25% !important;
  }

  .light-mode\:u--right-2\/4{
    right: -50% !important;
  }

  .light-mode\:u--right-3\/4{
    right: -75% !important;
  }

  .light-mode\:u--right-full{
    right: -100% !important;
  }

  .light-mode\:u-bottom-0{
    bottom: 0px !important;
  }

  .light-mode\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .light-mode\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .light-mode\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .light-mode\:u-bottom-4{
    bottom: 1rem !important;
  }

  .light-mode\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .light-mode\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .light-mode\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .light-mode\:u-bottom-8{
    bottom: 2rem !important;
  }

  .light-mode\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .light-mode\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .light-mode\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .light-mode\:u-bottom-12{
    bottom: 3rem !important;
  }

  .light-mode\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .light-mode\:u-bottom-16{
    bottom: 4rem !important;
  }

  .light-mode\:u-bottom-20{
    bottom: 5rem !important;
  }

  .light-mode\:u-bottom-24{
    bottom: 6rem !important;
  }

  .light-mode\:u-bottom-28{
    bottom: 7rem !important;
  }

  .light-mode\:u-bottom-32{
    bottom: 8rem !important;
  }

  .light-mode\:u-bottom-36{
    bottom: 9rem !important;
  }

  .light-mode\:u-bottom-40{
    bottom: 10rem !important;
  }

  .light-mode\:u-bottom-44{
    bottom: 11rem !important;
  }

  .light-mode\:u-bottom-48{
    bottom: 12rem !important;
  }

  .light-mode\:u-bottom-52{
    bottom: 13rem !important;
  }

  .light-mode\:u-bottom-56{
    bottom: 14rem !important;
  }

  .light-mode\:u-bottom-60{
    bottom: 15rem !important;
  }

  .light-mode\:u-bottom-64{
    bottom: 16rem !important;
  }

  .light-mode\:u-bottom-72{
    bottom: 18rem !important;
  }

  .light-mode\:u-bottom-80{
    bottom: 20rem !important;
  }

  .light-mode\:u-bottom-96{
    bottom: 24rem !important;
  }

  .light-mode\:u-bottom-auto{
    bottom: auto !important;
  }

  .light-mode\:u-bottom-px{
    bottom: 1px !important;
  }

  .light-mode\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .light-mode\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .light-mode\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .light-mode\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .light-mode\:u--bottom-0{
    bottom: 0px !important;
  }

  .light-mode\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .light-mode\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .light-mode\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .light-mode\:u--bottom-4{
    bottom: -1rem !important;
  }

  .light-mode\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .light-mode\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .light-mode\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .light-mode\:u--bottom-8{
    bottom: -2rem !important;
  }

  .light-mode\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .light-mode\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .light-mode\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .light-mode\:u--bottom-12{
    bottom: -3rem !important;
  }

  .light-mode\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .light-mode\:u--bottom-16{
    bottom: -4rem !important;
  }

  .light-mode\:u--bottom-20{
    bottom: -5rem !important;
  }

  .light-mode\:u--bottom-24{
    bottom: -6rem !important;
  }

  .light-mode\:u--bottom-28{
    bottom: -7rem !important;
  }

  .light-mode\:u--bottom-32{
    bottom: -8rem !important;
  }

  .light-mode\:u--bottom-36{
    bottom: -9rem !important;
  }

  .light-mode\:u--bottom-40{
    bottom: -10rem !important;
  }

  .light-mode\:u--bottom-44{
    bottom: -11rem !important;
  }

  .light-mode\:u--bottom-48{
    bottom: -12rem !important;
  }

  .light-mode\:u--bottom-52{
    bottom: -13rem !important;
  }

  .light-mode\:u--bottom-56{
    bottom: -14rem !important;
  }

  .light-mode\:u--bottom-60{
    bottom: -15rem !important;
  }

  .light-mode\:u--bottom-64{
    bottom: -16rem !important;
  }

  .light-mode\:u--bottom-72{
    bottom: -18rem !important;
  }

  .light-mode\:u--bottom-80{
    bottom: -20rem !important;
  }

  .light-mode\:u--bottom-96{
    bottom: -24rem !important;
  }

  .light-mode\:u--bottom-px{
    bottom: -1px !important;
  }

  .light-mode\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .light-mode\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .light-mode\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .light-mode\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .light-mode\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .light-mode\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .light-mode\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .light-mode\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .light-mode\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .light-mode\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .light-mode\:u-bottom-full{
    bottom: 100% !important;
  }

  .light-mode\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .light-mode\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .light-mode\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .light-mode\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .light-mode\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .light-mode\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .light-mode\:u--bottom-full{
    bottom: -100% !important;
  }

  .light-mode\:u-left-0{
    left: 0px !important;
  }

  .light-mode\:u-left-1{
    left: 0.25rem !important;
  }

  .light-mode\:u-left-2{
    left: 0.5rem !important;
  }

  .light-mode\:u-left-3{
    left: 0.75rem !important;
  }

  .light-mode\:u-left-4{
    left: 1rem !important;
  }

  .light-mode\:u-left-5{
    left: 1.25rem !important;
  }

  .light-mode\:u-left-6{
    left: 1.5rem !important;
  }

  .light-mode\:u-left-7{
    left: 1.75rem !important;
  }

  .light-mode\:u-left-8{
    left: 2rem !important;
  }

  .light-mode\:u-left-9{
    left: 2.25rem !important;
  }

  .light-mode\:u-left-10{
    left: 2.5rem !important;
  }

  .light-mode\:u-left-11{
    left: 2.75rem !important;
  }

  .light-mode\:u-left-12{
    left: 3rem !important;
  }

  .light-mode\:u-left-14{
    left: 3.5rem !important;
  }

  .light-mode\:u-left-16{
    left: 4rem !important;
  }

  .light-mode\:u-left-20{
    left: 5rem !important;
  }

  .light-mode\:u-left-24{
    left: 6rem !important;
  }

  .light-mode\:u-left-28{
    left: 7rem !important;
  }

  .light-mode\:u-left-32{
    left: 8rem !important;
  }

  .light-mode\:u-left-36{
    left: 9rem !important;
  }

  .light-mode\:u-left-40{
    left: 10rem !important;
  }

  .light-mode\:u-left-44{
    left: 11rem !important;
  }

  .light-mode\:u-left-48{
    left: 12rem !important;
  }

  .light-mode\:u-left-52{
    left: 13rem !important;
  }

  .light-mode\:u-left-56{
    left: 14rem !important;
  }

  .light-mode\:u-left-60{
    left: 15rem !important;
  }

  .light-mode\:u-left-64{
    left: 16rem !important;
  }

  .light-mode\:u-left-72{
    left: 18rem !important;
  }

  .light-mode\:u-left-80{
    left: 20rem !important;
  }

  .light-mode\:u-left-96{
    left: 24rem !important;
  }

  .light-mode\:u-left-auto{
    left: auto !important;
  }

  .light-mode\:u-left-px{
    left: 1px !important;
  }

  .light-mode\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .light-mode\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .light-mode\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .light-mode\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .light-mode\:u--left-0{
    left: 0px !important;
  }

  .light-mode\:u--left-1{
    left: -0.25rem !important;
  }

  .light-mode\:u--left-2{
    left: -0.5rem !important;
  }

  .light-mode\:u--left-3{
    left: -0.75rem !important;
  }

  .light-mode\:u--left-4{
    left: -1rem !important;
  }

  .light-mode\:u--left-5{
    left: -1.25rem !important;
  }

  .light-mode\:u--left-6{
    left: -1.5rem !important;
  }

  .light-mode\:u--left-7{
    left: -1.75rem !important;
  }

  .light-mode\:u--left-8{
    left: -2rem !important;
  }

  .light-mode\:u--left-9{
    left: -2.25rem !important;
  }

  .light-mode\:u--left-10{
    left: -2.5rem !important;
  }

  .light-mode\:u--left-11{
    left: -2.75rem !important;
  }

  .light-mode\:u--left-12{
    left: -3rem !important;
  }

  .light-mode\:u--left-14{
    left: -3.5rem !important;
  }

  .light-mode\:u--left-16{
    left: -4rem !important;
  }

  .light-mode\:u--left-20{
    left: -5rem !important;
  }

  .light-mode\:u--left-24{
    left: -6rem !important;
  }

  .light-mode\:u--left-28{
    left: -7rem !important;
  }

  .light-mode\:u--left-32{
    left: -8rem !important;
  }

  .light-mode\:u--left-36{
    left: -9rem !important;
  }

  .light-mode\:u--left-40{
    left: -10rem !important;
  }

  .light-mode\:u--left-44{
    left: -11rem !important;
  }

  .light-mode\:u--left-48{
    left: -12rem !important;
  }

  .light-mode\:u--left-52{
    left: -13rem !important;
  }

  .light-mode\:u--left-56{
    left: -14rem !important;
  }

  .light-mode\:u--left-60{
    left: -15rem !important;
  }

  .light-mode\:u--left-64{
    left: -16rem !important;
  }

  .light-mode\:u--left-72{
    left: -18rem !important;
  }

  .light-mode\:u--left-80{
    left: -20rem !important;
  }

  .light-mode\:u--left-96{
    left: -24rem !important;
  }

  .light-mode\:u--left-px{
    left: -1px !important;
  }

  .light-mode\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .light-mode\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .light-mode\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .light-mode\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .light-mode\:u-left-1\/2{
    left: 50% !important;
  }

  .light-mode\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .light-mode\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .light-mode\:u-left-1\/4{
    left: 25% !important;
  }

  .light-mode\:u-left-2\/4{
    left: 50% !important;
  }

  .light-mode\:u-left-3\/4{
    left: 75% !important;
  }

  .light-mode\:u-left-full{
    left: 100% !important;
  }

  .light-mode\:u--left-1\/2{
    left: -50% !important;
  }

  .light-mode\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .light-mode\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .light-mode\:u--left-1\/4{
    left: -25% !important;
  }

  .light-mode\:u--left-2\/4{
    left: -50% !important;
  }

  .light-mode\:u--left-3\/4{
    left: -75% !important;
  }

  .light-mode\:u--left-full{
    left: -100% !important;
  }

  .light-mode\:u-isolate{
    isolation: isolate !important;
  }

  .light-mode\:u-isolation-auto{
    isolation: auto !important;
  }

  .light-mode\:u-z-0{
    z-index: 0 !important;
  }

  .light-mode\:u-z-10{
    z-index: 10 !important;
  }

  .light-mode\:u-z-20{
    z-index: 20 !important;
  }

  .light-mode\:u-z-30{
    z-index: 30 !important;
  }

  .light-mode\:u-z-40{
    z-index: 40 !important;
  }

  .light-mode\:u-z-50{
    z-index: 50 !important;
  }

  .light-mode\:u-z-auto{
    z-index: auto !important;
  }

  .light-mode\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .light-mode\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .light-mode\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .light-mode\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .light-mode\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .light-mode\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .light-mode\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .light-mode\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .light-mode\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .light-mode\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .light-mode\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .light-mode\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .light-mode\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .light-mode\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .light-mode\:u-order-1{
    order: 1 !important;
  }

  .light-mode\:u-order-2{
    order: 2 !important;
  }

  .light-mode\:u-order-3{
    order: 3 !important;
  }

  .light-mode\:u-order-4{
    order: 4 !important;
  }

  .light-mode\:u-order-5{
    order: 5 !important;
  }

  .light-mode\:u-order-6{
    order: 6 !important;
  }

  .light-mode\:u-order-7{
    order: 7 !important;
  }

  .light-mode\:u-order-8{
    order: 8 !important;
  }

  .light-mode\:u-order-9{
    order: 9 !important;
  }

  .light-mode\:u-order-10{
    order: 10 !important;
  }

  .light-mode\:u-order-11{
    order: 11 !important;
  }

  .light-mode\:u-order-12{
    order: 12 !important;
  }

  .light-mode\:u-order-first{
    order: -9999 !important;
  }

  .light-mode\:u-order-last{
    order: 9999 !important;
  }

  .light-mode\:u-order-none{
    order: 0 !important;
  }

  .light-mode\:u-col-auto{
    grid-column: auto !important;
  }

  .light-mode\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .light-mode\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .light-mode\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .light-mode\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .light-mode\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .light-mode\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .light-mode\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .light-mode\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .light-mode\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .light-mode\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .light-mode\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .light-mode\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .light-mode\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .light-mode\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .light-mode\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .light-mode\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .light-mode\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .light-mode\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .light-mode\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .light-mode\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .light-mode\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .light-mode\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .light-mode\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .light-mode\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .light-mode\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .light-mode\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .light-mode\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .light-mode\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .light-mode\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .light-mode\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .light-mode\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .light-mode\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .light-mode\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .light-mode\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .light-mode\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .light-mode\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .light-mode\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .light-mode\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .light-mode\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .light-mode\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .light-mode\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .light-mode\:u-row-auto{
    grid-row: auto !important;
  }

  .light-mode\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .light-mode\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .light-mode\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .light-mode\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .light-mode\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .light-mode\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .light-mode\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .light-mode\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .light-mode\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .light-mode\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .light-mode\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .light-mode\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .light-mode\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .light-mode\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .light-mode\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .light-mode\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .light-mode\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .light-mode\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .light-mode\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .light-mode\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .light-mode\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .light-mode\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .light-mode\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .light-mode\:u-float-right{
    float: right !important;
  }

  .light-mode\:u-float-left{
    float: left !important;
  }

  .light-mode\:u-float-none{
    float: none !important;
  }

  .light-mode\:u-clear-left{
    clear: left !important;
  }

  .light-mode\:u-clear-right{
    clear: right !important;
  }

  .light-mode\:u-clear-both{
    clear: both !important;
  }

  .light-mode\:u-clear-none{
    clear: none !important;
  }

  .light-mode\:u-m-0{
    margin: 0px !important;
  }

  .light-mode\:u-m-1{
    margin: 0.25rem !important;
  }

  .light-mode\:u-m-2{
    margin: 0.5rem !important;
  }

  .light-mode\:u-m-3{
    margin: 0.75rem !important;
  }

  .light-mode\:u-m-4{
    margin: 1rem !important;
  }

  .light-mode\:u-m-5{
    margin: 1.25rem !important;
  }

  .light-mode\:u-m-6{
    margin: 1.5rem !important;
  }

  .light-mode\:u-m-7{
    margin: 1.75rem !important;
  }

  .light-mode\:u-m-8{
    margin: 2rem !important;
  }

  .light-mode\:u-m-9{
    margin: 2.25rem !important;
  }

  .light-mode\:u-m-10{
    margin: 2.5rem !important;
  }

  .light-mode\:u-m-11{
    margin: 2.75rem !important;
  }

  .light-mode\:u-m-12{
    margin: 3rem !important;
  }

  .light-mode\:u-m-14{
    margin: 3.5rem !important;
  }

  .light-mode\:u-m-16{
    margin: 4rem !important;
  }

  .light-mode\:u-m-20{
    margin: 5rem !important;
  }

  .light-mode\:u-m-24{
    margin: 6rem !important;
  }

  .light-mode\:u-m-28{
    margin: 7rem !important;
  }

  .light-mode\:u-m-32{
    margin: 8rem !important;
  }

  .light-mode\:u-m-36{
    margin: 9rem !important;
  }

  .light-mode\:u-m-40{
    margin: 10rem !important;
  }

  .light-mode\:u-m-44{
    margin: 11rem !important;
  }

  .light-mode\:u-m-48{
    margin: 12rem !important;
  }

  .light-mode\:u-m-52{
    margin: 13rem !important;
  }

  .light-mode\:u-m-56{
    margin: 14rem !important;
  }

  .light-mode\:u-m-60{
    margin: 15rem !important;
  }

  .light-mode\:u-m-64{
    margin: 16rem !important;
  }

  .light-mode\:u-m-72{
    margin: 18rem !important;
  }

  .light-mode\:u-m-80{
    margin: 20rem !important;
  }

  .light-mode\:u-m-96{
    margin: 24rem !important;
  }

  .light-mode\:u-m-auto{
    margin: auto !important;
  }

  .light-mode\:u-m-px{
    margin: 1px !important;
  }

  .light-mode\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .light-mode\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .light-mode\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .light-mode\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .light-mode\:u--m-0{
    margin: 0px !important;
  }

  .light-mode\:u--m-1{
    margin: -0.25rem !important;
  }

  .light-mode\:u--m-2{
    margin: -0.5rem !important;
  }

  .light-mode\:u--m-3{
    margin: -0.75rem !important;
  }

  .light-mode\:u--m-4{
    margin: -1rem !important;
  }

  .light-mode\:u--m-5{
    margin: -1.25rem !important;
  }

  .light-mode\:u--m-6{
    margin: -1.5rem !important;
  }

  .light-mode\:u--m-7{
    margin: -1.75rem !important;
  }

  .light-mode\:u--m-8{
    margin: -2rem !important;
  }

  .light-mode\:u--m-9{
    margin: -2.25rem !important;
  }

  .light-mode\:u--m-10{
    margin: -2.5rem !important;
  }

  .light-mode\:u--m-11{
    margin: -2.75rem !important;
  }

  .light-mode\:u--m-12{
    margin: -3rem !important;
  }

  .light-mode\:u--m-14{
    margin: -3.5rem !important;
  }

  .light-mode\:u--m-16{
    margin: -4rem !important;
  }

  .light-mode\:u--m-20{
    margin: -5rem !important;
  }

  .light-mode\:u--m-24{
    margin: -6rem !important;
  }

  .light-mode\:u--m-28{
    margin: -7rem !important;
  }

  .light-mode\:u--m-32{
    margin: -8rem !important;
  }

  .light-mode\:u--m-36{
    margin: -9rem !important;
  }

  .light-mode\:u--m-40{
    margin: -10rem !important;
  }

  .light-mode\:u--m-44{
    margin: -11rem !important;
  }

  .light-mode\:u--m-48{
    margin: -12rem !important;
  }

  .light-mode\:u--m-52{
    margin: -13rem !important;
  }

  .light-mode\:u--m-56{
    margin: -14rem !important;
  }

  .light-mode\:u--m-60{
    margin: -15rem !important;
  }

  .light-mode\:u--m-64{
    margin: -16rem !important;
  }

  .light-mode\:u--m-72{
    margin: -18rem !important;
  }

  .light-mode\:u--m-80{
    margin: -20rem !important;
  }

  .light-mode\:u--m-96{
    margin: -24rem !important;
  }

  .light-mode\:u--m-px{
    margin: -1px !important;
  }

  .light-mode\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .light-mode\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .light-mode\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .light-mode\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .light-mode\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .light-mode\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .light-mode\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .light-mode\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .light-mode\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .light-mode\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .light-mode\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .light-mode\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .light-mode\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .light-mode\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .light-mode\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .light-mode\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .light-mode\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .light-mode\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .light-mode\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .light-mode\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .light-mode\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .light-mode\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .light-mode\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .light-mode\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .light-mode\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .light-mode\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .light-mode\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .light-mode\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .light-mode\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .light-mode\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .light-mode\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .light-mode\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .light-mode\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .light-mode\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .light-mode\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .light-mode\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .light-mode\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .light-mode\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .light-mode\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .light-mode\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .light-mode\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .light-mode\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .light-mode\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .light-mode\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .light-mode\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .light-mode\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .light-mode\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .light-mode\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .light-mode\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .light-mode\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .light-mode\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .light-mode\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .light-mode\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .light-mode\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .light-mode\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .light-mode\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .light-mode\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .light-mode\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .light-mode\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .light-mode\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .light-mode\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .light-mode\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .light-mode\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .light-mode\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .light-mode\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .light-mode\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .light-mode\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .light-mode\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .light-mode\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .light-mode\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .light-mode\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .light-mode\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .light-mode\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .light-mode\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .light-mode\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .light-mode\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .light-mode\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .light-mode\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .light-mode\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .light-mode\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .light-mode\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .light-mode\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .light-mode\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .light-mode\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .light-mode\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .light-mode\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .light-mode\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .light-mode\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .light-mode\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .light-mode\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .light-mode\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .light-mode\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .light-mode\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .light-mode\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .light-mode\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .light-mode\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .light-mode\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .light-mode\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .light-mode\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .light-mode\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .light-mode\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .light-mode\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .light-mode\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .light-mode\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .light-mode\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .light-mode\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .light-mode\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .light-mode\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .light-mode\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .light-mode\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .light-mode\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .light-mode\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .light-mode\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .light-mode\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .light-mode\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .light-mode\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .light-mode\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .light-mode\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .light-mode\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .light-mode\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .light-mode\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .light-mode\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .light-mode\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .light-mode\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .light-mode\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .light-mode\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .light-mode\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .light-mode\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .light-mode\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .light-mode\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .light-mode\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .light-mode\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .light-mode\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .light-mode\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .light-mode\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .light-mode\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .light-mode\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .light-mode\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .light-mode\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .light-mode\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .light-mode\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .light-mode\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .light-mode\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .light-mode\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .light-mode\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .light-mode\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .light-mode\:u-mt-0{
    margin-top: 0px !important;
  }

  .light-mode\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .light-mode\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .light-mode\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .light-mode\:u-mt-4{
    margin-top: 1rem !important;
  }

  .light-mode\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .light-mode\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .light-mode\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .light-mode\:u-mt-8{
    margin-top: 2rem !important;
  }

  .light-mode\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .light-mode\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .light-mode\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .light-mode\:u-mt-12{
    margin-top: 3rem !important;
  }

  .light-mode\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .light-mode\:u-mt-16{
    margin-top: 4rem !important;
  }

  .light-mode\:u-mt-20{
    margin-top: 5rem !important;
  }

  .light-mode\:u-mt-24{
    margin-top: 6rem !important;
  }

  .light-mode\:u-mt-28{
    margin-top: 7rem !important;
  }

  .light-mode\:u-mt-32{
    margin-top: 8rem !important;
  }

  .light-mode\:u-mt-36{
    margin-top: 9rem !important;
  }

  .light-mode\:u-mt-40{
    margin-top: 10rem !important;
  }

  .light-mode\:u-mt-44{
    margin-top: 11rem !important;
  }

  .light-mode\:u-mt-48{
    margin-top: 12rem !important;
  }

  .light-mode\:u-mt-52{
    margin-top: 13rem !important;
  }

  .light-mode\:u-mt-56{
    margin-top: 14rem !important;
  }

  .light-mode\:u-mt-60{
    margin-top: 15rem !important;
  }

  .light-mode\:u-mt-64{
    margin-top: 16rem !important;
  }

  .light-mode\:u-mt-72{
    margin-top: 18rem !important;
  }

  .light-mode\:u-mt-80{
    margin-top: 20rem !important;
  }

  .light-mode\:u-mt-96{
    margin-top: 24rem !important;
  }

  .light-mode\:u-mt-auto{
    margin-top: auto !important;
  }

  .light-mode\:u-mt-px{
    margin-top: 1px !important;
  }

  .light-mode\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .light-mode\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .light-mode\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .light-mode\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .light-mode\:u--mt-0{
    margin-top: 0px !important;
  }

  .light-mode\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .light-mode\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .light-mode\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .light-mode\:u--mt-4{
    margin-top: -1rem !important;
  }

  .light-mode\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .light-mode\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .light-mode\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .light-mode\:u--mt-8{
    margin-top: -2rem !important;
  }

  .light-mode\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .light-mode\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .light-mode\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .light-mode\:u--mt-12{
    margin-top: -3rem !important;
  }

  .light-mode\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .light-mode\:u--mt-16{
    margin-top: -4rem !important;
  }

  .light-mode\:u--mt-20{
    margin-top: -5rem !important;
  }

  .light-mode\:u--mt-24{
    margin-top: -6rem !important;
  }

  .light-mode\:u--mt-28{
    margin-top: -7rem !important;
  }

  .light-mode\:u--mt-32{
    margin-top: -8rem !important;
  }

  .light-mode\:u--mt-36{
    margin-top: -9rem !important;
  }

  .light-mode\:u--mt-40{
    margin-top: -10rem !important;
  }

  .light-mode\:u--mt-44{
    margin-top: -11rem !important;
  }

  .light-mode\:u--mt-48{
    margin-top: -12rem !important;
  }

  .light-mode\:u--mt-52{
    margin-top: -13rem !important;
  }

  .light-mode\:u--mt-56{
    margin-top: -14rem !important;
  }

  .light-mode\:u--mt-60{
    margin-top: -15rem !important;
  }

  .light-mode\:u--mt-64{
    margin-top: -16rem !important;
  }

  .light-mode\:u--mt-72{
    margin-top: -18rem !important;
  }

  .light-mode\:u--mt-80{
    margin-top: -20rem !important;
  }

  .light-mode\:u--mt-96{
    margin-top: -24rem !important;
  }

  .light-mode\:u--mt-px{
    margin-top: -1px !important;
  }

  .light-mode\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .light-mode\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .light-mode\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .light-mode\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .light-mode\:u-mr-0{
    margin-right: 0px !important;
  }

  .light-mode\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .light-mode\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .light-mode\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .light-mode\:u-mr-4{
    margin-right: 1rem !important;
  }

  .light-mode\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .light-mode\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .light-mode\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .light-mode\:u-mr-8{
    margin-right: 2rem !important;
  }

  .light-mode\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .light-mode\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .light-mode\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .light-mode\:u-mr-12{
    margin-right: 3rem !important;
  }

  .light-mode\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .light-mode\:u-mr-16{
    margin-right: 4rem !important;
  }

  .light-mode\:u-mr-20{
    margin-right: 5rem !important;
  }

  .light-mode\:u-mr-24{
    margin-right: 6rem !important;
  }

  .light-mode\:u-mr-28{
    margin-right: 7rem !important;
  }

  .light-mode\:u-mr-32{
    margin-right: 8rem !important;
  }

  .light-mode\:u-mr-36{
    margin-right: 9rem !important;
  }

  .light-mode\:u-mr-40{
    margin-right: 10rem !important;
  }

  .light-mode\:u-mr-44{
    margin-right: 11rem !important;
  }

  .light-mode\:u-mr-48{
    margin-right: 12rem !important;
  }

  .light-mode\:u-mr-52{
    margin-right: 13rem !important;
  }

  .light-mode\:u-mr-56{
    margin-right: 14rem !important;
  }

  .light-mode\:u-mr-60{
    margin-right: 15rem !important;
  }

  .light-mode\:u-mr-64{
    margin-right: 16rem !important;
  }

  .light-mode\:u-mr-72{
    margin-right: 18rem !important;
  }

  .light-mode\:u-mr-80{
    margin-right: 20rem !important;
  }

  .light-mode\:u-mr-96{
    margin-right: 24rem !important;
  }

  .light-mode\:u-mr-auto{
    margin-right: auto !important;
  }

  .light-mode\:u-mr-px{
    margin-right: 1px !important;
  }

  .light-mode\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .light-mode\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .light-mode\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .light-mode\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .light-mode\:u--mr-0{
    margin-right: 0px !important;
  }

  .light-mode\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .light-mode\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .light-mode\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .light-mode\:u--mr-4{
    margin-right: -1rem !important;
  }

  .light-mode\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .light-mode\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .light-mode\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .light-mode\:u--mr-8{
    margin-right: -2rem !important;
  }

  .light-mode\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .light-mode\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .light-mode\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .light-mode\:u--mr-12{
    margin-right: -3rem !important;
  }

  .light-mode\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .light-mode\:u--mr-16{
    margin-right: -4rem !important;
  }

  .light-mode\:u--mr-20{
    margin-right: -5rem !important;
  }

  .light-mode\:u--mr-24{
    margin-right: -6rem !important;
  }

  .light-mode\:u--mr-28{
    margin-right: -7rem !important;
  }

  .light-mode\:u--mr-32{
    margin-right: -8rem !important;
  }

  .light-mode\:u--mr-36{
    margin-right: -9rem !important;
  }

  .light-mode\:u--mr-40{
    margin-right: -10rem !important;
  }

  .light-mode\:u--mr-44{
    margin-right: -11rem !important;
  }

  .light-mode\:u--mr-48{
    margin-right: -12rem !important;
  }

  .light-mode\:u--mr-52{
    margin-right: -13rem !important;
  }

  .light-mode\:u--mr-56{
    margin-right: -14rem !important;
  }

  .light-mode\:u--mr-60{
    margin-right: -15rem !important;
  }

  .light-mode\:u--mr-64{
    margin-right: -16rem !important;
  }

  .light-mode\:u--mr-72{
    margin-right: -18rem !important;
  }

  .light-mode\:u--mr-80{
    margin-right: -20rem !important;
  }

  .light-mode\:u--mr-96{
    margin-right: -24rem !important;
  }

  .light-mode\:u--mr-px{
    margin-right: -1px !important;
  }

  .light-mode\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .light-mode\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .light-mode\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .light-mode\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .light-mode\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .light-mode\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .light-mode\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .light-mode\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .light-mode\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .light-mode\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .light-mode\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .light-mode\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .light-mode\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .light-mode\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .light-mode\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .light-mode\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .light-mode\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .light-mode\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .light-mode\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .light-mode\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .light-mode\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .light-mode\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .light-mode\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .light-mode\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .light-mode\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .light-mode\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .light-mode\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .light-mode\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .light-mode\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .light-mode\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .light-mode\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .light-mode\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .light-mode\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .light-mode\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .light-mode\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .light-mode\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .light-mode\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .light-mode\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .light-mode\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .light-mode\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .light-mode\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .light-mode\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .light-mode\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .light-mode\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .light-mode\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .light-mode\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .light-mode\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .light-mode\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .light-mode\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .light-mode\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .light-mode\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .light-mode\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .light-mode\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .light-mode\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .light-mode\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .light-mode\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .light-mode\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .light-mode\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .light-mode\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .light-mode\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .light-mode\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .light-mode\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .light-mode\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .light-mode\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .light-mode\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .light-mode\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .light-mode\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .light-mode\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .light-mode\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .light-mode\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .light-mode\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .light-mode\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .light-mode\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .light-mode\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .light-mode\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .light-mode\:u-ml-0{
    margin-left: 0px !important;
  }

  .light-mode\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .light-mode\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .light-mode\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .light-mode\:u-ml-4{
    margin-left: 1rem !important;
  }

  .light-mode\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .light-mode\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .light-mode\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .light-mode\:u-ml-8{
    margin-left: 2rem !important;
  }

  .light-mode\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .light-mode\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .light-mode\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .light-mode\:u-ml-12{
    margin-left: 3rem !important;
  }

  .light-mode\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .light-mode\:u-ml-16{
    margin-left: 4rem !important;
  }

  .light-mode\:u-ml-20{
    margin-left: 5rem !important;
  }

  .light-mode\:u-ml-24{
    margin-left: 6rem !important;
  }

  .light-mode\:u-ml-28{
    margin-left: 7rem !important;
  }

  .light-mode\:u-ml-32{
    margin-left: 8rem !important;
  }

  .light-mode\:u-ml-36{
    margin-left: 9rem !important;
  }

  .light-mode\:u-ml-40{
    margin-left: 10rem !important;
  }

  .light-mode\:u-ml-44{
    margin-left: 11rem !important;
  }

  .light-mode\:u-ml-48{
    margin-left: 12rem !important;
  }

  .light-mode\:u-ml-52{
    margin-left: 13rem !important;
  }

  .light-mode\:u-ml-56{
    margin-left: 14rem !important;
  }

  .light-mode\:u-ml-60{
    margin-left: 15rem !important;
  }

  .light-mode\:u-ml-64{
    margin-left: 16rem !important;
  }

  .light-mode\:u-ml-72{
    margin-left: 18rem !important;
  }

  .light-mode\:u-ml-80{
    margin-left: 20rem !important;
  }

  .light-mode\:u-ml-96{
    margin-left: 24rem !important;
  }

  .light-mode\:u-ml-auto{
    margin-left: auto !important;
  }

  .light-mode\:u-ml-px{
    margin-left: 1px !important;
  }

  .light-mode\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .light-mode\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .light-mode\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .light-mode\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .light-mode\:u--ml-0{
    margin-left: 0px !important;
  }

  .light-mode\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .light-mode\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .light-mode\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .light-mode\:u--ml-4{
    margin-left: -1rem !important;
  }

  .light-mode\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .light-mode\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .light-mode\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .light-mode\:u--ml-8{
    margin-left: -2rem !important;
  }

  .light-mode\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .light-mode\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .light-mode\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .light-mode\:u--ml-12{
    margin-left: -3rem !important;
  }

  .light-mode\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .light-mode\:u--ml-16{
    margin-left: -4rem !important;
  }

  .light-mode\:u--ml-20{
    margin-left: -5rem !important;
  }

  .light-mode\:u--ml-24{
    margin-left: -6rem !important;
  }

  .light-mode\:u--ml-28{
    margin-left: -7rem !important;
  }

  .light-mode\:u--ml-32{
    margin-left: -8rem !important;
  }

  .light-mode\:u--ml-36{
    margin-left: -9rem !important;
  }

  .light-mode\:u--ml-40{
    margin-left: -10rem !important;
  }

  .light-mode\:u--ml-44{
    margin-left: -11rem !important;
  }

  .light-mode\:u--ml-48{
    margin-left: -12rem !important;
  }

  .light-mode\:u--ml-52{
    margin-left: -13rem !important;
  }

  .light-mode\:u--ml-56{
    margin-left: -14rem !important;
  }

  .light-mode\:u--ml-60{
    margin-left: -15rem !important;
  }

  .light-mode\:u--ml-64{
    margin-left: -16rem !important;
  }

  .light-mode\:u--ml-72{
    margin-left: -18rem !important;
  }

  .light-mode\:u--ml-80{
    margin-left: -20rem !important;
  }

  .light-mode\:u--ml-96{
    margin-left: -24rem !important;
  }

  .light-mode\:u--ml-px{
    margin-left: -1px !important;
  }

  .light-mode\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .light-mode\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .light-mode\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .light-mode\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .light-mode\:u-box-border{
    box-sizing: border-box !important;
  }

  .light-mode\:u-box-content{
    box-sizing: content-box !important;
  }

  .light-mode\:u-block{
    display: block !important;
  }

  .light-mode\:u-inline-block{
    display: inline-block !important;
  }

  .light-mode\:u-inline{
    display: inline !important;
  }

  .light-mode\:u-flex{
    display: flex !important;
  }

  .light-mode\:u-inline-flex{
    display: inline-flex !important;
  }

  .light-mode\:u-table{
    display: table !important;
  }

  .light-mode\:u-inline-table{
    display: inline-table !important;
  }

  .light-mode\:u-table-caption{
    display: table-caption !important;
  }

  .light-mode\:u-table-cell{
    display: table-cell !important;
  }

  .light-mode\:u-table-column{
    display: table-column !important;
  }

  .light-mode\:u-table-column-group{
    display: table-column-group !important;
  }

  .light-mode\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .light-mode\:u-table-header-group{
    display: table-header-group !important;
  }

  .light-mode\:u-table-row-group{
    display: table-row-group !important;
  }

  .light-mode\:u-table-row{
    display: table-row !important;
  }

  .light-mode\:u-flow-root{
    display: flow-root !important;
  }

  .light-mode\:u-grid{
    display: grid !important;
  }

  .light-mode\:u-inline-grid{
    display: inline-grid !important;
  }

  .light-mode\:u-contents{
    display: contents !important;
  }

  .light-mode\:u-list-item{
    display: list-item !important;
  }

  .light-mode\:u-hidden{
    display: none !important;
  }

  .light-mode\:u-h-0{
    height: 0px !important;
  }

  .light-mode\:u-h-1{
    height: 0.25rem !important;
  }

  .light-mode\:u-h-2{
    height: 0.5rem !important;
  }

  .light-mode\:u-h-3{
    height: 0.75rem !important;
  }

  .light-mode\:u-h-4{
    height: 1rem !important;
  }

  .light-mode\:u-h-5{
    height: 1.25rem !important;
  }

  .light-mode\:u-h-6{
    height: 1.5rem !important;
  }

  .light-mode\:u-h-7{
    height: 1.75rem !important;
  }

  .light-mode\:u-h-8{
    height: 2rem !important;
  }

  .light-mode\:u-h-9{
    height: 2.25rem !important;
  }

  .light-mode\:u-h-10{
    height: 2.5rem !important;
  }

  .light-mode\:u-h-11{
    height: 2.75rem !important;
  }

  .light-mode\:u-h-12{
    height: 3rem !important;
  }

  .light-mode\:u-h-14{
    height: 3.5rem !important;
  }

  .light-mode\:u-h-16{
    height: 4rem !important;
  }

  .light-mode\:u-h-20{
    height: 5rem !important;
  }

  .light-mode\:u-h-24{
    height: 6rem !important;
  }

  .light-mode\:u-h-28{
    height: 7rem !important;
  }

  .light-mode\:u-h-32{
    height: 8rem !important;
  }

  .light-mode\:u-h-36{
    height: 9rem !important;
  }

  .light-mode\:u-h-40{
    height: 10rem !important;
  }

  .light-mode\:u-h-44{
    height: 11rem !important;
  }

  .light-mode\:u-h-48{
    height: 12rem !important;
  }

  .light-mode\:u-h-52{
    height: 13rem !important;
  }

  .light-mode\:u-h-56{
    height: 14rem !important;
  }

  .light-mode\:u-h-60{
    height: 15rem !important;
  }

  .light-mode\:u-h-64{
    height: 16rem !important;
  }

  .light-mode\:u-h-72{
    height: 18rem !important;
  }

  .light-mode\:u-h-80{
    height: 20rem !important;
  }

  .light-mode\:u-h-96{
    height: 24rem !important;
  }

  .light-mode\:u-h-auto{
    height: auto !important;
  }

  .light-mode\:u-h-px{
    height: 1px !important;
  }

  .light-mode\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .light-mode\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .light-mode\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .light-mode\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .light-mode\:u-h-1\/2{
    height: 50% !important;
  }

  .light-mode\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .light-mode\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .light-mode\:u-h-1\/4{
    height: 25% !important;
  }

  .light-mode\:u-h-2\/4{
    height: 50% !important;
  }

  .light-mode\:u-h-3\/4{
    height: 75% !important;
  }

  .light-mode\:u-h-1\/5{
    height: 20% !important;
  }

  .light-mode\:u-h-2\/5{
    height: 40% !important;
  }

  .light-mode\:u-h-3\/5{
    height: 60% !important;
  }

  .light-mode\:u-h-4\/5{
    height: 80% !important;
  }

  .light-mode\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .light-mode\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .light-mode\:u-h-3\/6{
    height: 50% !important;
  }

  .light-mode\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .light-mode\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .light-mode\:u-h-full{
    height: 100% !important;
  }

  .light-mode\:u-h-screen{
    height: 100vh !important;
  }

  .light-mode\:u-max-h-0{
    max-height: 0px !important;
  }

  .light-mode\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .light-mode\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .light-mode\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .light-mode\:u-max-h-4{
    max-height: 1rem !important;
  }

  .light-mode\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .light-mode\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .light-mode\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .light-mode\:u-max-h-8{
    max-height: 2rem !important;
  }

  .light-mode\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .light-mode\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .light-mode\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .light-mode\:u-max-h-12{
    max-height: 3rem !important;
  }

  .light-mode\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .light-mode\:u-max-h-16{
    max-height: 4rem !important;
  }

  .light-mode\:u-max-h-20{
    max-height: 5rem !important;
  }

  .light-mode\:u-max-h-24{
    max-height: 6rem !important;
  }

  .light-mode\:u-max-h-28{
    max-height: 7rem !important;
  }

  .light-mode\:u-max-h-32{
    max-height: 8rem !important;
  }

  .light-mode\:u-max-h-36{
    max-height: 9rem !important;
  }

  .light-mode\:u-max-h-40{
    max-height: 10rem !important;
  }

  .light-mode\:u-max-h-44{
    max-height: 11rem !important;
  }

  .light-mode\:u-max-h-48{
    max-height: 12rem !important;
  }

  .light-mode\:u-max-h-52{
    max-height: 13rem !important;
  }

  .light-mode\:u-max-h-56{
    max-height: 14rem !important;
  }

  .light-mode\:u-max-h-60{
    max-height: 15rem !important;
  }

  .light-mode\:u-max-h-64{
    max-height: 16rem !important;
  }

  .light-mode\:u-max-h-72{
    max-height: 18rem !important;
  }

  .light-mode\:u-max-h-80{
    max-height: 20rem !important;
  }

  .light-mode\:u-max-h-96{
    max-height: 24rem !important;
  }

  .light-mode\:u-max-h-px{
    max-height: 1px !important;
  }

  .light-mode\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .light-mode\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .light-mode\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .light-mode\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .light-mode\:u-max-h-full{
    max-height: 100% !important;
  }

  .light-mode\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .light-mode\:u-min-h-0{
    min-height: 0px !important;
  }

  .light-mode\:u-min-h-full{
    min-height: 100% !important;
  }

  .light-mode\:u-min-h-screen{
    min-height: 100vh !important;
  }

  .light-mode\:u-w-0{
    width: 0px !important;
  }

  .light-mode\:u-w-1{
    width: 0.25rem !important;
  }

  .light-mode\:u-w-2{
    width: 0.5rem !important;
  }

  .light-mode\:u-w-3{
    width: 0.75rem !important;
  }

  .light-mode\:u-w-4{
    width: 1rem !important;
  }

  .light-mode\:u-w-5{
    width: 1.25rem !important;
  }

  .light-mode\:u-w-6{
    width: 1.5rem !important;
  }

  .light-mode\:u-w-7{
    width: 1.75rem !important;
  }

  .light-mode\:u-w-8{
    width: 2rem !important;
  }

  .light-mode\:u-w-9{
    width: 2.25rem !important;
  }

  .light-mode\:u-w-10{
    width: 2.5rem !important;
  }

  .light-mode\:u-w-11{
    width: 2.75rem !important;
  }

  .light-mode\:u-w-12{
    width: 3rem !important;
  }

  .light-mode\:u-w-14{
    width: 3.5rem !important;
  }

  .light-mode\:u-w-16{
    width: 4rem !important;
  }

  .light-mode\:u-w-20{
    width: 5rem !important;
  }

  .light-mode\:u-w-24{
    width: 6rem !important;
  }

  .light-mode\:u-w-28{
    width: 7rem !important;
  }

  .light-mode\:u-w-32{
    width: 8rem !important;
  }

  .light-mode\:u-w-36{
    width: 9rem !important;
  }

  .light-mode\:u-w-40{
    width: 10rem !important;
  }

  .light-mode\:u-w-44{
    width: 11rem !important;
  }

  .light-mode\:u-w-48{
    width: 12rem !important;
  }

  .light-mode\:u-w-52{
    width: 13rem !important;
  }

  .light-mode\:u-w-56{
    width: 14rem !important;
  }

  .light-mode\:u-w-60{
    width: 15rem !important;
  }

  .light-mode\:u-w-64{
    width: 16rem !important;
  }

  .light-mode\:u-w-72{
    width: 18rem !important;
  }

  .light-mode\:u-w-80{
    width: 20rem !important;
  }

  .light-mode\:u-w-96{
    width: 24rem !important;
  }

  .light-mode\:u-w-auto{
    width: auto !important;
  }

  .light-mode\:u-w-px{
    width: 1px !important;
  }

  .light-mode\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .light-mode\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .light-mode\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .light-mode\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .light-mode\:u-w-1\/2{
    width: 50% !important;
  }

  .light-mode\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .light-mode\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .light-mode\:u-w-1\/4{
    width: 25% !important;
  }

  .light-mode\:u-w-2\/4{
    width: 50% !important;
  }

  .light-mode\:u-w-3\/4{
    width: 75% !important;
  }

  .light-mode\:u-w-1\/5{
    width: 20% !important;
  }

  .light-mode\:u-w-2\/5{
    width: 40% !important;
  }

  .light-mode\:u-w-3\/5{
    width: 60% !important;
  }

  .light-mode\:u-w-4\/5{
    width: 80% !important;
  }

  .light-mode\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .light-mode\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .light-mode\:u-w-3\/6{
    width: 50% !important;
  }

  .light-mode\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .light-mode\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .light-mode\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .light-mode\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .light-mode\:u-w-3\/12{
    width: 25% !important;
  }

  .light-mode\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .light-mode\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .light-mode\:u-w-6\/12{
    width: 50% !important;
  }

  .light-mode\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .light-mode\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .light-mode\:u-w-9\/12{
    width: 75% !important;
  }

  .light-mode\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .light-mode\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .light-mode\:u-w-full{
    width: 100% !important;
  }

  .light-mode\:u-w-screen{
    width: 100vw !important;
  }

  .light-mode\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .light-mode\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .light-mode\:u-min-w-sm{
    min-width: 320px !important;
  }

  .light-mode\:u-max-w-0{
    max-width: 0rem !important;
  }

  .light-mode\:u-max-w-none{
    max-width: none !important;
  }

  .light-mode\:u-max-w-xs{
    max-width: 20rem !important;
  }

  .light-mode\:u-max-w-sm{
    max-width: 24rem !important;
  }

  .light-mode\:u-max-w-md{
    max-width: 28rem !important;
  }

  .light-mode\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .light-mode\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .light-mode\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .light-mode\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .light-mode\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .light-mode\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .light-mode\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .light-mode\:u-max-w-7xl{
    max-width: 80rem !important;
  }

  .light-mode\:u-max-w-full{
    max-width: 100% !important;
  }

  .light-mode\:u-max-w-min{
    max-width: -webkit-min-content !important;
    max-width: -moz-min-content !important;
    max-width: min-content !important;
  }

  .light-mode\:u-max-w-max{
    max-width: -webkit-max-content !important;
    max-width: -moz-max-content !important;
    max-width: max-content !important;
  }

  .light-mode\:u-max-w-prose{
    max-width: 65ch !important;
  }

  .light-mode\:u-max-w-screen-mobile-large{
    max-width: 450px !important;
  }

  .light-mode\:u-max-w-screen-tablet-small{
    max-width: 600px !important;
  }

  .light-mode\:u-max-w-screen-tablet{
    max-width: 768px !important;
  }

  .light-mode\:u-max-w-screen-tablet-large{
    max-width: 900px !important;
  }

  .light-mode\:u-max-w-screen-desktop{
    max-width: 1280px !important;
  }

  .light-mode\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .light-mode\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .light-mode\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .light-mode\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .light-mode\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .light-mode\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .light-mode\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .light-mode\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .light-mode\:u-flex-none{
    flex: none !important;
  }

  .light-mode\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .light-mode\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .light-mode\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .light-mode\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .light-mode\:u-table-auto{
    table-layout: auto !important;
  }

  .light-mode\:u-table-fixed{
    table-layout: fixed !important;
  }

  .light-mode\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .light-mode\:u-border-separate{
    border-collapse: separate !important;
  }

  .light-mode\:u-origin-center{
    transform-origin: center !important;
  }

  .light-mode\:u-origin-top{
    transform-origin: top !important;
  }

  .light-mode\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .light-mode\:u-origin-right{
    transform-origin: right !important;
  }

  .light-mode\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .light-mode\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .light-mode\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .light-mode\:u-origin-left{
    transform-origin: left !important;
  }

  .light-mode\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-transform-none{
    transform: none !important;
  }

  .light-mode\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .light-mode\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .light-mode\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .light-mode\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .light-mode\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .light-mode\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .light-mode\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .light-mode\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .light-mode\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .light-mode\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .light-mode\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .light-mode\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .light-mode\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .light-mode\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .light-mode\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .light-mode\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .light-mode\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .light-mode\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .light-mode\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .light-mode\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .light-mode\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .light-mode\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .light-mode\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .light-mode\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .light-mode\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .light-mode\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .light-mode\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .light-mode\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .light-mode\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .light-mode\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .light-mode\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .light-mode\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .light-mode\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .light-mode\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .light-mode\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .light-mode\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .light-mode\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .light-mode\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .light-mode\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .light-mode\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .light-mode\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .light-mode\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .light-mode\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .light-mode\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .light-mode\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .light-mode\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .light-mode\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .light-mode\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .light-mode\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .light-mode\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .light-mode\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .light-mode\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .light-mode\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .light-mode\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .light-mode\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .light-mode\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .light-mode\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .light-mode\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .light-mode\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .light-mode\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .light-mode\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .light-mode\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .light-mode\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .light-mode\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .light-mode\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .light-mode\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .light-mode\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .light-mode\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .light-mode\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .light-mode\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .light-mode\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .light-mode\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .light-mode\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .light-mode\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .light-mode\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .light-mode\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .light-mode\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .light-mode\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .light-mode\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .light-mode\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .light-mode\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .light-mode\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .light-mode\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .light-mode\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .light-mode\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .light-mode\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .light-mode\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .light-mode\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .light-mode\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .light-mode\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .light-mode\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .light-mode\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .light-mode\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .light-mode\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .light-mode\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .light-mode\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .light-mode\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .light-mode\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .light-mode\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .light-mode\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .light-mode\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .light-mode\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .light-mode\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .light-mode\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .light-mode\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .light-mode\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .light-mode\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .light-mode\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .light-mode\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .light-mode\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .light-mode\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .light-mode\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .light-mode\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .light-mode\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .light-mode\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .light-mode\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .light-mode\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .light-mode\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .light-mode\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .light-mode\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .light-mode\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .light-mode\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .light-mode\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .light-mode\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .light-mode\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .light-mode\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .light-mode\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .light-mode\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .light-mode\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .light-mode\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .light-mode\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .light-mode\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .light-mode\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .light-mode\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .light-mode\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .light-mode\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .light-mode\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .light-mode\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .light-mode\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .light-mode\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .light-mode\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .light-mode\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .light-mode\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .light-mode\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .light-mode\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .light-mode\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .light-mode\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .light-mode\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .light-mode\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .light-mode\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .light-mode\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .light-mode\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .light-mode\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .light-mode\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .light-mode\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .light-mode\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .light-mode\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .light-mode\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .light-mode\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .light-mode\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .light-mode\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .light-mode\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .light-mode\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .light-mode\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .light-mode\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .light-mode\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .light-mode\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .light-mode\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .light-mode\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .light-mode\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .light-mode\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .light-mode\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .light-mode\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .light-mode\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .light-mode\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .light-mode\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .light-mode\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .light-mode\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .light-mode\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .light-mode\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .light-mode\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .light-mode\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .light-mode\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .light-mode\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .light-mode\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .light-mode\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .light-mode\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .light-mode\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .light-mode\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .light-mode\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .light-mode\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .light-mode\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .light-mode\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .light-mode\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .light-mode\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .light-mode\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .light-mode\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .light-mode\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .light-mode\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .light-mode\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .light-mode\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .light-mode\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .light-mode\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .light-mode\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .light-mode\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .light-mode\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .light-mode\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .light-mode\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .light-mode\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .light-mode\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .light-mode\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .light-mode\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .light-mode\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .light-mode\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .light-mode\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .light-mode\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .light-mode\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .light-mode\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .light-mode\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .light-mode\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .light-mode\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .light-mode\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .light-mode\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .light-mode\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .light-mode\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .light-mode\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .light-mode\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .light-mode\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .light-mode\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .light-mode\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .light-mode\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .light-mode\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .light-mode\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .light-mode\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .light-mode\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .light-mode\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .light-mode\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .light-mode\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .light-mode\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .light-mode\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .light-mode\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .light-mode\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .light-mode\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .light-mode\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .light-mode\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .light-mode\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .light-mode\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .light-mode\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .light-mode\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .light-mode\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .light-mode\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .light-mode\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .light-mode\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .light-mode\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .light-mode\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .light-mode\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .light-mode\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .light-mode\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .light-mode\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .light-mode\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .light-mode\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .light-mode\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .light-mode\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .light-mode\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .light-mode\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .light-mode\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .light-mode\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .light-mode\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .light-mode\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .light-mode\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .light-mode\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .light-mode\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .light-mode\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .light-mode\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .light-mode\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .light-mode\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .light-mode\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .light-mode\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .light-mode\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .light-mode\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .light-mode\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .light-mode\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .light-mode\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .light-mode\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .light-mode\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .light-mode\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .light-mode\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .light-mode\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .light-mode\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .light-mode\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .light-mode\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .light-mode\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .light-mode\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .light-mode\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .light-mode\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .light-mode\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .light-mode\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .light-mode\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .light-mode\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .light-mode\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .light-mode\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .light-mode\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .light-mode\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .light-mode\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .light-mode\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .light-mode\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .light-mode\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .light-mode\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .light-mode\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .light-mode\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .light-mode\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .light-mode\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .light-mode\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .light-mode\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .light-mode\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .light-mode\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .light-mode\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .light-mode\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .light-mode\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .light-mode\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .light-mode\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .light-mode\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .light-mode\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .light-mode\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .light-mode\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .light-mode\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .light-mode\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .light-mode\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .light-mode\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .light-mode\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .light-mode\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .light-mode\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .light-mode\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .light-mode\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .light-mode\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .light-mode\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .light-mode\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .light-mode\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .light-mode\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .light-mode\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .light-mode\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .light-mode\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .light-mode\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .light-mode\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .light-mode\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .light-mode\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .light-mode\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .light-mode\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .light-mode\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .light-mode\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .light-mode\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .light-mode\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .light-mode\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .light-mode\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .light-mode\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .light-mode\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .light-mode\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .light-mode\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .light-mode\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .light-mode\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .light-mode\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .light-mode\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .light-mode\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .light-mode\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .light-mode\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .light-mode\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .light-mode\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .light-mode\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .light-mode\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .light-mode\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .light-mode\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .light-mode\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .light-mode\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .light-mode\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .light-mode\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .light-mode\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .light-mode\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .light-mode\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .light-mode\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .light-mode\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .light-mode\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .light-mode\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .light-mode\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .light-mode\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .light-mode\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .light-mode\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .light-mode\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .light-mode\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .light-mode\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .light-mode\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .light-mode\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .light-mode\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .light-mode\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .light-mode\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .light-mode\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .light-mode\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .light-mode\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .light-mode\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .light-mode\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .light-mode\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .light-mode\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .light-mode\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .light-mode\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .light-mode\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .light-mode\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .light-mode\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .light-mode\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .light-mode\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .light-mode\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .light-mode\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .light-mode\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .light-mode\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .light-mode\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .light-mode\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .light-mode\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .light-mode\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .light-mode\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .light-mode\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .light-mode\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .light-mode\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .light-mode\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .light-mode\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .light-mode\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .light-mode\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .light-mode\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .light-mode\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .light-mode\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .light-mode\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .light-mode\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .light-mode\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .light-mode\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .light-mode\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .light-mode\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .light-mode\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .light-mode\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .light-mode\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .light-mode\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .light-mode\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .light-mode\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .light-mode\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .light-mode\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .light-mode\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .light-mode\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .light-mode\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .light-mode\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .light-mode\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .light-mode\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .light-mode\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .light-mode\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .light-mode\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .light-mode\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .light-mode\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .light-mode\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .light-mode\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .light-mode\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .light-mode\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .light-mode\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .light-mode\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .light-mode\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .light-mode\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .light-mode\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .light-mode\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .light-mode\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .light-mode\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .light-mode\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .light-mode\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .light-mode\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .light-mode\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .light-mode\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .light-mode\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .light-mode\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .light-mode\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .light-mode\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .light-mode\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .light-mode\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .light-mode\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .light-mode\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .light-mode\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .light-mode\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .light-mode\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .light-mode\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .light-mode\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .light-mode\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .light-mode\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .light-mode\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .light-mode\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .light-mode\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .light-mode\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .light-mode\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .light-mode\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .light-mode\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .light-mode\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .light-mode\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .light-mode\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .light-mode\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .light-mode\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .light-mode\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .light-mode\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .light-mode\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .light-mode\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .light-mode\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .light-mode\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .light-mode\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .light-mode\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .light-mode\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .light-mode\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .light-mode\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .light-mode\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .light-mode\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .light-mode\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .light-mode\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .light-mode\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .light-mode\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .light-mode\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .light-mode\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .light-mode\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .light-mode\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .light-mode\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .light-mode\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .light-mode\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .light-mode\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .light-mode\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .light-mode\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .light-mode\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .light-mode\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .light-mode\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .light-mode\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .light-mode\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .light-mode\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .light-mode\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .light-mode\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .light-mode\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .light-mode\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .light-mode\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .light-mode\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .light-mode\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .light-mode\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .light-mode\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .light-mode\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .light-mode\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .light-mode\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .light-mode\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .light-mode\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .light-mode\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .light-mode\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .light-mode\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .light-mode\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .light-mode\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .light-mode\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .light-mode\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .light-mode\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .light-mode\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .light-mode\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .light-mode\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .light-mode\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .light-mode\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .light-mode\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .light-mode\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .light-mode\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .light-mode\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .light-mode\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .light-mode\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .light-mode\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .light-mode\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .light-mode\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .light-mode\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .light-mode\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .light-mode\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .light-mode\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .light-mode\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .light-mode\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .light-mode\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .light-mode\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .light-mode\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .light-mode\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .light-mode\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .light-mode\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .light-mode\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .light-mode\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .light-mode\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .light-mode\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .light-mode\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .light-mode\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .light-mode\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .light-mode\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .light-mode\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .light-mode\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .light-mode\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .light-mode\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .light-mode\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .light-mode\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .light-mode\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .light-mode\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .light-mode\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .light-mode\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .light-mode\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .light-mode\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .light-mode\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .light-mode\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .light-mode\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .light-mode\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .light-mode\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .light-mode\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .light-mode\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .light-mode\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .light-mode\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .light-mode\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .light-mode\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .light-mode\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .light-mode\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .light-mode\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .light-mode\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .light-mode\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .light-mode\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .light-mode\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .light-mode\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .light-mode\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .light-mode\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .light-mode\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .light-mode\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .light-mode\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .light-mode\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .light-mode\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .light-mode\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .light-mode\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .light-mode\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .light-mode\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .light-mode\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .light-mode\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .light-mode\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .light-mode\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .light-mode\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .light-mode\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .light-mode\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .light-mode\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .light-mode\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .light-mode\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .light-mode\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .light-mode\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .light-mode\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .light-mode\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .light-mode\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .light-mode\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .light-mode\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .light-mode\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .light-mode\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .light-mode\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .light-mode\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .light-mode\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .light-mode\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .light-mode\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .light-mode\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .light-mode\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .light-mode\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .light-mode\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .light-mode\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .light-mode\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .light-mode\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .light-mode\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .light-mode\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .light-mode\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .light-mode\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .light-mode\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .light-mode\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .light-mode\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .light-mode\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .light-mode\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .light-mode\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .light-mode\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .light-mode\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .light-mode\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .light-mode\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .light-mode\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .light-mode\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .light-mode\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .light-mode\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .light-mode\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .light-mode\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .light-mode\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .light-mode\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .light-mode\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .light-mode\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .light-mode\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .light-mode\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .light-mode\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .light-mode\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .light-mode\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .light-mode\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .light-mode\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .light-mode\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .light-mode\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .light-mode\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .light-mode\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .light-mode\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .light-mode\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .light-mode\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .light-mode\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .light-mode\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .light-mode\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .light-mode\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .light-mode\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .light-mode\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .light-mode\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .light-mode\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .light-mode\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .light-mode\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .light-mode\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .light-mode\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .light-mode\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .light-mode\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .light-mode\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .light-mode\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .light-mode\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .light-mode\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .light-mode\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .light-mode\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }

  .light-mode\:u-cursor-auto{
    cursor: auto !important;
  }

  .light-mode\:u-cursor-default{
    cursor: default !important;
  }

  .light-mode\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .light-mode\:u-cursor-wait{
    cursor: wait !important;
  }

  .light-mode\:u-cursor-text{
    cursor: text !important;
  }

  .light-mode\:u-cursor-move{
    cursor: move !important;
  }

  .light-mode\:u-cursor-help{
    cursor: help !important;
  }

  .light-mode\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .light-mode\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .light-mode\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .light-mode\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .light-mode\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .light-mode\:u-resize-none{
    resize: none !important;
  }

  .light-mode\:u-resize-y{
    resize: vertical !important;
  }

  .light-mode\:u-resize-x{
    resize: horizontal !important;
  }

  .light-mode\:u-resize{
    resize: both !important;
  }

  .light-mode\:u-list-inside{
    list-style-position: inside !important;
  }

  .light-mode\:u-list-outside{
    list-style-position: outside !important;
  }

  .light-mode\:u-list-none{
    list-style-type: none !important;
  }

  .light-mode\:u-list-disc{
    list-style-type: disc !important;
  }

  .light-mode\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .light-mode\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .light-mode\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .light-mode\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .light-mode\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .light-mode\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .light-mode\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .light-mode\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .light-mode\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .light-mode\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .light-mode\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .light-mode\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .light-mode\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .light-mode\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .light-mode\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .light-mode\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .light-mode\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .light-mode\:u-flex-row{
    flex-direction: row !important;
  }

  .light-mode\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .light-mode\:u-flex-col{
    flex-direction: column !important;
  }

  .light-mode\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .light-mode\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .light-mode\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .light-mode\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .light-mode\:u-place-content-center{
    place-content: center !important;
  }

  .light-mode\:u-place-content-start{
    place-content: start !important;
  }

  .light-mode\:u-place-content-end{
    place-content: end !important;
  }

  .light-mode\:u-place-content-between{
    place-content: space-between !important;
  }

  .light-mode\:u-place-content-around{
    place-content: space-around !important;
  }

  .light-mode\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .light-mode\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .light-mode\:u-place-items-start{
    place-items: start !important;
  }

  .light-mode\:u-place-items-end{
    place-items: end !important;
  }

  .light-mode\:u-place-items-center{
    place-items: center !important;
  }

  .light-mode\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .light-mode\:u-content-center{
    align-content: center !important;
  }

  .light-mode\:u-content-start{
    align-content: flex-start !important;
  }

  .light-mode\:u-content-end{
    align-content: flex-end !important;
  }

  .light-mode\:u-content-between{
    align-content: space-between !important;
  }

  .light-mode\:u-content-around{
    align-content: space-around !important;
  }

  .light-mode\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .light-mode\:u-items-start{
    align-items: flex-start !important;
  }

  .light-mode\:u-items-end{
    align-items: flex-end !important;
  }

  .light-mode\:u-items-center{
    align-items: center !important;
  }

  .light-mode\:u-items-baseline{
    align-items: baseline !important;
  }

  .light-mode\:u-items-stretch{
    align-items: stretch !important;
  }

  .light-mode\:u-justify-start{
    justify-content: flex-start !important;
  }

  .light-mode\:u-justify-end{
    justify-content: flex-end !important;
  }

  .light-mode\:u-justify-center{
    justify-content: center !important;
  }

  .light-mode\:u-justify-between{
    justify-content: space-between !important;
  }

  .light-mode\:u-justify-around{
    justify-content: space-around !important;
  }

  .light-mode\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .light-mode\:u-justify-items-start{
    justify-items: start !important;
  }

  .light-mode\:u-justify-items-end{
    justify-items: end !important;
  }

  .light-mode\:u-justify-items-center{
    justify-items: center !important;
  }

  .light-mode\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .light-mode\:u-gap-0{
    gap: 0px !important;
  }

  .light-mode\:u-gap-1{
    gap: 0.25rem !important;
  }

  .light-mode\:u-gap-2{
    gap: 0.5rem !important;
  }

  .light-mode\:u-gap-3{
    gap: 0.75rem !important;
  }

  .light-mode\:u-gap-4{
    gap: 1rem !important;
  }

  .light-mode\:u-gap-5{
    gap: 1.25rem !important;
  }

  .light-mode\:u-gap-6{
    gap: 1.5rem !important;
  }

  .light-mode\:u-gap-7{
    gap: 1.75rem !important;
  }

  .light-mode\:u-gap-8{
    gap: 2rem !important;
  }

  .light-mode\:u-gap-9{
    gap: 2.25rem !important;
  }

  .light-mode\:u-gap-10{
    gap: 2.5rem !important;
  }

  .light-mode\:u-gap-11{
    gap: 2.75rem !important;
  }

  .light-mode\:u-gap-12{
    gap: 3rem !important;
  }

  .light-mode\:u-gap-14{
    gap: 3.5rem !important;
  }

  .light-mode\:u-gap-16{
    gap: 4rem !important;
  }

  .light-mode\:u-gap-20{
    gap: 5rem !important;
  }

  .light-mode\:u-gap-24{
    gap: 6rem !important;
  }

  .light-mode\:u-gap-28{
    gap: 7rem !important;
  }

  .light-mode\:u-gap-32{
    gap: 8rem !important;
  }

  .light-mode\:u-gap-36{
    gap: 9rem !important;
  }

  .light-mode\:u-gap-40{
    gap: 10rem !important;
  }

  .light-mode\:u-gap-44{
    gap: 11rem !important;
  }

  .light-mode\:u-gap-48{
    gap: 12rem !important;
  }

  .light-mode\:u-gap-52{
    gap: 13rem !important;
  }

  .light-mode\:u-gap-56{
    gap: 14rem !important;
  }

  .light-mode\:u-gap-60{
    gap: 15rem !important;
  }

  .light-mode\:u-gap-64{
    gap: 16rem !important;
  }

  .light-mode\:u-gap-72{
    gap: 18rem !important;
  }

  .light-mode\:u-gap-80{
    gap: 20rem !important;
  }

  .light-mode\:u-gap-96{
    gap: 24rem !important;
  }

  .light-mode\:u-gap-px{
    gap: 1px !important;
  }

  .light-mode\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .light-mode\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .light-mode\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .light-mode\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .light-mode\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .light-mode\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .light-mode\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .light-mode\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .light-mode\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .light-mode\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .light-mode\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .light-mode\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .light-mode\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .light-mode\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .light-mode\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .light-mode\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .light-mode\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .light-mode\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .light-mode\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .light-mode\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .light-mode\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .light-mode\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .light-mode\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .light-mode\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .light-mode\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .light-mode\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .light-mode\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .light-mode\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .light-mode\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .light-mode\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .light-mode\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .light-mode\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .light-mode\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .light-mode\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .light-mode\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .light-mode\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .light-mode\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .light-mode\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .light-mode\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .light-mode\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .light-mode\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .light-mode\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .light-mode\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .light-mode\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .light-mode\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .light-mode\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .light-mode\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .light-mode\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .light-mode\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .light-mode\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .light-mode\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .light-mode\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .light-mode\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .light-mode\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .light-mode\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .light-mode\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .light-mode\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .light-mode\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .light-mode\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .light-mode\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .light-mode\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .light-mode\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .light-mode\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .light-mode\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .light-mode\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .light-mode\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .light-mode\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .light-mode\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .light-mode\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .light-mode\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .light-mode\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .light-mode\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .light-mode\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .light-mode\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .light-mode\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .light-mode\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .light-mode\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .light-mode\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .light-mode\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .light-mode\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .light-mode\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .light-mode\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .light-mode\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .light-mode\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .light-mode\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .light-mode\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .light-mode\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .light-mode\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .light-mode\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .light-mode\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .light-mode\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .light-mode\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .light-mode\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .light-mode\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .light-mode\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .light-mode\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .light-mode\:u-place-self-auto{
    place-self: auto !important;
  }

  .light-mode\:u-place-self-start{
    place-self: start !important;
  }

  .light-mode\:u-place-self-end{
    place-self: end !important;
  }

  .light-mode\:u-place-self-center{
    place-self: center !important;
  }

  .light-mode\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .light-mode\:u-self-auto{
    align-self: auto !important;
  }

  .light-mode\:u-self-start{
    align-self: flex-start !important;
  }

  .light-mode\:u-self-end{
    align-self: flex-end !important;
  }

  .light-mode\:u-self-center{
    align-self: center !important;
  }

  .light-mode\:u-self-stretch{
    align-self: stretch !important;
  }

  .light-mode\:u-self-baseline{
    align-self: baseline !important;
  }

  .light-mode\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .light-mode\:u-justify-self-start{
    justify-self: start !important;
  }

  .light-mode\:u-justify-self-end{
    justify-self: end !important;
  }

  .light-mode\:u-justify-self-center{
    justify-self: center !important;
  }

  .light-mode\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .light-mode\:u-overflow-auto{
    overflow: auto !important;
  }

  .light-mode\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .light-mode\:u-overflow-visible{
    overflow: visible !important;
  }

  .light-mode\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .light-mode\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .light-mode\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .light-mode\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .light-mode\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .light-mode\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .light-mode\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .light-mode\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .light-mode\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .light-mode\:u-overscroll-auto{
    overscroll-behavior: auto !important;
  }

  .light-mode\:u-overscroll-contain{
    overscroll-behavior: contain !important;
  }

  .light-mode\:u-overscroll-none{
    overscroll-behavior: none !important;
  }

  .light-mode\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .light-mode\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .light-mode\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .light-mode\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .light-mode\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .light-mode\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .light-mode\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .light-mode\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .light-mode\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .light-mode\:u-whitespace-normal{
    white-space: normal !important;
  }

  .light-mode\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .light-mode\:u-whitespace-pre{
    white-space: pre !important;
  }

  .light-mode\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .light-mode\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .light-mode\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .light-mode\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .light-mode\:u-break-all{
    word-break: break-all !important;
  }

  .light-mode\:u-rounded-none{
    border-radius: 0px !important;
  }

  .light-mode\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded{
    border-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-lg{
    border-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-xl{
    border-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-2xl{
    border-radius: 1rem !important;
  }

  .light-mode\:u-rounded-3xl{
    border-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .light-mode\:u-rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .light-mode\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-t{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-t-lg{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-t-xl{
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-t-2xl{
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .light-mode\:u-rounded-t-3xl{
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .light-mode\:u-rounded-r-none{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .light-mode\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-r{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-r-lg{
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-r-xl{
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-r-2xl{
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .light-mode\:u-rounded-r-3xl{
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .light-mode\:u-rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .light-mode\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-b{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-b-lg{
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-b-xl{
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-b-2xl{
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .light-mode\:u-rounded-b-3xl{
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .light-mode\:u-rounded-l-none{
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .light-mode\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-l{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-l-lg{
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-l-xl{
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-l-2xl{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .light-mode\:u-rounded-l-3xl{
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .light-mode\:u-rounded-tl-none{
    border-top-left-radius: 0px !important;
  }

  .light-mode\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-tl{
    border-top-left-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-tl-lg{
    border-top-left-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-tl-xl{
    border-top-left-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-tl-2xl{
    border-top-left-radius: 1rem !important;
  }

  .light-mode\:u-rounded-tl-3xl{
    border-top-left-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .light-mode\:u-rounded-tr-none{
    border-top-right-radius: 0px !important;
  }

  .light-mode\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-tr{
    border-top-right-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-tr-lg{
    border-top-right-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-tr-xl{
    border-top-right-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-tr-2xl{
    border-top-right-radius: 1rem !important;
  }

  .light-mode\:u-rounded-tr-3xl{
    border-top-right-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .light-mode\:u-rounded-br-none{
    border-bottom-right-radius: 0px !important;
  }

  .light-mode\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-br{
    border-bottom-right-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-br-lg{
    border-bottom-right-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-br-xl{
    border-bottom-right-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-br-2xl{
    border-bottom-right-radius: 1rem !important;
  }

  .light-mode\:u-rounded-br-3xl{
    border-bottom-right-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .light-mode\:u-rounded-bl-none{
    border-bottom-left-radius: 0px !important;
  }

  .light-mode\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .light-mode\:u-rounded-bl{
    border-bottom-left-radius: 0.25rem !important;
  }

  .light-mode\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .light-mode\:u-rounded-bl-lg{
    border-bottom-left-radius: 0.5rem !important;
  }

  .light-mode\:u-rounded-bl-xl{
    border-bottom-left-radius: 0.75rem !important;
  }

  .light-mode\:u-rounded-bl-2xl{
    border-bottom-left-radius: 1rem !important;
  }

  .light-mode\:u-rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem !important;
  }

  .light-mode\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .light-mode\:u-border-0{
    border-width: 0px !important;
  }

  .light-mode\:u-border-2{
    border-width: 2px !important;
  }

  .light-mode\:u-border-4{
    border-width: 4px !important;
  }

  .light-mode\:u-border-8{
    border-width: 8px !important;
  }

  .light-mode\:u-border{
    border-width: 1px !important;
  }

  .light-mode\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .light-mode\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .light-mode\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .light-mode\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .light-mode\:u-border-t{
    border-top-width: 1px !important;
  }

  .light-mode\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .light-mode\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .light-mode\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .light-mode\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .light-mode\:u-border-r{
    border-right-width: 1px !important;
  }

  .light-mode\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .light-mode\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .light-mode\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .light-mode\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .light-mode\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .light-mode\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .light-mode\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .light-mode\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .light-mode\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .light-mode\:u-border-l{
    border-left-width: 1px !important;
  }

  .light-mode\:u-border-solid{
    border-style: solid !important;
  }

  .light-mode\:u-border-dashed{
    border-style: dashed !important;
  }

  .light-mode\:u-border-dotted{
    border-style: dotted !important;
  }

  .light-mode\:u-border-double{
    border-style: double !important;
  }

  .light-mode\:u-border-none{
    border-style: none !important;
  }

  .light-mode\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\: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 .light-mode\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(93, 177, 59, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(2, 81, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(96, 160, 53, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 251, 247, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(245, 245, 245, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 244, 241, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(216, 210, 205, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 187, 178, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(98, 92, 87, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(27, 21, 15, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .light-mode\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .light-mode\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .light-mode\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .light-mode\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .light-mode\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .light-mode\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .light-mode\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .light-mode\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .light-mode\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .light-mode\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .light-mode\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .light-mode\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .light-mode\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .light-mode\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .light-mode\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .light-mode\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .light-mode\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .light-mode\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .light-mode\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .light-mode\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .light-mode\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .light-mode\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .light-mode\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .light-mode\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .light-mode\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .light-mode\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .light-mode\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .light-mode\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .light-mode\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .light-mode\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .light-mode\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .light-mode\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .light-mode\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\: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 .light-mode\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(93, 177, 59, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(2, 81, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(96, 160, 53, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 251, 247, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(245, 245, 245, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 244, 241, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(216, 210, 205, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 187, 178, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(98, 92, 87, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(27, 21, 15, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .light-mode\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .light-mode\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .light-mode\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .light-mode\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .light-mode\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .light-mode\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .light-mode\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .light-mode\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .light-mode\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .light-mode\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .light-mode\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .light-mode\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .light-mode\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .light-mode\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .light-mode\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .light-mode\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .light-mode\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .light-mode\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .light-mode\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .light-mode\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .light-mode\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .light-mode\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .light-mode\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .light-mode\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .light-mode\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .light-mode\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .light-mode\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .light-mode\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .light-mode\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .light-mode\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .light-mode\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .light-mode\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .light-mode\:u-bg-none{
    background-image: none !important;
  }

  .light-mode\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .light-mode\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .light-mode\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .light-mode\:u-from-primary-0{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-primary-10{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-primary-20{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-primary-30{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-primary-40{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-primary-50{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-primary-60{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-from-secundary-0{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-secundary-10{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-secundary-20{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-secundary-30{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-secundary-40{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-secundary-50{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-secundary-60{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-from-success{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-from-neutral-10{
    --tw-gradient-from: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .light-mode\:u-from-neutral-15{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .light-mode\:u-from-neutral-20{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .light-mode\:u-from-neutral-30{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .light-mode\:u-from-neutral-40{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .light-mode\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .light-mode\:u-from-neutral-50{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .light-mode\:u-from-neutral-60{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .light-mode\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .light-mode\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-success:hover{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .light-mode\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .light-mode\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #5DB13B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #025157 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-success:focus{
    --tw-gradient-from: #60a035 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #FFFBF7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F5F5F5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #F7F4F1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D8D2CD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C4BBB2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #625C57 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #1B150F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .light-mode\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .light-mode\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .light-mode\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .light-mode\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .light-mode\:u-via-neutral-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .light-mode\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .light-mode\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .light-mode\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .light-mode\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .light-mode\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .light-mode\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .light-mode\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .light-mode\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .light-mode\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .light-mode\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .light-mode\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .light-mode\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5DB13B, var(--tw-gradient-to, rgba(93, 177, 59, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #025157, var(--tw-gradient-to, rgba(2, 81, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a035, var(--tw-gradient-to, rgba(96, 160, 53, 0)) !important;
  }

  .light-mode\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFBF7, var(--tw-gradient-to, rgba(255, 251, 247, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F5F5F5, var(--tw-gradient-to, rgba(245, 245, 245, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F4F1, var(--tw-gradient-to, rgba(247, 244, 241, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D8D2CD, var(--tw-gradient-to, rgba(216, 210, 205, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4BBB2, var(--tw-gradient-to, rgba(196, 187, 178, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #625C57, var(--tw-gradient-to, rgba(98, 92, 87, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1B150F, var(--tw-gradient-to, rgba(27, 21, 15, 0)) !important;
  }

  .light-mode\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .light-mode\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .light-mode\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .light-mode\:u-to-primary-0{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-10{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-20{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-30{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-50{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-60{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-secundary-0{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-secundary-10{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-secundary-20{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-secundary-30{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-secundary-40{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-secundary-50{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-secundary-60{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:u-to-success{
    --tw-gradient-to: #60a035 !important;
  }

  .light-mode\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .light-mode\:u-to-neutral-0{
    --tw-gradient-to: #FFFFFF !important;
  }

  .light-mode\:u-to-neutral-10{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .light-mode\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .light-mode\:u-to-neutral-20{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .light-mode\:u-to-neutral-30{
    --tw-gradient-to: #D8D2CD !important;
  }

  .light-mode\:u-to-neutral-40{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .light-mode\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .light-mode\:u-to-neutral-50{
    --tw-gradient-to: #625C57 !important;
  }

  .light-mode\:u-to-neutral-60{
    --tw-gradient-to: #1B150F !important;
  }

  .light-mode\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .light-mode\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .light-mode\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .light-mode\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:hover\:u-to-success:hover{
    --tw-gradient-to: #60a035 !important;
  }

  .light-mode\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .light-mode\:hover\:u-to-neutral-0:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .light-mode\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .light-mode\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .light-mode\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .light-mode\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D8D2CD !important;
  }

  .light-mode\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .light-mode\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .light-mode\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #625C57 !important;
  }

  .light-mode\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #1B150F !important;
  }

  .light-mode\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .light-mode\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .light-mode\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .light-mode\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #025157 !important;
  }

  .light-mode\:focus\:u-to-success:focus{
    --tw-gradient-to: #60a035 !important;
  }

  .light-mode\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .light-mode\:focus\:u-to-neutral-0:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .light-mode\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #FFFBF7 !important;
  }

  .light-mode\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .light-mode\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #F7F4F1 !important;
  }

  .light-mode\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D8D2CD !important;
  }

  .light-mode\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C4BBB2 !important;
  }

  .light-mode\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .light-mode\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #625C57 !important;
  }

  .light-mode\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #1B150F !important;
  }

  .light-mode\:u-decoration-slice{
    -webkit-box-decoration-break: slice !important;
            box-decoration-break: slice !important;
  }

  .light-mode\:u-decoration-clone{
    -webkit-box-decoration-break: clone !important;
            box-decoration-break: clone !important;
  }

  .light-mode\:u-bg-auto{
    background-size: auto !important;
  }

  .light-mode\:u-bg-cover{
    background-size: cover !important;
  }

  .light-mode\:u-bg-contain{
    background-size: contain !important;
  }

  .light-mode\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .light-mode\:u-bg-local{
    background-attachment: local !important;
  }

  .light-mode\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .light-mode\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .light-mode\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .light-mode\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .light-mode\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .light-mode\:u-bg-bottom{
    background-position: bottom !important;
  }

  .light-mode\:u-bg-center{
    background-position: center !important;
  }

  .light-mode\:u-bg-left{
    background-position: left !important;
  }

  .light-mode\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .light-mode\:u-bg-left-top{
    background-position: left top !important;
  }

  .light-mode\:u-bg-right{
    background-position: right !important;
  }

  .light-mode\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .light-mode\:u-bg-right-top{
    background-position: right top !important;
  }

  .light-mode\:u-bg-top{
    background-position: top !important;
  }

  .light-mode\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .light-mode\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .light-mode\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .light-mode\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .light-mode\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .light-mode\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .light-mode\:u-bg-origin-border{
    background-origin: border-box !important;
  }

  .light-mode\:u-bg-origin-padding{
    background-origin: padding-box !important;
  }

  .light-mode\:u-bg-origin-content{
    background-origin: content-box !important;
  }

  .light-mode\:u-fill-current{
    fill: currentColor !important;
  }

  .light-mode\:u-stroke-current{
    stroke: currentColor !important;
  }

  .light-mode\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .light-mode\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .light-mode\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .light-mode\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .light-mode\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .light-mode\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .light-mode\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .light-mode\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .light-mode\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .light-mode\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .light-mode\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .light-mode\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .light-mode\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .light-mode\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .light-mode\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .light-mode\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .light-mode\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .light-mode\:u-p-0{
    padding: 0px !important;
  }

  .light-mode\:u-p-1{
    padding: 0.25rem !important;
  }

  .light-mode\:u-p-2{
    padding: 0.5rem !important;
  }

  .light-mode\:u-p-3{
    padding: 0.75rem !important;
  }

  .light-mode\:u-p-4{
    padding: 1rem !important;
  }

  .light-mode\:u-p-5{
    padding: 1.25rem !important;
  }

  .light-mode\:u-p-6{
    padding: 1.5rem !important;
  }

  .light-mode\:u-p-7{
    padding: 1.75rem !important;
  }

  .light-mode\:u-p-8{
    padding: 2rem !important;
  }

  .light-mode\:u-p-9{
    padding: 2.25rem !important;
  }

  .light-mode\:u-p-10{
    padding: 2.5rem !important;
  }

  .light-mode\:u-p-11{
    padding: 2.75rem !important;
  }

  .light-mode\:u-p-12{
    padding: 3rem !important;
  }

  .light-mode\:u-p-14{
    padding: 3.5rem !important;
  }

  .light-mode\:u-p-16{
    padding: 4rem !important;
  }

  .light-mode\:u-p-20{
    padding: 5rem !important;
  }

  .light-mode\:u-p-24{
    padding: 6rem !important;
  }

  .light-mode\:u-p-28{
    padding: 7rem !important;
  }

  .light-mode\:u-p-32{
    padding: 8rem !important;
  }

  .light-mode\:u-p-36{
    padding: 9rem !important;
  }

  .light-mode\:u-p-40{
    padding: 10rem !important;
  }

  .light-mode\:u-p-44{
    padding: 11rem !important;
  }

  .light-mode\:u-p-48{
    padding: 12rem !important;
  }

  .light-mode\:u-p-52{
    padding: 13rem !important;
  }

  .light-mode\:u-p-56{
    padding: 14rem !important;
  }

  .light-mode\:u-p-60{
    padding: 15rem !important;
  }

  .light-mode\:u-p-64{
    padding: 16rem !important;
  }

  .light-mode\:u-p-72{
    padding: 18rem !important;
  }

  .light-mode\:u-p-80{
    padding: 20rem !important;
  }

  .light-mode\:u-p-96{
    padding: 24rem !important;
  }

  .light-mode\:u-p-px{
    padding: 1px !important;
  }

  .light-mode\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .light-mode\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .light-mode\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .light-mode\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .light-mode\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .light-mode\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .light-mode\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .light-mode\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .light-mode\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .light-mode\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .light-mode\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .light-mode\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .light-mode\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .light-mode\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .light-mode\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .light-mode\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .light-mode\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .light-mode\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .light-mode\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .light-mode\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .light-mode\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .light-mode\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .light-mode\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .light-mode\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .light-mode\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .light-mode\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .light-mode\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .light-mode\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .light-mode\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .light-mode\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .light-mode\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .light-mode\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .light-mode\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .light-mode\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .light-mode\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .light-mode\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .light-mode\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .light-mode\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .light-mode\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .light-mode\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .light-mode\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .light-mode\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .light-mode\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .light-mode\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .light-mode\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .light-mode\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .light-mode\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .light-mode\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .light-mode\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .light-mode\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .light-mode\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .light-mode\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .light-mode\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .light-mode\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .light-mode\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .light-mode\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .light-mode\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .light-mode\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .light-mode\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .light-mode\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .light-mode\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .light-mode\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .light-mode\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .light-mode\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .light-mode\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .light-mode\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .light-mode\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .light-mode\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .light-mode\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .light-mode\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .light-mode\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .light-mode\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .light-mode\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .light-mode\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .light-mode\:u-pt-0{
    padding-top: 0px !important;
  }

  .light-mode\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .light-mode\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .light-mode\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .light-mode\:u-pt-4{
    padding-top: 1rem !important;
  }

  .light-mode\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .light-mode\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .light-mode\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .light-mode\:u-pt-8{
    padding-top: 2rem !important;
  }

  .light-mode\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .light-mode\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .light-mode\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .light-mode\:u-pt-12{
    padding-top: 3rem !important;
  }

  .light-mode\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .light-mode\:u-pt-16{
    padding-top: 4rem !important;
  }

  .light-mode\:u-pt-20{
    padding-top: 5rem !important;
  }

  .light-mode\:u-pt-24{
    padding-top: 6rem !important;
  }

  .light-mode\:u-pt-28{
    padding-top: 7rem !important;
  }

  .light-mode\:u-pt-32{
    padding-top: 8rem !important;
  }

  .light-mode\:u-pt-36{
    padding-top: 9rem !important;
  }

  .light-mode\:u-pt-40{
    padding-top: 10rem !important;
  }

  .light-mode\:u-pt-44{
    padding-top: 11rem !important;
  }

  .light-mode\:u-pt-48{
    padding-top: 12rem !important;
  }

  .light-mode\:u-pt-52{
    padding-top: 13rem !important;
  }

  .light-mode\:u-pt-56{
    padding-top: 14rem !important;
  }

  .light-mode\:u-pt-60{
    padding-top: 15rem !important;
  }

  .light-mode\:u-pt-64{
    padding-top: 16rem !important;
  }

  .light-mode\:u-pt-72{
    padding-top: 18rem !important;
  }

  .light-mode\:u-pt-80{
    padding-top: 20rem !important;
  }

  .light-mode\:u-pt-96{
    padding-top: 24rem !important;
  }

  .light-mode\:u-pt-px{
    padding-top: 1px !important;
  }

  .light-mode\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .light-mode\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .light-mode\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .light-mode\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .light-mode\:u-pr-0{
    padding-right: 0px !important;
  }

  .light-mode\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .light-mode\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .light-mode\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .light-mode\:u-pr-4{
    padding-right: 1rem !important;
  }

  .light-mode\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .light-mode\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .light-mode\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .light-mode\:u-pr-8{
    padding-right: 2rem !important;
  }

  .light-mode\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .light-mode\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .light-mode\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .light-mode\:u-pr-12{
    padding-right: 3rem !important;
  }

  .light-mode\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .light-mode\:u-pr-16{
    padding-right: 4rem !important;
  }

  .light-mode\:u-pr-20{
    padding-right: 5rem !important;
  }

  .light-mode\:u-pr-24{
    padding-right: 6rem !important;
  }

  .light-mode\:u-pr-28{
    padding-right: 7rem !important;
  }

  .light-mode\:u-pr-32{
    padding-right: 8rem !important;
  }

  .light-mode\:u-pr-36{
    padding-right: 9rem !important;
  }

  .light-mode\:u-pr-40{
    padding-right: 10rem !important;
  }

  .light-mode\:u-pr-44{
    padding-right: 11rem !important;
  }

  .light-mode\:u-pr-48{
    padding-right: 12rem !important;
  }

  .light-mode\:u-pr-52{
    padding-right: 13rem !important;
  }

  .light-mode\:u-pr-56{
    padding-right: 14rem !important;
  }

  .light-mode\:u-pr-60{
    padding-right: 15rem !important;
  }

  .light-mode\:u-pr-64{
    padding-right: 16rem !important;
  }

  .light-mode\:u-pr-72{
    padding-right: 18rem !important;
  }

  .light-mode\:u-pr-80{
    padding-right: 20rem !important;
  }

  .light-mode\:u-pr-96{
    padding-right: 24rem !important;
  }

  .light-mode\:u-pr-px{
    padding-right: 1px !important;
  }

  .light-mode\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .light-mode\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .light-mode\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .light-mode\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .light-mode\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .light-mode\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .light-mode\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .light-mode\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .light-mode\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .light-mode\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .light-mode\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .light-mode\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .light-mode\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .light-mode\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .light-mode\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .light-mode\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .light-mode\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .light-mode\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .light-mode\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .light-mode\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .light-mode\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .light-mode\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .light-mode\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .light-mode\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .light-mode\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .light-mode\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .light-mode\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .light-mode\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .light-mode\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .light-mode\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .light-mode\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .light-mode\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .light-mode\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .light-mode\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .light-mode\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .light-mode\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .light-mode\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .light-mode\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .light-mode\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .light-mode\:u-pl-0{
    padding-left: 0px !important;
  }

  .light-mode\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .light-mode\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .light-mode\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .light-mode\:u-pl-4{
    padding-left: 1rem !important;
  }

  .light-mode\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .light-mode\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .light-mode\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .light-mode\:u-pl-8{
    padding-left: 2rem !important;
  }

  .light-mode\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .light-mode\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .light-mode\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .light-mode\:u-pl-12{
    padding-left: 3rem !important;
  }

  .light-mode\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .light-mode\:u-pl-16{
    padding-left: 4rem !important;
  }

  .light-mode\:u-pl-20{
    padding-left: 5rem !important;
  }

  .light-mode\:u-pl-24{
    padding-left: 6rem !important;
  }

  .light-mode\:u-pl-28{
    padding-left: 7rem !important;
  }

  .light-mode\:u-pl-32{
    padding-left: 8rem !important;
  }

  .light-mode\:u-pl-36{
    padding-left: 9rem !important;
  }

  .light-mode\:u-pl-40{
    padding-left: 10rem !important;
  }

  .light-mode\:u-pl-44{
    padding-left: 11rem !important;
  }

  .light-mode\:u-pl-48{
    padding-left: 12rem !important;
  }

  .light-mode\:u-pl-52{
    padding-left: 13rem !important;
  }

  .light-mode\:u-pl-56{
    padding-left: 14rem !important;
  }

  .light-mode\:u-pl-60{
    padding-left: 15rem !important;
  }

  .light-mode\:u-pl-64{
    padding-left: 16rem !important;
  }

  .light-mode\:u-pl-72{
    padding-left: 18rem !important;
  }

  .light-mode\:u-pl-80{
    padding-left: 20rem !important;
  }

  .light-mode\:u-pl-96{
    padding-left: 24rem !important;
  }

  .light-mode\:u-pl-px{
    padding-left: 1px !important;
  }

  .light-mode\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .light-mode\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .light-mode\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .light-mode\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .light-mode\:u-text-left{
    text-align: left !important;
  }

  .light-mode\:u-text-center{
    text-align: center !important;
  }

  .light-mode\:u-text-right{
    text-align: right !important;
  }

  .light-mode\:u-text-justify{
    text-align: justify !important;
  }

  .light-mode\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .light-mode\:u-align-top{
    vertical-align: top !important;
  }

  .light-mode\:u-align-middle{
    vertical-align: middle !important;
  }

  .light-mode\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .light-mode\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .light-mode\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .light-mode\:u-font-body{
    font-family: Mukta, sans-serif !important;
  }

  .light-mode\:u-font-heading{
    font-family: Playfair Display, serif !important;
  }

  .light-mode\:u-font-sans{
    font-family: Mukta, -apple-system, "Segoe UI", sans-serif !important;
  }

  .light-mode\:u-text-xs{
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }

  .light-mode\:u-text-sm{
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .light-mode\:u-text-base{
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .light-mode\:u-text-lg{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }

  .light-mode\:u-text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .light-mode\:u-text-2xl{
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }

  .light-mode\:u-text-3xl{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .light-mode\:u-text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .light-mode\:u-text-5xl{
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .light-mode\:u-text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }

  .light-mode\:u-text-7xl{
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }

  .light-mode\:u-text-8xl{
    font-size: 6rem !important;
    line-height: 1 !important;
  }

  .light-mode\:u-text-9xl{
    font-size: 8rem !important;
    line-height: 1 !important;
  }

  .light-mode\:u-font-thin{
    font-weight: 100 !important;
  }

  .light-mode\:u-font-extralight{
    font-weight: 200 !important;
  }

  .light-mode\:u-font-light{
    font-weight: 300 !important;
  }

  .light-mode\:u-font-normal{
    font-weight: 400 !important;
  }

  .light-mode\:u-font-medium{
    font-weight: 500 !important;
  }

  .light-mode\:u-font-semibold{
    font-weight: 600 !important;
  }

  .light-mode\:u-font-bold{
    font-weight: 700 !important;
  }

  .light-mode\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .light-mode\:u-font-black{
    font-weight: 900 !important;
  }

  .light-mode\:u-uppercase{
    text-transform: uppercase !important;
  }

  .light-mode\:u-lowercase{
    text-transform: lowercase !important;
  }

  .light-mode\:u-capitalize{
    text-transform: capitalize !important;
  }

  .light-mode\:u-normal-case{
    text-transform: none !important;
  }

  .light-mode\:u-italic{
    font-style: italic !important;
  }

  .light-mode\:u-not-italic{
    font-style: normal !important;
  }

  .light-mode\:u-ordinal, .light-mode\:u-slashed-zero, .light-mode\:u-lining-nums, .light-mode\:u-oldstyle-nums, .light-mode\:u-proportional-nums, .light-mode\:u-tabular-nums, .light-mode\:u-diagonal-fractions, .light-mode\: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;
  }

  .light-mode\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .light-mode\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .light-mode\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .light-mode\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .light-mode\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .light-mode\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .light-mode\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .light-mode\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .light-mode\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .light-mode\:u-leading-3{
    line-height: .75rem !important;
  }

  .light-mode\:u-leading-4{
    line-height: 1rem !important;
  }

  .light-mode\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .light-mode\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .light-mode\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .light-mode\:u-leading-8{
    line-height: 2rem !important;
  }

  .light-mode\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .light-mode\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .light-mode\:u-leading-none{
    line-height: 1 !important;
  }

  .light-mode\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .light-mode\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .light-mode\:u-leading-normal{
    line-height: 1.5 !important;
  }

  .light-mode\:u-leading-relaxed{
    line-height: 1.625 !important;
  }

  .light-mode\:u-leading-loose{
    line-height: 2 !important;
  }

  .light-mode\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .light-mode\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .light-mode\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .light-mode\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .light-mode\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .light-mode\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .light-mode\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-0{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-0{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .light-mode\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .light-mode\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .light-mode\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .light-mode\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .light-mode\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .light-mode\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .light-mode\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .light-mode\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .light-mode\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .light-mode\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .light-mode\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .light-mode\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .light-mode\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .light-mode\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .light-mode\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .light-mode\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .light-mode\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .light-mode\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .light-mode\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .light-mode\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .light-mode\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .light-mode\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .light-mode\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .light-mode\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .light-mode\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .light-mode\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .light-mode\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .light-mode\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .light-mode\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .light-mode\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .light-mode\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .light-mode\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .light-mode\:u-underline{
    text-decoration: underline !important;
  }

  .light-mode\:u-line-through{
    text-decoration: line-through !important;
  }

  .light-mode\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .light-mode\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .light-mode\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .light-mode\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .light-mode\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .light-mode\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .light-mode\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .light-mode\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .light-mode\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .light-mode\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .light-mode\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .light-mode\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .light-mode\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(93, 177, 59, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(2, 81, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(96, 160, 53, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 251, 247, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(245, 245, 245, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 244, 241, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(216, 210, 205, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 187, 178, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(98, 92, 87, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(27, 21, 15, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .light-mode\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .light-mode\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .light-mode\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .light-mode\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .light-mode\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .light-mode\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .light-mode\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .light-mode\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .light-mode\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .light-mode\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .light-mode\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .light-mode\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .light-mode\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .light-mode\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .light-mode\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .light-mode\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .light-mode\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .light-mode\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .light-mode\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .light-mode\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .light-mode\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .light-mode\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .light-mode\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .light-mode\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .light-mode\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .light-mode\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .light-mode\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .light-mode\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .light-mode\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .light-mode\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .light-mode\:u-opacity-0{
    opacity: 0 !important;
  }

  .light-mode\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .light-mode\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .light-mode\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .light-mode\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .light-mode\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .light-mode\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .light-mode\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .light-mode\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .light-mode\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .light-mode\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .light-mode\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .light-mode\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .light-mode\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .light-mode\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .light-mode\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .light-mode\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .light-mode\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .light-mode\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .light-mode\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .light-mode\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .light-mode\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .light-mode\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .light-mode\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .light-mode\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .light-mode\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .light-mode\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .light-mode\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .light-mode\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .light-mode\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .light-mode\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .light-mode\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .light-mode\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .light-mode\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .light-mode\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .light-mode\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .light-mode\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .light-mode\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .light-mode\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .light-mode\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .light-mode\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .light-mode\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .light-mode\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .light-mode\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .light-mode\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .light-mode\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .light-mode\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .light-mode\:u-bg-blend-normal{
    background-blend-mode: normal !important;
  }

  .light-mode\:u-bg-blend-multiply{
    background-blend-mode: multiply !important;
  }

  .light-mode\:u-bg-blend-screen{
    background-blend-mode: screen !important;
  }

  .light-mode\:u-bg-blend-overlay{
    background-blend-mode: overlay !important;
  }

  .light-mode\:u-bg-blend-darken{
    background-blend-mode: darken !important;
  }

  .light-mode\:u-bg-blend-lighten{
    background-blend-mode: lighten !important;
  }

  .light-mode\:u-bg-blend-color-dodge{
    background-blend-mode: color-dodge !important;
  }

  .light-mode\:u-bg-blend-color-burn{
    background-blend-mode: color-burn !important;
  }

  .light-mode\:u-bg-blend-hard-light{
    background-blend-mode: hard-light !important;
  }

  .light-mode\:u-bg-blend-soft-light{
    background-blend-mode: soft-light !important;
  }

  .light-mode\:u-bg-blend-difference{
    background-blend-mode: difference !important;
  }

  .light-mode\:u-bg-blend-exclusion{
    background-blend-mode: exclusion !important;
  }

  .light-mode\:u-bg-blend-hue{
    background-blend-mode: hue !important;
  }

  .light-mode\:u-bg-blend-saturation{
    background-blend-mode: saturation !important;
  }

  .light-mode\:u-bg-blend-color{
    background-blend-mode: color !important;
  }

  .light-mode\:u-bg-blend-luminosity{
    background-blend-mode: luminosity !important;
  }

  .light-mode\:u-mix-blend-normal{
    mix-blend-mode: normal !important;
  }

  .light-mode\:u-mix-blend-multiply{
    mix-blend-mode: multiply !important;
  }

  .light-mode\:u-mix-blend-screen{
    mix-blend-mode: screen !important;
  }

  .light-mode\:u-mix-blend-overlay{
    mix-blend-mode: overlay !important;
  }

  .light-mode\:u-mix-blend-darken{
    mix-blend-mode: darken !important;
  }

  .light-mode\:u-mix-blend-lighten{
    mix-blend-mode: lighten !important;
  }

  .light-mode\:u-mix-blend-color-dodge{
    mix-blend-mode: color-dodge !important;
  }

  .light-mode\:u-mix-blend-color-burn{
    mix-blend-mode: color-burn !important;
  }

  .light-mode\:u-mix-blend-hard-light{
    mix-blend-mode: hard-light !important;
  }

  .light-mode\:u-mix-blend-soft-light{
    mix-blend-mode: soft-light !important;
  }

  .light-mode\:u-mix-blend-difference{
    mix-blend-mode: difference !important;
  }

  .light-mode\:u-mix-blend-exclusion{
    mix-blend-mode: exclusion !important;
  }

  .light-mode\:u-mix-blend-hue{
    mix-blend-mode: hue !important;
  }

  .light-mode\:u-mix-blend-saturation{
    mix-blend-mode: saturation !important;
  }

  .light-mode\:u-mix-blend-color{
    mix-blend-mode: color !important;
  }

  .light-mode\:u-mix-blend-luminosity{
    mix-blend-mode: luminosity !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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 .light-mode\: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 .light-mode\: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 .light-mode\: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 .light-mode\: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 .light-mode\: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 .light-mode\: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 .light-mode\: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 .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .light-mode\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .light-mode\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .light-mode\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .light-mode\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .light-mode\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .light-mode\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .light-mode\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .light-mode\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .light-mode\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .light-mode\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .light-mode\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .light-mode\: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;
  }

  .light-mode\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(93, 177, 59, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(2, 81, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(96, 160, 53, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 251, 247, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 244, 241, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(216, 210, 205, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 187, 178, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(98, 92, 87, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(27, 21, 15, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .light-mode\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .light-mode\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .light-mode\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .light-mode\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .light-mode\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .light-mode\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .light-mode\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .light-mode\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .light-mode\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .light-mode\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .light-mode\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .light-mode\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .light-mode\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .light-mode\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .light-mode\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .light-mode\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .light-mode\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .light-mode\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .light-mode\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .light-mode\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .light-mode\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .light-mode\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .light-mode\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .light-mode\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .light-mode\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .light-mode\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .light-mode\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .light-mode\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .light-mode\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .light-mode\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .light-mode\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .light-mode\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .light-mode\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .light-mode\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .light-mode\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .light-mode\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .light-mode\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .light-mode\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .light-mode\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .light-mode\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .light-mode\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .light-mode\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .light-mode\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .light-mode\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .light-mode\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .light-mode\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .light-mode\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .light-mode\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .light-mode\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:u-ring-offset-success{
    --tw-ring-offset-color: #60a035 !important;
  }

  .light-mode\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .light-mode\:u-ring-offset-neutral-0{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .light-mode\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .light-mode\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .light-mode\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .light-mode\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .light-mode\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .light-mode\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .light-mode\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #625C57 !important;
  }

  .light-mode\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #1B150F !important;
  }

  .light-mode\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .light-mode\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #60a035 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-0:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #625C57 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #1B150F !important;
  }

  .light-mode\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .light-mode\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .light-mode\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #025157 !important;
  }

  .light-mode\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #60a035 !important;
  }

  .light-mode\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-0:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #FFFBF7 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #F7F4F1 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D8D2CD !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C4BBB2 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #625C57 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #1B150F !important;
  }

  .light-mode\: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;
  }

  .light-mode\:u-filter-none{
    filter: none !important;
  }

  .light-mode\:u-blur-0{
    --tw-blur: blur(0) !important;
  }

  .light-mode\:u-blur-none{
    --tw-blur: blur(0) !important;
  }

  .light-mode\:u-blur-sm{
    --tw-blur: blur(4px) !important;
  }

  .light-mode\:u-blur{
    --tw-blur: blur(8px) !important;
  }

  .light-mode\:u-blur-md{
    --tw-blur: blur(12px) !important;
  }

  .light-mode\:u-blur-lg{
    --tw-blur: blur(16px) !important;
  }

  .light-mode\:u-blur-xl{
    --tw-blur: blur(24px) !important;
  }

  .light-mode\:u-blur-2xl{
    --tw-blur: blur(40px) !important;
  }

  .light-mode\:u-blur-3xl{
    --tw-blur: blur(64px) !important;
  }

  .light-mode\:u-brightness-0{
    --tw-brightness: brightness(0) !important;
  }

  .light-mode\:u-brightness-50{
    --tw-brightness: brightness(.5) !important;
  }

  .light-mode\:u-brightness-75{
    --tw-brightness: brightness(.75) !important;
  }

  .light-mode\:u-brightness-90{
    --tw-brightness: brightness(.9) !important;
  }

  .light-mode\:u-brightness-95{
    --tw-brightness: brightness(.95) !important;
  }

  .light-mode\:u-brightness-100{
    --tw-brightness: brightness(1) !important;
  }

  .light-mode\:u-brightness-105{
    --tw-brightness: brightness(1.05) !important;
  }

  .light-mode\:u-brightness-110{
    --tw-brightness: brightness(1.1) !important;
  }

  .light-mode\:u-brightness-125{
    --tw-brightness: brightness(1.25) !important;
  }

  .light-mode\:u-brightness-150{
    --tw-brightness: brightness(1.5) !important;
  }

  .light-mode\:u-brightness-200{
    --tw-brightness: brightness(2) !important;
  }

  .light-mode\:u-contrast-0{
    --tw-contrast: contrast(0) !important;
  }

  .light-mode\:u-contrast-50{
    --tw-contrast: contrast(.5) !important;
  }

  .light-mode\:u-contrast-75{
    --tw-contrast: contrast(.75) !important;
  }

  .light-mode\:u-contrast-100{
    --tw-contrast: contrast(1) !important;
  }

  .light-mode\:u-contrast-125{
    --tw-contrast: contrast(1.25) !important;
  }

  .light-mode\:u-contrast-150{
    --tw-contrast: contrast(1.5) !important;
  }

  .light-mode\:u-contrast-200{
    --tw-contrast: contrast(2) !important;
  }

  .light-mode\:u-drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\: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;
  }

  .light-mode\:u-drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
  }

  .light-mode\:u-drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000) !important;
  }

  .light-mode\:u-grayscale-0{
    --tw-grayscale: grayscale(0) !important;
  }

  .light-mode\:u-grayscale{
    --tw-grayscale: grayscale(100%) !important;
  }

  .light-mode\:u-hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg) !important;
  }

  .light-mode\:u-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg) !important;
  }

  .light-mode\:u-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg) !important;
  }

  .light-mode\:u-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg) !important;
  }

  .light-mode\:u-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg) !important;
  }

  .light-mode\:u-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg) !important;
  }

  .light-mode\:u--hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg) !important;
  }

  .light-mode\:u--hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg) !important;
  }

  .light-mode\:u--hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg) !important;
  }

  .light-mode\:u--hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg) !important;
  }

  .light-mode\:u--hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg) !important;
  }

  .light-mode\:u-invert-0{
    --tw-invert: invert(0) !important;
  }

  .light-mode\:u-invert{
    --tw-invert: invert(100%) !important;
  }

  .light-mode\:u-saturate-0{
    --tw-saturate: saturate(0) !important;
  }

  .light-mode\:u-saturate-50{
    --tw-saturate: saturate(.5) !important;
  }

  .light-mode\:u-saturate-100{
    --tw-saturate: saturate(1) !important;
  }

  .light-mode\:u-saturate-150{
    --tw-saturate: saturate(1.5) !important;
  }

  .light-mode\:u-saturate-200{
    --tw-saturate: saturate(2) !important;
  }

  .light-mode\:u-sepia-0{
    --tw-sepia: sepia(0) !important;
  }

  .light-mode\:u-sepia{
    --tw-sepia: sepia(100%) !important;
  }

  .light-mode\: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;
    -webkit-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;
            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;
  }

  .light-mode\:u-backdrop-filter-none{
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }

  .light-mode\:u-backdrop-blur-0{
    --tw-backdrop-blur: blur(0) !important;
  }

  .light-mode\:u-backdrop-blur-none{
    --tw-backdrop-blur: blur(0) !important;
  }

  .light-mode\:u-backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px) !important;
  }

  .light-mode\:u-backdrop-blur{
    --tw-backdrop-blur: blur(8px) !important;
  }

  .light-mode\:u-backdrop-blur-md{
    --tw-backdrop-blur: blur(12px) !important;
  }

  .light-mode\:u-backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px) !important;
  }

  .light-mode\:u-backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px) !important;
  }

  .light-mode\:u-backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px) !important;
  }

  .light-mode\:u-backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px) !important;
  }

  .light-mode\:u-backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0) !important;
  }

  .light-mode\:u-backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5) !important;
  }

  .light-mode\:u-backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75) !important;
  }

  .light-mode\:u-backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9) !important;
  }

  .light-mode\:u-backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95) !important;
  }

  .light-mode\:u-backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1) !important;
  }

  .light-mode\:u-backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05) !important;
  }

  .light-mode\:u-backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1) !important;
  }

  .light-mode\:u-backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25) !important;
  }

  .light-mode\:u-backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5) !important;
  }

  .light-mode\:u-backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2) !important;
  }

  .light-mode\:u-backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0) !important;
  }

  .light-mode\:u-backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5) !important;
  }

  .light-mode\:u-backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75) !important;
  }

  .light-mode\:u-backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1) !important;
  }

  .light-mode\:u-backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25) !important;
  }

  .light-mode\:u-backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5) !important;
  }

  .light-mode\:u-backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2) !important;
  }

  .light-mode\:u-backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0) !important;
  }

  .light-mode\:u-backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%) !important;
  }

  .light-mode\:u-backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg) !important;
  }

  .light-mode\:u-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg) !important;
  }

  .light-mode\:u-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg) !important;
  }

  .light-mode\:u-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg) !important;
  }

  .light-mode\:u-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg) !important;
  }

  .light-mode\:u-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg) !important;
  }

  .light-mode\:u--backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important;
  }

  .light-mode\:u--backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important;
  }

  .light-mode\:u--backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important;
  }

  .light-mode\:u--backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important;
  }

  .light-mode\:u--backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important;
  }

  .light-mode\:u-backdrop-invert-0{
    --tw-backdrop-invert: invert(0) !important;
  }

  .light-mode\:u-backdrop-invert{
    --tw-backdrop-invert: invert(100%) !important;
  }

  .light-mode\:u-backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0) !important;
  }

  .light-mode\:u-backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05) !important;
  }

  .light-mode\:u-backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1) !important;
  }

  .light-mode\:u-backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2) !important;
  }

  .light-mode\:u-backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25) !important;
  }

  .light-mode\:u-backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3) !important;
  }

  .light-mode\:u-backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4) !important;
  }

  .light-mode\:u-backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5) !important;
  }

  .light-mode\:u-backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6) !important;
  }

  .light-mode\:u-backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7) !important;
  }

  .light-mode\:u-backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75) !important;
  }

  .light-mode\:u-backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8) !important;
  }

  .light-mode\:u-backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9) !important;
  }

  .light-mode\:u-backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95) !important;
  }

  .light-mode\:u-backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1) !important;
  }

  .light-mode\:u-backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0) !important;
  }

  .light-mode\:u-backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5) !important;
  }

  .light-mode\:u-backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1) !important;
  }

  .light-mode\:u-backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5) !important;
  }

  .light-mode\:u-backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2) !important;
  }

  .light-mode\:u-backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0) !important;
  }

  .light-mode\:u-backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%) !important;
  }

  .light-mode\:u-transition-none{
    transition-property: none !important;
  }

  .light-mode\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .light-mode\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .light-mode\: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;
  }

  .light-mode\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .light-mode\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .light-mode\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .light-mode\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .light-mode\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .light-mode\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .light-mode\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .light-mode\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .light-mode\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .light-mode\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .light-mode\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .light-mode\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .light-mode\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .light-mode\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .light-mode\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .light-mode\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .light-mode\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .light-mode\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .light-mode\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .light-mode\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .light-mode\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .light-mode\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .light-mode\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}
