@import url(https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap);
@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;
}

.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(240, 249, 237, var(--tw-divide-opacity)) !important;
}

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

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

.u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-divide-opacity)) !important;
}

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

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

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

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

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

.u-divide-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(240, 249, 237, var(--tw-border-opacity)) !important;
}

.u-border-primary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
}

.u-border-primary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
}

.u-border-primary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
}

.u-border-primary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
}

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

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

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

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

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

.u-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(240, 249, 237, var(--tw-border-opacity)) !important;
}

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

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

.u-group:hover .group-hover\:u-border-primary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-15{
  --tw-border-opacity: 1 !important;
  border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
}

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

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

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

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

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

.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(240, 249, 237, var(--tw-border-opacity)) !important;
}

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

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

.focus-within\:u-border-primary-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
}

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

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

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

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

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

.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(240, 249, 237, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-10:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
}

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

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

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

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

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

.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(240, 249, 237, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-10:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
}

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

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

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

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

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

.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(240, 249, 237, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

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

.u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-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(240, 249, 237, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-15{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

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

.u-group:hover .group-hover\:u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.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(240, 249, 237, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-10:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

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

.focus-within\:u-bg-neutral-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.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(240, 249, 237, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-10:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

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

.hover\:u-bg-neutral-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.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(240, 249, 237, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-10:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

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

.focus\:u-bg-neutral-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.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: #F0F9ED !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
}

.u-from-primary-10{
  --tw-gradient-from: #DBF0D2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
}

.u-from-primary-20{
  --tw-gradient-from: #B0DE9D !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
}

.u-from-primary-30{
  --tw-gradient-from: #84CC67 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
}

.u-from-primary-60{
  --tw-gradient-from: #315D1F !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
}

.u-from-neutral-15{
  --tw-gradient-from: #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: #e3e3e3 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.u-from-neutral-30{
  --tw-gradient-from: #D9D9D9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.u-from-neutral-40{
  --tw-gradient-from: #C1C1C1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.u-from-neutral-45{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.u-from-neutral-50{
  --tw-gradient-from: #484848 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
}

.u-from-neutral-60{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.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: #F0F9ED !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
}

.hover\:u-from-primary-10:hover{
  --tw-gradient-from: #DBF0D2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
}

.hover\:u-from-primary-20:hover{
  --tw-gradient-from: #B0DE9D !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
}

.hover\:u-from-primary-30:hover{
  --tw-gradient-from: #84CC67 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
}

.hover\:u-from-primary-60:hover{
  --tw-gradient-from: #315D1F !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
}

.hover\:u-from-neutral-15:hover{
  --tw-gradient-from: #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: #e3e3e3 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.hover\:u-from-neutral-30:hover{
  --tw-gradient-from: #D9D9D9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.hover\:u-from-neutral-40:hover{
  --tw-gradient-from: #C1C1C1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.hover\:u-from-neutral-45:hover{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.hover\:u-from-neutral-50:hover{
  --tw-gradient-from: #484848 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
}

.hover\:u-from-neutral-60:hover{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.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: #F0F9ED !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
}

.focus\:u-from-primary-10:focus{
  --tw-gradient-from: #DBF0D2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
}

.focus\:u-from-primary-20:focus{
  --tw-gradient-from: #B0DE9D !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
}

.focus\:u-from-primary-30:focus{
  --tw-gradient-from: #84CC67 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
}

.focus\:u-from-primary-60:focus{
  --tw-gradient-from: #315D1F !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
}

.focus\:u-from-neutral-15:focus{
  --tw-gradient-from: #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: #e3e3e3 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.focus\:u-from-neutral-30:focus{
  --tw-gradient-from: #D9D9D9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.focus\:u-from-neutral-40:focus{
  --tw-gradient-from: #C1C1C1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.focus\:u-from-neutral-45:focus{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.focus\:u-from-neutral-50:focus{
  --tw-gradient-from: #484848 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
}

.focus\:u-from-neutral-60:focus{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
}

.u-via-primary-10{
  --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
}

.u-via-primary-20{
  --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
}

.u-via-primary-30{
  --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
}

.u-via-primary-60{
  --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.u-via-neutral-30{
  --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.u-via-neutral-40{
  --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.u-via-neutral-45{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.u-via-neutral-50{
  --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
}

.u-via-neutral-60{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
}

.hover\:u-via-primary-10:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
}

.hover\:u-via-primary-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
}

.hover\:u-via-primary-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
}

.hover\:u-via-primary-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.hover\:u-via-neutral-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.hover\:u-via-neutral-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.hover\:u-via-neutral-45:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.hover\:u-via-neutral-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
}

.hover\:u-via-neutral-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
}

.focus\:u-via-primary-10:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
}

.focus\:u-via-primary-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
}

.focus\:u-via-primary-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
}

.focus\:u-via-primary-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.focus\:u-via-neutral-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.focus\:u-via-neutral-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.focus\:u-via-neutral-45:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.focus\:u-via-neutral-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
}

.focus\:u-via-neutral-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.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: #F0F9ED !important;
}

.u-to-primary-10{
  --tw-gradient-to: #DBF0D2 !important;
}

.u-to-primary-20{
  --tw-gradient-to: #B0DE9D !important;
}

.u-to-primary-30{
  --tw-gradient-to: #84CC67 !important;
}

.u-to-primary-40{
  --tw-gradient-to: #5DB13B !important;
}

.u-to-primary-50{
  --tw-gradient-to: #47872D !important;
}

.u-to-primary-60{
  --tw-gradient-to: #315D1F !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: #FAFAFA !important;
}

.u-to-neutral-15{
  --tw-gradient-to: #F5F5F5 !important;
}

.u-to-neutral-20{
  --tw-gradient-to: #e3e3e3 !important;
}

.u-to-neutral-30{
  --tw-gradient-to: #D9D9D9 !important;
}

.u-to-neutral-40{
  --tw-gradient-to: #C1C1C1 !important;
}

.u-to-neutral-45{
  --tw-gradient-to: #494949 !important;
}

.u-to-neutral-50{
  --tw-gradient-to: #484848 !important;
}

.u-to-neutral-60{
  --tw-gradient-to: #000000 !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: #F0F9ED !important;
}

.hover\:u-to-primary-10:hover{
  --tw-gradient-to: #DBF0D2 !important;
}

.hover\:u-to-primary-20:hover{
  --tw-gradient-to: #B0DE9D !important;
}

.hover\:u-to-primary-30:hover{
  --tw-gradient-to: #84CC67 !important;
}

.hover\:u-to-primary-40:hover{
  --tw-gradient-to: #5DB13B !important;
}

.hover\:u-to-primary-50:hover{
  --tw-gradient-to: #47872D !important;
}

.hover\:u-to-primary-60:hover{
  --tw-gradient-to: #315D1F !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: #FAFAFA !important;
}

.hover\:u-to-neutral-15:hover{
  --tw-gradient-to: #F5F5F5 !important;
}

.hover\:u-to-neutral-20:hover{
  --tw-gradient-to: #e3e3e3 !important;
}

.hover\:u-to-neutral-30:hover{
  --tw-gradient-to: #D9D9D9 !important;
}

.hover\:u-to-neutral-40:hover{
  --tw-gradient-to: #C1C1C1 !important;
}

.hover\:u-to-neutral-45:hover{
  --tw-gradient-to: #494949 !important;
}

.hover\:u-to-neutral-50:hover{
  --tw-gradient-to: #484848 !important;
}

.hover\:u-to-neutral-60:hover{
  --tw-gradient-to: #000000 !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: #F0F9ED !important;
}

.focus\:u-to-primary-10:focus{
  --tw-gradient-to: #DBF0D2 !important;
}

.focus\:u-to-primary-20:focus{
  --tw-gradient-to: #B0DE9D !important;
}

.focus\:u-to-primary-30:focus{
  --tw-gradient-to: #84CC67 !important;
}

.focus\:u-to-primary-40:focus{
  --tw-gradient-to: #5DB13B !important;
}

.focus\:u-to-primary-50:focus{
  --tw-gradient-to: #47872D !important;
}

.focus\:u-to-primary-60:focus{
  --tw-gradient-to: #315D1F !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: #FAFAFA !important;
}

.focus\:u-to-neutral-15:focus{
  --tw-gradient-to: #F5F5F5 !important;
}

.focus\:u-to-neutral-20:focus{
  --tw-gradient-to: #e3e3e3 !important;
}

.focus\:u-to-neutral-30:focus{
  --tw-gradient-to: #D9D9D9 !important;
}

.focus\:u-to-neutral-40:focus{
  --tw-gradient-to: #C1C1C1 !important;
}

.focus\:u-to-neutral-45:focus{
  --tw-gradient-to: #494949 !important;
}

.focus\:u-to-neutral-50:focus{
  --tw-gradient-to: #484848 !important;
}

.focus\:u-to-neutral-60:focus{
  --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
}

.u-text-primary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
}

.u-text-primary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
}

.u-text-primary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
}

.u-text-primary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
}

.u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

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

.u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
}

.u-text-neutral-60{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-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(240, 249, 237, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

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

.u-group:hover .group-hover\:u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
}

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

.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(240, 249, 237, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-10:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

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

.focus-within\:u-text-neutral-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
}

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

.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(240, 249, 237, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-10:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

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

.hover\:u-text-neutral-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
}

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

.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(240, 249, 237, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-10:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

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

.focus\:u-text-neutral-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
}

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

.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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-0::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-15::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

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

.u-placeholder-neutral-45::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-0:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

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

.focus\:u-placeholder-neutral-45:focus::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

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

.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(240, 249, 237, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-10{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
}

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

.u-ring-neutral-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.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(240, 249, 237, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-10:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-15:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
}

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

.focus-within\:u-ring-neutral-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
}

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

.focus\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-10:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
}

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

.focus\:u-ring-neutral-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
}

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

.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: #F0F9ED !important;
}

.u-ring-offset-primary-10{
  --tw-ring-offset-color: #DBF0D2 !important;
}

.u-ring-offset-primary-20{
  --tw-ring-offset-color: #B0DE9D !important;
}

.u-ring-offset-primary-30{
  --tw-ring-offset-color: #84CC67 !important;
}

.u-ring-offset-primary-40{
  --tw-ring-offset-color: #5DB13B !important;
}

.u-ring-offset-primary-50{
  --tw-ring-offset-color: #47872D !important;
}

.u-ring-offset-primary-60{
  --tw-ring-offset-color: #315D1F !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: #FAFAFA !important;
}

.u-ring-offset-neutral-15{
  --tw-ring-offset-color: #F5F5F5 !important;
}

.u-ring-offset-neutral-20{
  --tw-ring-offset-color: #e3e3e3 !important;
}

.u-ring-offset-neutral-30{
  --tw-ring-offset-color: #D9D9D9 !important;
}

.u-ring-offset-neutral-40{
  --tw-ring-offset-color: #C1C1C1 !important;
}

.u-ring-offset-neutral-45{
  --tw-ring-offset-color: #494949 !important;
}

.u-ring-offset-neutral-50{
  --tw-ring-offset-color: #484848 !important;
}

.u-ring-offset-neutral-60{
  --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
}

.focus-within\:u-ring-offset-primary-10:focus-within{
  --tw-ring-offset-color: #DBF0D2 !important;
}

.focus-within\:u-ring-offset-primary-20:focus-within{
  --tw-ring-offset-color: #B0DE9D !important;
}

.focus-within\:u-ring-offset-primary-30:focus-within{
  --tw-ring-offset-color: #84CC67 !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: #47872D !important;
}

.focus-within\:u-ring-offset-primary-60:focus-within{
  --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
}

.focus-within\:u-ring-offset-neutral-30:focus-within{
  --tw-ring-offset-color: #D9D9D9 !important;
}

.focus-within\:u-ring-offset-neutral-40:focus-within{
  --tw-ring-offset-color: #C1C1C1 !important;
}

.focus-within\:u-ring-offset-neutral-45:focus-within{
  --tw-ring-offset-color: #494949 !important;
}

.focus-within\:u-ring-offset-neutral-50:focus-within{
  --tw-ring-offset-color: #484848 !important;
}

.focus-within\:u-ring-offset-neutral-60:focus-within{
  --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
}

.focus\:u-ring-offset-primary-10:focus{
  --tw-ring-offset-color: #DBF0D2 !important;
}

.focus\:u-ring-offset-primary-20:focus{
  --tw-ring-offset-color: #B0DE9D !important;
}

.focus\:u-ring-offset-primary-30:focus{
  --tw-ring-offset-color: #84CC67 !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: #47872D !important;
}

.focus\:u-ring-offset-primary-60:focus{
  --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
}

.focus\:u-ring-offset-neutral-30:focus{
  --tw-ring-offset-color: #D9D9D9 !important;
}

.focus\:u-ring-offset-neutral-40:focus{
  --tw-ring-offset-color: #C1C1C1 !important;
}

.focus\:u-ring-offset-neutral-45:focus{
  --tw-ring-offset-color: #494949 !important;
}

.focus\:u-ring-offset-neutral-50:focus{
  --tw-ring-offset-color: #484848 !important;
}

.focus\:u-ring-offset-neutral-60:focus{
  --tw-ring-offset-color: #000000 !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;
}

/* purgecss start ignore */

/*
  The next layer houses your globally available tooling – namely mixins and functions.
  Any mixin or function that does not need accessing globally should belong in the partial to which it relates.
  The Tools layer comes after the Settings layer because a mixin may require one of the global settings as a default parameter.

  Examples of global tools might be gradient mixins, font-sizing mixins and so on.
*/

/*
  The Generic layer is the first one that actually produces any CSS.
  It houses very high-level, far reaching styles. This layer is seldom modified, and is usually the same across any projects you work on.
  It contains things like Normalize.css, global box-sizing rules, CSS resets and so on.
  The Generic layer affects a lot of the DOM, hence it being nice and wide in the Triangle model, and occurring very early on.
*/

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: #FAFAFA;
  --neutral-20: #e3e3e3;
  --neutral-30: #D9D9D9;
  --neutral-40: #C1C1C1;
  --neutral-45: #494949;
  --neutral-50: #484848;
  --neutral-60: #000000;
  --secundary-00: #025157;
  --secundary-10: #025157;
  --secundary-20: #025157;
  --secundary-30: #025157;
  --secundary-40: #025157;
  --secundary-50: #025157;
  --secundary-60: #025157;
  --primary-00: #F0F9ED;
  --primary-10: #DBF0D2;
  --primary-20: #B0DE9D;
  --primary-30: #84CC67;
  --primary-40: #5DB13B;
  --primary-50: #47872D;
  --primary-60: #315D1F;
  --body-bg-color: var(--neutral-00);
  --body-color: var(--neutral-60);
  --body-color-faded: #818181;
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --color-info: #2373A9;
  --color-success: #2BD24E;
  --color-warning: #ae9434;
  --color-danger: #FD6262;
}

.is-light-mode :root, :root .is-light-mode {
  --neutral-00: #FFFFFF;
  --neutral-10: #FAFAFA;
  --neutral-20: #e3e3e3;
  --neutral-30: #D9D9D9;
  --neutral-40: #C1C1C1;
  --neutral-45: #494949;
  --neutral-50: #484848;
  --neutral-60: #000000;
}

.is-dark-mode :root, :root .is-dark-mode {
  --neutral-00: #121212;
  --neutral-10: #212121;
  --neutral-20: #292929;
  --neutral-30: #454545;
  --neutral-40: #adadad;
  --neutral-45: #dbdbdb;
  --neutral-50: #F8F8F8;
  --neutral-60: #f4f4f4;
  --body-color: var(--neutral-60);
  --box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
  --color-info: #288dd0;
  --color-success: #92cc68;
  --color-warning: #e4c442;
  --color-danger: #fc9797;
}

* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

body {
  font-family: Mukta, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  height: 100%;
  background: var(--neutral-00);
  color: var(--body-color);
}

.no-scroll body {
  overflow: hidden;
}

[v-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-family: Playfair Display, serif;
  font-weight: 600;
}

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, h3 {
  font-weight: 700;
}

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 {
  margin-top: 0.5rem;
  line-height: 2;
}

address:first-child {
  margin-top: 0;
}

::-moz-selection {
  background: var(--primary-20); /* WebKit/Blink Browsers */
}

::selection {
  background: var(--primary-20); /* WebKit/Blink Browsers */
}

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

/*
  USAGE:

  Always wrap a div in .grid__row.
  Use columns as .grid-<media>-<rows>, e.g. .grid-tablet-6
  Push columns like this: .grid-tablet-push-3

*/

.grid__container {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1280px;
  width: 100%;
}

.grid__row {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.grid__row--no-margin {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.grid__cell {
  flex: 1 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid--flex {
  display: flex;
}

.grid-smallest-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-1 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-smallest-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-2 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-smallest-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-3 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-3 {
    margin-left: 25%;
  }
}

.grid-smallest-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-4 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-smallest-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-5 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-smallest-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-6 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-6 {
    margin-left: 50%;
  }
}

.grid-smallest-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-7 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-smallest-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-8 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-smallest-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-9 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-9 {
    margin-left: 75%;
  }
}

.grid-smallest-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-10 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-smallest-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-11 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-smallest-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 250px) {
  .grid-smallest-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-smallest-push-0 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-0 {
    margin-left: 0%;
  }
}

.grid-smallest-push-12 {
  width: 100%;
}

@media (min-width: 250px) {
  .grid-smallest-push-12 {
    margin-left: 100%;
  }
}

.grid-mobile-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-1 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-mobile-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-2 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-mobile-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-3 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-3 {
    margin-left: 25%;
  }
}

.grid-mobile-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-4 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-mobile-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-5 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-mobile-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-6 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-6 {
    margin-left: 50%;
  }
}

.grid-mobile-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-7 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-mobile-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-8 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-mobile-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-9 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-9 {
    margin-left: 75%;
  }
}

.grid-mobile-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-10 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-mobile-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-11 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-mobile-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 320px) {
  .grid-mobile-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-mobile-push-0 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-push-12 {
  width: 100%;
}

@media (min-width: 320px) {
  .grid-mobile-push-12 {
    margin-left: 100%;
  }
}

.grid-mobile-large-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-1 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-mobile-large-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-2 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-mobile-large-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-3 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-3 {
    margin-left: 25%;
  }
}

.grid-mobile-large-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-4 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-mobile-large-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-5 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-mobile-large-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-6 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-6 {
    margin-left: 50%;
  }
}

.grid-mobile-large-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-7 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-mobile-large-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-8 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-mobile-large-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-9 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-9 {
    margin-left: 75%;
  }
}

.grid-mobile-large-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-10 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-mobile-large-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-11 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-mobile-large-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 450px) {
  .grid-mobile-large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-mobile-large-push-0 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-0 {
    margin-left: 0%;
  }
}

.grid-mobile-large-push-12 {
  width: 100%;
}

@media (min-width: 450px) {
  .grid-mobile-large-push-12 {
    margin-left: 100%;
  }
}

.grid-tablet-small-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-1 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-tablet-small-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-2 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-tablet-small-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-3 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-3 {
    margin-left: 25%;
  }
}

.grid-tablet-small-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-4 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-tablet-small-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-5 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-tablet-small-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-6 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-6 {
    margin-left: 50%;
  }
}

.grid-tablet-small-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-7 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-tablet-small-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-8 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-tablet-small-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-9 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-9 {
    margin-left: 75%;
  }
}

.grid-tablet-small-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-10 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-tablet-small-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-11 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-tablet-small-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .grid-tablet-small-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-tablet-small-push-0 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-small-push-12 {
  width: 100%;
}

@media (min-width: 600px) {
  .grid-tablet-small-push-12 {
    margin-left: 100%;
  }
}

.grid-tablet-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-1 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-tablet-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-2 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-tablet-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-3 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-3 {
    margin-left: 25%;
  }
}

.grid-tablet-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-4 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-tablet-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-5 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-tablet-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-6 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-6 {
    margin-left: 50%;
  }
}

.grid-tablet-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-7 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-tablet-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-8 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-tablet-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-9 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-9 {
    margin-left: 75%;
  }
}

.grid-tablet-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-10 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-tablet-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-11 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-tablet-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .grid-tablet-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-tablet-push-0 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-push-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .grid-tablet-push-12 {
    margin-left: 100%;
  }
}

.grid-tablet-large-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-1 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-tablet-large-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-2 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-tablet-large-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-3 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-3 {
    margin-left: 25%;
  }
}

.grid-tablet-large-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-4 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-tablet-large-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-5 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-tablet-large-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-6 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-6 {
    margin-left: 50%;
  }
}

.grid-tablet-large-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-7 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-tablet-large-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-8 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-tablet-large-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-9 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-9 {
    margin-left: 75%;
  }
}

.grid-tablet-large-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-10 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-tablet-large-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-11 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-tablet-large-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 900px) {
  .grid-tablet-large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-tablet-large-push-0 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-0 {
    margin-left: 0%;
  }
}

.grid-tablet-large-push-12 {
  width: 100%;
}

@media (min-width: 900px) {
  .grid-tablet-large-push-12 {
    margin-left: 100%;
  }
}

.grid-desktop-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-1 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-desktop-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-2 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-desktop-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-3 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-3 {
    margin-left: 25%;
  }
}

.grid-desktop-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-4 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-desktop-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-5 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-desktop-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-6 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-6 {
    margin-left: 50%;
  }
}

.grid-desktop-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-7 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-desktop-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-8 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-desktop-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-9 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-9 {
    margin-left: 75%;
  }
}

.grid-desktop-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-10 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-desktop-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-11 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-desktop-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1280px) {
  .grid-desktop-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-desktop-push-0 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-0 {
    margin-left: 0%;
  }
}

.grid-desktop-push-12 {
  width: 100%;
}

@media (min-width: 1280px) {
  .grid-desktop-push-12 {
    margin-left: 100%;
  }
}

.grid-xl-1 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-1 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-1 {
    margin-left: 8.3333333333%;
  }
}

.grid-xl-2 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-2 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-2 {
    margin-left: 16.6666666667%;
  }
}

.grid-xl-3 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-3 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-3 {
    margin-left: 25%;
  }
}

.grid-xl-4 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-4 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-4 {
    margin-left: 33.3333333333%;
  }
}

.grid-xl-5 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-5 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-5 {
    margin-left: 41.6666666667%;
  }
}

.grid-xl-6 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-6 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-6 {
    margin-left: 50%;
  }
}

.grid-xl-7 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-7 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-7 {
    margin-left: 58.3333333333%;
  }
}

.grid-xl-8 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-8 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-8 {
    margin-left: 66.6666666667%;
  }
}

.grid-xl-9 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-9 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-9 {
    margin-left: 75%;
  }
}

.grid-xl-10 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-10 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-10 {
    margin-left: 83.3333333333%;
  }
}

.grid-xl-11 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-11 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-11 {
    margin-left: 91.6666666667%;
  }
}

.grid-xl-12 {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 1920px) {
  .grid-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.grid-xl-push-0 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-0 {
    margin-left: 0%;
  }
}

.grid-xl-push-12 {
  width: 100%;
}

@media (min-width: 1920px) {
  .grid-xl-push-12 {
    margin-left: 100%;
  }
}

.o-aside {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .o-aside {
    position: -webkit-sticky;
    position: sticky;
    top: 5.5rem;
    max-height: calc(100vh - 6rem);
    overflow: auto;
  }
}

.o-aside__back, .o-aside__head {
  margin-top: 2rem;
  padding: 0 1.5rem;
}

@media (min-width: 1280px) {
  .o-aside__back, .o-aside__head {
    margin-top: 5rem;
    padding: 0 0.5rem;
  }
}

.o-aside__back {
  margin-top: 1rem;
  transform: translateX(-0.5rem);
}

@media (min-width: 768px) {
  .o-aside__back {
    display: none;
  }
}

.o-aside__body {
  padding: 0 1.5rem;
}

.o-block {
  margin-top: 1rem;
}

.o-container {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1280px;
  width: 100%;
}

.o-container--no-margin {
  display: block;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.o-container--smallest {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 250px;
  width: 100%;
}

.o-container--smallest-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 250px;
  width: 100%;
}

.o-container--mobile {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 320px;
  width: 100%;
}

.o-container--mobile-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}

.o-container--mobile-large {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 450px;
  width: 100%;
}

.o-container--mobile-large-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}

.o-container--tablet-small {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 600px;
  width: 100%;
}

.o-container--tablet-small-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}

.o-container--tablet {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 768px;
  width: 100%;
}

.o-container--tablet-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 768px;
  width: 100%;
}

.o-container--tablet-large {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 900px;
  width: 100%;
}

.o-container--tablet-large-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.o-container--desktop {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1280px;
  width: 100%;
}

.o-container--desktop-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.o-container--xl {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1920px;
  width: 100%;
}

.o-container--xl-no-padding {
  display: block;
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
}

@media (min-width: 768px) {
  .o-container__half-wrapper--left {
    display: flex;
    justify-content: flex-end;
  }

  .o-container__half-wrapper--right {
    display: flex;
  }
}

.o-container--half-1 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 106.6666666667px;
  width: 100%;
  margin: 0;
}

.o-container--half-2 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 213.3333333333px;
  width: 100%;
  margin: 0;
}

.o-container--half-3 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 320px;
  width: 100%;
  margin: 0;
}

.o-container--half-4 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 426.6666666667px;
  width: 100%;
  margin: 0;
}

.o-container--half-5 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 533.3333333333px;
  width: 100%;
  margin: 0;
}

.o-container--half-6 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 640px;
  width: 100%;
  margin: 0;
}

.o-container--half-7 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 746.6666666667px;
  width: 100%;
  margin: 0;
}

.o-container--half-8 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 853.3333333333px;
  width: 100%;
  margin: 0;
}

.o-container--half-9 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 960px;
  width: 100%;
  margin: 0;
}

.o-container--half-10 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1066.6666666667px;
  width: 100%;
  margin: 0;
}

.o-container--half-11 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1173.3333333333px;
  width: 100%;
  margin: 0;
}

.o-container--half-12 {
  display: block;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 1280px;
  width: 100%;
  margin: 0;
}

/*

This object exists of an aside and main div. The aside div calculates the width of the breakpoint inside the $local-max-width container.
So with a grid width of 3, it first calculates the margin width from the side (100vw - $local-max-width) / 2. After this it adds the grid width of (e.g.) 3 columns.
The main div get's expand to the side.

The inside wrapper divs calculates the corresponding size and align left or right to mimic the container.

*/

.o-layout__page {
  width: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.o-layout__overlay {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--neutral-00);
  overflow: auto;
}

@media (min-width: 768px) {
  .o-layout--aside {
    display: flex;
    flex-grow: 1;
  }
}

.o-layout__aside {
  width: 100%;
  background: var(--neutral-00);
  width: 100%;
}

@media (min-width: 768px) {
  .o-layout__aside {
    flex: 0 0 calc((100vw - 1280px)/2 + 320px);
    max-width: calc((100vw - 1280px)/2 + 320px);
  }
}

@media (max-width: 1280px) {
  .o-layout__aside {
    width: 100%;
  }
}

@media (max-width: 1280px) and (min-width: 768px) {
  .o-layout__aside {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .o-layout--aside-left .o-layout__aside {
    display: flex;
    justify-content: flex-end;
    border-right: 1px solid var(--neutral-20);
  }
}

@media (min-width: 768px) {
  .o-layout--aside-right .o-layout__aside {
    border-left: 1px solid var(--neutral-20);
  }
}

@media (max-width: 768px) {
  .o-layout--is-not-mobile .o-layout__aside {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: none;
    overflow: auto;
    background: var(--neutral-00);
  }

  .o-layout--is-not-mobile.o-layout--menu-open .o-layout__aside {
    display: block;
  }
}

.o-layout--is-mobile .o-layout__aside {
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  transition: 600ms ease all;
}

.o-layout--is-mobile .o-layout__aside.aside-nav-enter-to, .o-layout--is-mobile .o-layout__aside.aside-nav-leave {
  opacity: 1;
  transform: translateX(0);
}

.o-layout--is-mobile .o-layout__aside.aside-nav-enter, .o-layout--is-mobile .o-layout__aside.aside-nav-leave-to {
  background: var(--neutral-00);
  transform: translateX(-20vw);
}

.o-layout--aside-big .o-layout__aside {
  width: 100%;
}

@media (min-width: 768px) {
  .o-layout--aside-big .o-layout__aside {
    flex: 0 0 calc((100vw - 1280px)/2 + 426.6666666667px);
    max-width: calc((100vw - 1280px)/2 + 426.6666666667px);
  }
}

@media (max-width: 1280px) {
  .o-layout--aside-big .o-layout__aside {
    width: 100%;
  }
}

@media (max-width: 1280px) and (min-width: 768px) {
  .o-layout--aside-big .o-layout__aside {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.o-layout__aside-wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 1280px) {
  .o-layout__aside-wrapper {
    width: 320px;
    margin: 0;
  }
}

.o-layout--aside-big .o-layout__aside-wrapper {
  width: 100%;
}

@media (min-width: 1280px) {
  .o-layout--aside-big .o-layout__aside-wrapper {
    width: 426.6666666667px;
    margin: 0;
  }
}

.o-layout__main {
  background: var(--neutral-10);
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 7.5rem;
}

@media (min-width: 768px) {
  .o-layout__main {
    padding: 0;
  }
}

.is-dark-mode .o-layout__main, .o-layout__main .is-dark-mode {
  background: var(--neutral-00);
}

@media (max-width: 768px) {
  .o-layout__main--no-mobile-bg {
    background: var(--neutral-00);
  }
}

.o-layout--is-mobile .o-layout__main {
  position: relative;
  min-height: 100vh;
  transition: 400ms ease all;
}

.o-layout--is-mobile .o-layout__main.main-enter-to, .o-layout--is-mobile .o-layout__main.main-leave {
  transform: translateX(0);
}

.o-layout--is-mobile .o-layout__main.main-enter, .o-layout--is-mobile .o-layout__main.main-leave-to {
  transform: translateX(100vw);
}

.o-layout__header {
  background: var(--neutral-00);
}

.is-dark-mode .o-layout__header, .o-layout__header .is-dark-mode {
  border-bottom: 1px solid var(--neutral-10);
}

.o-layout--aside-right .o-layout__header {
  display: flex;
  justify-content: flex-end;
}

.o-layout__head {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .o-layout__head {
    padding: 2rem 0;
  }
}

@media (min-width: 1280px) {
  .o-layout__head {
    padding: 5rem 0 2.5rem 0;
  }
}

.o-layout__nav {
  padding: 1rem;
  padding-bottom: 0;
}

@media (min-width: 900px) {
  .o-layout__nav {
    display: none;
  }
}

.o-layout--is-mobile .o-layout__nav {
  display: block;
}

.o-layout__main-wrapper, .o-layout__header-wrapper {
  width: 100%;
}

@media (min-width: 1280px) {
  .o-layout__main-wrapper, .o-layout__header-wrapper {
    width: 960px;
    margin: 0;
  }
}

.o-layout--aside-big .o-layout__main-wrapper, .o-layout--aside-big .o-layout__header-wrapper {
  width: 100%;
}

@media (min-width: 1280px) {
  .o-layout--aside-big .o-layout__main-wrapper, .o-layout--aside-big .o-layout__header-wrapper {
    width: 853.3333333333px;
    margin: 0;
  }
}

.o-layout--aside-right .o-layout__main-wrapper, .o-layout--aside-right .o-layout__header-wrapper {
  align-self: flex-end;
}

.o-layout__main-wrapper {
  flex-grow: 1;
}

.o-section {
  position: relative;
  margin-top: 2rem;
  display: inline-block;
  width: 100%;
}

@media (min-width: 1280px) {
  .o-section {
    margin-top: 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-auth-page {
  display: flex;
  width: 100vw;
  min-height: 100vh;
}

.c-auth-page__tab:focus {
  outline: none;
}

.c-auth-page__actions {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 1.5rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .c-auth-page__actions {
    flex: 0 0 600px;
    max-width: 600px;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 0;
  }
}

.c-auth-page--big-action .c-auth-page__actions {
  flex: 0 1 100vw;
  max-width: 100vw;
}

@media (min-width: 1280px) {
  .c-auth-page--big-action .c-auth-page__actions {
    flex: 0 1 70vw;
    max-width: 70vw;
  }
}

.c-auth-page__promoted {
  flex: 1 1 auto;
  background-image: linear-gradient(to bottom, #000000 0%, #000000 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF000000", endColorstr="#FF000000", GradientType=0);
  display: none;
  justify-content: center;
  padding: 5rem;
  padding-top: 14rem;
  background-size: cover;
  background-position: center;
}

.c-auth-page--big-action .c-auth-page__promoted {
  flex: 1 1 30vw;
  max-width: 30vw;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1280px) {
  .c-auth-page__promoted {
    display: flex;
  }
}

.c-auth-page__promoted-wrapper {
  max-width: 768px;
}

.c-auth-page__form-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  border-top: 1px solid var(--neutral-20);
  background: var(--body-bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .c-auth-page__form-actions {
    position: relative;
    border: none;
    padding: 0;
    margin-bottom: 2.5rem;
    margin-top: 3rem;
  }
}

.c-achievements__item {
  display: flex;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.c-achievements__item:after {
  content: "";
  border-bottom: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

.is-dark-mode .c-achievements__item:after, .c-achievements__item .is-dark-mode:after {
  content: "";
  border-bottom: 1px solid var(--neutral-30);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

.c-achievements__time {
  display: block;
  font-size: 0.75rem;
  color: var(--body-color-faded);
}

.c-achievements__points {
  flex: 1 0 3.5rem;
  max-width: 3.5rem;
  color: var(--color-success);
  font-weight: bold;
}

.c-achievements__body {
  flex: 1 1 auto;
  padding-left: 1rem;
}

.c-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--neutral-00);
  display: inline-flex;
}

.is-dark-mode .c-avatar, .c-avatar .is-dark-mode {
  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-avatar-upload__avatar {
  width: 5rem;
  height: 5rem;
  border: 4px solid transparent;
  position: relative;
  box-sizing: content-box;
  border-radius: 100%;
}

.c-avatar-upload:hover .c-avatar-upload__avatar {
  border: 4px solid var(--neutral-20);
}

.c-avatar-upload__avatar.is-loading {
  position: relative;
  border: 4px solid var(--neutral-20);
  border-radius: 100%;
  transition: 300ms ease all;
}

.c-avatar-upload__avatar.is-loading:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 1;
  border: 4px solid transparent;
  border-top-color: var(--primary-40);
  -webkit-animation: loading 1.1s infinite linear;
          animation: loading 1.1s infinite linear;
}

.c-avatar-upload__avatar:after {
  position: absolute;
  z-index: 2;
  top: -0.5rem;
  right: -0.5rem;
  content: "\f040";
  font-family: "Font Awesome 5 Pro";
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  background: var(--primary-40);
}

.c-avatar-upload__trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
}

@media (min-width: 768px) {
  .c-avatar-upload__trigger {
    display: inline-flex;
    flex-direction: row;
  }
}

.c-avatar-upload__label {
  font-weight: bold;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.c-avatar-upload__filepath {
  display: block;
  font-weight: normal;
}

.c-avatar-upload__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

@-webkit-keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.c-bar-bottom {
  position: fixed;
  bottom: 0;
  z-index: 10;
  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);
  overflow: hidden;
}

.c-bar-bottom.bar-toggle-enter, .c-bar-bottom.bar-toggle-leave-to {
  max-height: 0;
  overflow: hidden;
}

.c-bar-bottom--action {
  height: calc(100% - 4em);
}

.c-bar-bottom--action.bar-toggle-enter-to, .c-bar-bottom--action.bar-toggle-leave {
  max-height: none;
  height: calc(100% - 4em);
}

.c-bar-bottom--action.bar-toggle-enter, .c-bar-bottom--action.bar-toggle-leave-to {
  max-height: none;
  height: 0;
}

.c-bar-bottom__wrapper {
  z-index: 1;
  width: 100%;
  background: var(--neutral-00);
  border-radius: 2rem 2rem 0 0;
  box-shadow: var(--box-shadow);
  pointer-events: all;
  max-height: calc(100vh - 7em);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
}

.is-dark-mode .c-bar-bottom__wrapper, .c-bar-bottom__wrapper .is-dark-mode {
  background: var(--neutral-20);
}

.c-bar-bottom--is-ios .c-bar-bottom__wrapper {
  justify-content: normal;
  padding-bottom: 1rem;
}

.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-bar-top {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  background: var(--neutral-00);
  width: 600px;
  max-width: 100vw;
  max-height: calc(80vh - 7em);
  overflow: auto;
  transition: 600ms ease all;
}

.is-dark-mode .c-bar-top, .c-bar-top .is-dark-mode {
  background: var(--neutral-20);
}

.c-bar-top__footer {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: var(--neutral-00);
}

.is-dark-mode .c-bar-top__footer, .c-bar-top__footer .is-dark-mode {
  background: var(--neutral-20);
}

.c-bar-top.bar-toggle-enter-active, .c-bar-top.bar-toggle-leave-active {
  transition: 600ms ease all;
}

.c-bar-top.bar-toggle-enter-to, .c-bar-top.bar-toggle-leave {
  max-height: calc(80vh - 7em);
  overflow: hidden;
}

.c-bar-top.bar-toggle-enter, .c-bar-top.bar-toggle-leave-to {
  max-height: 0;
  overflow: hidden;
}

.c-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  border-radius: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 600;
  background: transparent;
  line-height: 1.3em;
}

@media (min-width: 768px) {
  .c-btn {
    font-size: 1rem;
  }
}

.c-btn[disabled] {
  opacity: 0.7;
  cursor: default;
}

.c-btn.has-badge:after {
  content: attr(data-qty);
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  height: 1.5rem;
  background: var(--secundary-40);
  color: white;
  padding: 0 0.5rem;
  border-radius: 1.5rem;
  font-weight: bold;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-btn\@tablet {
  display: none;
}

@media (min-width: 768px) {
  .c-btn\@tablet {
    display: inline;
  }
}

.c-btn--fixedw {
  width: 15rem;
}

.c-btn--diapos {
  border-color: var(--neutral-00);
  color: var(--neutral-00);
}

.c-btn--primary {
  background: var(--primary-40);
  color: white;
}

.c-btn--primary.c-btn--diapos {
  border: none;
  color: white;
}

.c-btn--primary:hover {
  text-decoration: none;
  background: var(--primary-50) !important;
  border-color: var(--primary-50) !important;
  color: white !important;
}

.c-btn--primary > i.fal {
  margin-right: 0.25rem;
}

.c-btn--warning {
  background: var(--color-warning);
  color: var(--neutral-00);
}

.c-btn--warning:hover {
  text-decoration: none;
  background: var(--color-warning) !important;
}

.c-btn--default {
  background: transparent;
  color: var(--neutral-60);
  border: 2px solid var(--neutral-30);
}

.c-btn--default.c-btn--diapos {
  border: 1px solid var(--neutral-00);
  background: transparent;
  color: var(--neutral-00);
}

.c-btn--default.c-btn--black {
  border: 1px solid var(--neutral-50);
  background: transparent;
  color: var(--neutral-50);
}

.c-btn--default.c-btn--white {
  border: 1px solid white;
  background: transparent;
  color: white;
}

.c-btn--default.c-btn--success {
  border: 1px solid var(--color-success);
  background: transparent;
  color: var(--color-success);
}

.c-btn--default.router-link-exact-active {
  background: var(--primary-40);
  border-color: var(--primary-40);
}

.c-btn--default:hover {
  text-decoration: none;
  background: var(--primary-50) !important;
  border-color: var(--primary-50) !important;
  color: white !important;
}

.c-btn--default > i.fal {
  margin-right: 0.25rem;
}

.c-btn--action {
  background: var(--neutral-30);
  color: var(--neutral-60);
  border: 2px solid var(--neutral-30);
}

.c-btn--icon {
  height: 2rem;
  min-width: 2rem;
  border-radius: 2rem;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.c-btn--icon:hover {
  text-decoration: none;
  background: var(--neutral-10);
}

.is-dark-mode .c-btn--icon:hover, .c-btn--icon:hover .is-dark-mode {
  background: var(--neutral-20);
}

.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.75rem;
}

.c-btn--icon.c-btn--success {
  border: 1px solid var(--color-success);
  background: var(--color-success);
  color: white;
}

.c-btn--icon > i.fal {
  margin-right: 0;
}

.c-btn--icon-big {
  height: 5rem;
  min-width: 5rem;
  border-radius: 5rem;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: white;
  border: 2px solid white;
}

.c-btn--icon-big:hover, .c-btn--icon-big:focus {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.4);
}

.c-btn--icon-text {
  font-weight: normal;
}

.c-btn--lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.c-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.c-btn--block {
  display: block;
  width: 100%;
}

.c-btn--text {
  background: transparent;
  border: none;
  text-decoration: underline;
}

.c-btn--text:hover {
  text-decoration: none;
}

.c-btn--text.c-btn--diapos {
  color: var(--neutral-00);
}

.c-btn--text > i.fal {
  margin-right: 0.25rem;
}

.c-btn__badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  pointer-events: none;
}

.c-btn__icon {
  margin-right: 0.25rem;
}

.c-btn--default .c-btn__icon {
  color: var(--neutral-50);
}

.c-btn--default.c-btn--diapos .c-btn__icon {
  color: var(--primary-40);
}

.c-btn--default:hover .c-btn__icon {
  color: var(--neutral-00);
}

.c-btn--faded {
  color: var(--neutral-45);
  background: var(--neutral-30);
}

.c-btn--faded.c-btn--diapos {
  background: var(--neutral-00);
  color: var(--neutral-45);
  border: none;
}

.c-btn--faded:hover {
  text-decoration: none;
  background: var(--neutral-40) !important;
}

.c-btn__hide-input {
  display: none;
}

.c-btn:focus {
  outline: none;
}

.c-btn-reaction {
  display: inline-flex;
  height: 2rem;
  background: var(--neutral-00);
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 0 0.75rem;
  border-radius: 2rem;
  position: relative;
  z-index: 1;
  font-weight: normal;
}

.is-dark-mode .c-btn-reaction, .c-btn-reaction .is-dark-mode {
  box-shadow: none;
  background: var(--neutral-20);
}

@media (pointer: fine) {
  .c-btn-reaction:hover {
    text-decoration: none;
    cursor: pointer;
    background: var(--neutral-10);
  }

  .is-dark-mode .c-btn-reaction:hover, .c-btn-reaction:hover .is-dark-mode {
    background: var(--neutral-30);
  }

  .c-btn-reaction.c-btn-reaction--like:hover {
    background: var(--secundary-40);
    color: white;
  }
}

.c-btn-reaction:focus, .c-btn-reaction:hover {
  text-decoration: none;
}

.c-btn-reaction__icon {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-style: normal;
}

.c-btn-reaction--like .c-btn-reaction__icon {
  color: var(--secundary-40);
}

@media (pointer: fine) {
  .c-btn-reaction--like:hover .c-btn-reaction__icon {
    color: white;
  }
}

.is-liked .c-btn-reaction__icon {
  font-weight: 900;
}

.c-btn-reaction__count {
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.c-card {
  background: var(--neutral-00);
  padding-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--neutral-10);
  border-radius: 0;
}

@media (min-width: 768px) {
  .c-card {
    border-radius: 1rem;
  }
}

.c-card--keep-curves {
  border-radius: 1rem !important;
}

.c-card--big-top {
  border-radius: 0 0 2rem 2rem !important;
}

@media (min-width: 768px) {
  .c-card--big-top {
    border-radius: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

.is-dark-mode .c-card, .c-card .is-dark-mode {
  background: var(--neutral-10);
  box-shadow: none;
}

.c-card--vertical-center {
  justify-content: center;
}

@media (min-width: 768px) {
  .c-card {
    padding-bottom: 1.5rem;
  }
}

.c-card__header {
  padding: 1.5rem;
  padding-bottom: 0;
}

.c-card__heading {
  padding: 0 1.5rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .c-card__heading {
    padding-top: 1.5rem;
  }
}

.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;
}

.c-card__body {
  padding: 0 1.5rem;
  margin-top: 1rem;
}

.c-card__body:first-child {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .c-card__body:first-child {
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .c-card--big-top .c-card__body:first-child {
    margin-top: 2rem;
  }
}

.c-card__menu {
  margin-top: 1rem;
}

.c-card__form {
  padding-top: 1rem;
}

.c-card__footer {
  padding: 0 1.5rem;
  margin-top: 1rem;
}

.c-card--footer-center .c-card__footer {
  text-align: center;
}

.c-card__flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.c-card__block {
  margin-top: 1rem;
}

.c-card--primary {
  background-color: var(--primary-40);
  border-color: var(--primary-40);
}

.c-card--diapos {
  background-color: var(--neutral-60);
  border-color: var(--neutral-60);
}

.is-dark-mode .c-card--diapos, .c-card--diapos .is-dark-mode {
  background-color: var(--neutral-50);
  border-color: var(--neutral-50);
}

.c-checklist {
  margin: 0;
  list-style: none;
  padding: 0;
  display: inline-block;
}

.c-checklist--small {
  font-size: 0.75rem;
}

.c-checklist__item {
  margin-top: 0.5em;
  position: relative;
  padding-left: 2em;
  text-align: left;
}

.c-checklist__item:first-child {
  margin-top: 0;
}

.c-checklist__item:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: var(--primary-40);
  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-code {
  display: block;
  border: 1px solid var(--neutral-20);
  margin-top: 3rem;
  background: var(--neutral-00);
}

.is-dark-mode .c-code, .c-code .is-dark-mode {
  background: var(--neutral-10);
}

.c-code--transparent {
  background: transparent !important;
}

.c-code__example {
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .c-code__example {
    padding: 1.5rem;
  }
}

.c-code__code {
  background: var(--neutral-20);
  padding: 1.5rem;
  max-width: 100vw;
}

.c-code__code pre {
  max-width: 100%;
}

.c-code__dark {
  background: var(--neutral-50);
}

.c-code__code-title {
  padding-bottom: 0;
}

.c-comment {
  display: flex;
}

.c-comment__avatar {
  width: 2rem;
  height: 2rem;
  display: block;
  flex: 0 0 2rem;
  position: relative;
  z-index: 1;
}

.c-comment__comment {
  flex: 1 1 auto;
  overflow-x: hidden;
  margin-left: -1rem;
}

.c-comment__box {
  background: var(--neutral-10);
  padding-left: 1rem;
  border-radius: 0 1rem 1rem 1rem;
}

.is-dark-mode .c-comment__box, .c-comment__box .is-dark-mode {
  background: var(--neutral-20);
}

.c-comment.is-selected .c-comment__box {
  background: var(--primary-10);
}

.c-comment__meta {
  padding: 1rem;
  padding-bottom: 0;
  line-height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.c-comment__meta:hover {
  text-decoration: none;
}

.c-comment__author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-comment__body {
  padding: 1rem;
  word-break: break-word;
}

.c-comment__body [data-user-slug] {
  font-weight: 600;
  cursor: pointer;
}

.c-comment__body a {
  text-decoration: underline;
}

.c-comment__actions {
  display: flex;
  padding: 0 1rem;
}

.c-comment__actions-left, .c-comment__actions-right {
  flex: 1 0 auto;
}

.c-comment__actions-right {
  text-align: right;
}

.c-comment__divider {
  color: var(--neutral-45);
  font-size: 0.75rem;
}

.c-comment__divider:after {
  content: "|";
}

.c-comment__action {
  font-size: 0.75rem;
  color: var(--neutral-45);
  display: inline-block;
  padding: 0.5rem;
  cursor: pointer;
}

.c-comment__action--like {
  color: var(--secundary-40);
}

.c-comment__action.is-liked > i {
  font-weight: 900;
}

.c-comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-comment-list__item {
  margin-top: 1rem;
}

.c-comment-list__children {
  margin-left: 2.5rem;
}

.c-comment-list__reaction {
  margin-left: 1rem;
}

.c-comment-list__load-more {
  margin-left: 2.5rem;
  text-decoration: underline;
  display: block;
  text-align: center;
  font-size: 0.75rem;
}

.c-comment-list__load-more:hover {
  cursor: pointer;
}

.c-datepicker-icon-left:before,
.c-datepicker-icon-right:before,
.c-datepicker-icon-double-left:before,
.c-datepicker-icon-double-right:before,
.c-datepicker-icon-double-left:after,
.c-datepicker-icon-double-right:after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border-style: solid;
  border-color: currentColor;
  border-width: 2px 0 0 2px;
  border-radius: 1px;
  box-sizing: border-box;
  transform-origin: center;
  transform: rotate(-45deg) scale(0.7);
}

.c-datepicker-icon-double-left:after {
  left: -4px;
}

.c-datepicker-icon-double-right:before {
  left: 4px;
}

.c-datepicker-icon-right:before,
.c-datepicker-icon-double-right:before,
.c-datepicker-icon-double-right:after {
  transform: rotate(135deg) scale(0.7);
}

.c-datepicker-btn {
  box-sizing: border-box;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 15px;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: var(--neutral-50);
  white-space: nowrap;
}

.c-datepicker-btn:hover {
  border-color: var(--primary-40);
  color: var(--primary-40);
}

.c-datepicker-btn:disabled, .c-datepicker-btn.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.c-datepicker-btn-text {
  border: 0;
  padding: 0 4px;
  text-align: left;
  line-height: inherit;
}

.c-datepicker-scrollbar {
  height: 100%;
}

.c-datepicker-scrollbar:hover .c-datepicker-scrollbar-track {
  opacity: 1;
}

.c-datepicker-scrollbar-wrap {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.c-datepicker-scrollbar-track {
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  width: 6px;
  z-index: 1;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.24s ease-out;
}

.c-datepicker-scrollbar-track .c-datepicker-scrollbar-thumb {
  position: absolute;
  width: 100%;
  height: 0;
  cursor: pointer;
  border-radius: inherit;
  background-color: rgba(144, 147, 153, 0.3);
  transition: background-color 0.3s;
}

.c-datepicker-zoom-in-down-enter-active,
.c-datepicker-zoom-in-down-leave-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center top;
}

.c-datepicker-zoom-in-down-enter,
.c-datepicker-zoom-in-down-enter-from,
.c-datepicker-zoom-in-down-leave-to {
  opacity: 0;
  transform: scaleY(0);
}

.c-datepicker-datepicker {
  position: relative;
  display: inline-block;
  width: 210px;
}

.c-datepicker-datepicker svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.c-datepicker-datepicker-range {
  width: 320px;
}

.c-datepicker-datepicker-inline {
  width: auto;
}

.c-datepicker-input-wrapper {
  position: relative;
}

.c-datepicker-input-wrapper .c-datepicker-icon-clear {
  display: none;
}

.c-datepicker-input-wrapper:hover .c-datepicker-icon-clear {
  display: block;
}

.c-datepicker-input-wrapper:hover .c-datepicker-icon-clear + .c-datepicker-icon-calendar {
  display: none;
}

.c-datepicker-input {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 6px 30px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.c-datepicker-input:hover, .c-datepicker-input:focus {
  border-color: #409aff;
}

.c-datepicker-input:disabled, .c-datepicker-input.disabled {
  color: #ccc;
  background-color: #f3f3f3;
  border-color: #ccc;
  cursor: not-allowed;
}

.c-datepicker-input:focus {
  outline: none;
}

.c-datepicker-input::-ms-clear {
  display: none;
}

.c-datepicker-icon-calendar,
.c-datepicker-icon-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}

.c-datepicker-icon-clear {
  cursor: pointer;
}

.c-datepicker-icon-clear:hover {
  color: rgba(0, 0, 0, 0.8);
}

.c-datepicker-datepicker-main {
  font: 14px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif;
  color: var(--neutral-50);
  background-color: #fff;
  border: 1px solid var(--neutral-30);
}

.c-datepicker-datepicker-popup {
  position: absolute;
  margin-top: 1px;
  margin-bottom: 1px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 2001;
}

.c-datepicker-datepicker-sidebar {
  float: left;
  box-sizing: border-box;
  width: 100px;
  padding: 6px;
  overflow: auto;
}

.c-datepicker-datepicker-sidebar + .c-datepicker-datepicker-content {
  margin-left: 100px;
  border-left: 1px solid var(--neutral-30);
}

.c-datepicker-datepicker-body {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.c-datepicker-btn-shortcut {
  display: block;
  padding: 0 6px;
  line-height: 24px;
}

.c-datepicker-range-wrapper {
  display: flex;
}

@media (max-width: 750px) {
  .c-datepicker-range-wrapper {
    flex-direction: column;
  }
}

.c-datepicker-datepicker-header {
  padding: 6px 8px;
  border-bottom: 1px solid var(--neutral-30);
}

.c-datepicker-datepicker-footer {
  padding: 6px 8px;
  text-align: right;
  border-top: 1px solid var(--neutral-30);
}

.c-datepicker-calendar {
  box-sizing: border-box;
  width: 248px;
  padding: 6px 12px;
}

.c-datepicker-calendar + .c-datepicker-calendar {
  border-left: 1px solid var(--neutral-30);
}

.c-datepicker-calendar-header, .c-datepicker-time-header {
  box-sizing: border-box;
  height: 34px;
  line-height: 34px;
  text-align: center;
  overflow: hidden;
}

.c-datepicker-btn-icon-left,
.c-datepicker-btn-icon-double-left {
  float: left;
}

.c-datepicker-btn-icon-right,
.c-datepicker-btn-icon-double-right {
  float: right;
}

.c-datepicker-calendar-header-label {
  font-size: 14px;
}

.c-datepicker-calendar-decade-separator {
  margin: 0 2px;
}

.c-datepicker-calendar-decade-separator:after {
  content: "~";
}

.c-datepicker-calendar-content {
  position: relative;
  height: 224px;
  box-sizing: border-box;
}

.c-datepicker-calendar-content .cell {
  cursor: pointer;
}

.c-datepicker-calendar-content .cell:hover {
  color: var(--neutral-50);
  background-color: var(--neutral-00);
}

.c-datepicker-calendar-content .cell.active {
  color: #fff;
  background-color: var(--primary-40);
}

.c-datepicker-calendar-content .cell.in-range, .c-datepicker-calendar-content .cell.hover-in-range {
  color: var(--neutral-40);
  background-color: var(--neutral-20);
}

.c-datepicker-calendar-content .cell.disabled {
  cursor: not-allowed;
  color: #ccc;
  background-color: #f3f3f3;
}

.c-datepicker-calendar-week-mode .c-datepicker-date-row {
  cursor: pointer;
}

.c-datepicker-calendar-week-mode .c-datepicker-date-row:hover {
  background-color: var(--neutral-00);
}

.c-datepicker-calendar-week-mode .c-datepicker-date-row.c-datepicker-active-week {
  background-color: var(--neutral-20);
}

.c-datepicker-calendar-week-mode .c-datepicker-date-row .cell:hover {
  color: inherit;
  background-color: transparent;
}

.c-datepicker-calendar-week-mode .c-datepicker-date-row .cell.active {
  color: inherit;
  background-color: transparent;
}

.c-datepicker-week-number {
  opacity: 0.5;
}

.c-datepicker-table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}

.c-datepicker-table th {
  padding: 0;
  font-weight: 500;
  vertical-align: middle;
}

.c-datepicker-table td {
  padding: 0;
  vertical-align: middle;
}

.c-datepicker-table-date td,
.c-datepicker-table-date th {
  height: 32px;
  font-size: 12px;
}

.c-datepicker-table-date .today {
  color: var(--primary-10);
}

.c-datepicker-table-date .cell.not-current-month {
  color: #ccc;
  background: none;
}

.c-datepicker-time {
  flex: 1;
  width: 224px;
  background: #fff;
}

.c-datepicker-time + .c-datepicker-time {
  border-left: 1px solid var(--neutral-30);
}

.c-datepicker-calendar-time {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-datepicker-time-header {
  border-bottom: 1px solid var(--neutral-30);
}

.c-datepicker-time-content {
  height: 224px;
  box-sizing: border-box;
  overflow: hidden;
}

.c-datepicker-time-columns {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-datepicker-time-column {
  flex: 1;
  position: relative;
  border-left: 1px solid var(--neutral-30);
  text-align: center;
}

.c-datepicker-time-column:first-child {
  border-left: 0;
}

.c-datepicker-time-column .c-datepicker-time-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-datepicker-time-column .c-datepicker-time-list::after {
  content: "";
  display: block;
  height: 192px;
}

.c-datepicker-time-column .c-datepicker-time-item {
  cursor: pointer;
  font-size: 12px;
  height: 32px;
  line-height: 32px;
}

.c-datepicker-time-column .c-datepicker-time-item:hover {
  color: var(--neutral-50);
  background-color: var(--neutral-00);
}

.c-datepicker-time-column .c-datepicker-time-item.active {
  color: var(--primary-40);
  background-color: transparent;
  font-weight: 700;
}

.c-datepicker-time-column .c-datepicker-time-item.disabled {
  cursor: not-allowed;
  color: #ccc;
  background-color: #f3f3f3;
}

.c-datepicker-time-option {
  cursor: pointer;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 20px;
}

.c-datepicker-time-option:hover {
  color: var(--neutral-50);
  background-color: var(--neutral-00);
}

.c-datepicker-time-option.active {
  color: var(--primary-40);
  background-color: transparent;
  font-weight: 700;
}

.c-datepicker-time-option.disabled {
  cursor: not-allowed;
  color: #ccc;
  background-color: #f3f3f3;
}

.c-datepicker-datepicker-main {
  color: var(--neutral-50);
  background: var(--neutral-00);
  border: 1px solid var(--neutral-30);
}

.is-dark-mode .c-datepicker-datepicker-main, .c-datepicker-datepicker-main .is-dark-mode {
  border: 1px solid var(--neutral-30);
}

.c-datepicker-time {
  width: auto;
  background: var(--neutral-00);
}

.c-datepicker-calendar + .c-datepicker-calendar {
  border-top: 1px solid var(--neutral-30);
  border-left: none;
}

@media (min-width: 768px) {
  .c-datepicker-calendar + .c-datepicker-calendar {
    border-top: none;
    border-left: 1px solid var(--neutral-30);
  }
}

.c-datepicker-time + .c-datepicker-time {
  border-top: 1px solid var(--neutral-30);
  border-left: none;
}

@media (min-width: 768px) {
  .c-datepicker-time + .c-datepicker-time {
    border-top: none;
    border-left: 1px solid var(--neutral-30);
  }
}

.c-dialog {
  display: flex;
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}

.c-dialog__wrapper {
  background: var(--neutral-00);
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: 450px;
  max-height: 100%;
  overflow-y: auto;
  margin: 2rem;
}

.is-dark-mode .c-dialog__wrapper, .c-dialog__wrapper .is-dark-mode {
  background: var(--neutral-10);
}

.c-dialog--smallest .c-dialog__wrapper {
  max-width: 250px;
}

.c-dialog--mobile .c-dialog__wrapper {
  max-width: 320px;
}

.c-dialog--mobile-large .c-dialog__wrapper {
  max-width: 450px;
}

.c-dialog--tablet-small .c-dialog__wrapper {
  max-width: 600px;
}

.c-dialog--tablet .c-dialog__wrapper {
  max-width: 768px;
}

.c-dialog--tablet-large .c-dialog__wrapper {
  max-width: 900px;
}

.c-dialog--desktop .c-dialog__wrapper {
  max-width: 1280px;
}

.c-dialog--xl .c-dialog__wrapper {
  max-width: 1920px;
}

.c-dialog__wrapper .c-dialog.dialog-enter {
  opacity: 0;
}

.c-dialog__wrapper .c-dialog.dialog-enter-to {
  opacity: 1;
}

.c-dialog__wrapper .c-dialog.dialog-leave {
  opacity: 1;
}

.c-dialog__wrapper .c-dialog.dialog-leave-to {
  opacity: 0;
}

.c-dialog__wrapper .c-dialog.dialog-leave-active {
  opacity: 0;
}

.c-dialog.dialog-enter-active .c-dialog__wrapper {
  -webkit-animation: fadeInUp 300ms;
          animation: fadeInUp 300ms;
}

.c-dialog.dialog-leave-active .c-dialog__wrapper {
  -webkit-animation: fadeOutDown 300ms;
          animation: fadeOutDown 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.c-dialog--primary .c-dialog__wrapper {
  background: var(--primary-40);
  max-width: 768px;
}

.c-dialog--sm .c-dialog__wrapper {
  max-width: 450px;
}

.c-dialog__body {
  padding: 1rem;
}

.c-dialog__footer {
  padding: 1rem;
  text-align: right;
  background: var(--neutral-10);
}

.c-dialog__backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
}

.c-dialog__backdrop.dialog-enter-active {
  -webkit-animation: fadeIn 300ms;
          animation: fadeIn 300ms;
}

.c-dialog__backdrop.dialog-leave-active {
  -webkit-animation: fadeOut 300ms;
          animation: fadeOut 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.c-doc-viewer {
  display: flex;
  flex-direction: column;
}

.c-doc-viewer__tools {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--neutral-20);
  border-bottom: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  background: var(--neutral-00);
  flex: 0 0 auto;
}

.c-doc-viewer__btn-group {
  display: flex;
}

.c-doc-viewer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-left: 1px solid var(--neutral-20);
}

.c-doc-viewer__button:hover {
  background: var(--neutral-20);
  text-decoration: none;
}

.c-doc-viewer__btn-group:first-child .c-doc-viewer__button {
  border-left: none;
  border-right: 1px solid var(--neutral-20);
}

.c-doc-viewer__doc {
  border: 1px solid var(--neutral-20);
}

@media (min-width: 768px) {
  .c-doc-viewer__doc {
    overflow: auto;
  }
}

.c-doc-viewer--office .c-doc-viewer__doc {
  display: flex;
  height: 100%;
}

.c-doc-viewer__iframe {
  width: 100%;
  border: 1px solid var(--neutral-20);
}

.c-doc-viewer__image {
  display: block;
  width: 100%;
  height: auto !important;
  border: 1px solid var(--neutral-20);
}

.c-doc-viewer__count {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding: 0 1rem;
  border-left: 1px solid var(--neutral-20);
}

.c-doc-viewer__btn-group:first-child .c-doc-viewer__count {
  border-left: none;
  border-right: 1px solid var(--neutral-20);
}

.c-document {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--neutral-00);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--neutral-10);
}

.is-dark-mode .c-document, .c-document .is-dark-mode {
  background: var(--neutral-10);
  border: 1px solid var(--neutral-30);
  box-shadow: none;
}

.c-document__right {
  margin-left: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.c-document__icon {
  flex: 0 0 3.5rem;
  text-align: center;
}

@media (min-width: 1280px) {
  .c-document__icon {
    flex: 0 0 5rem;
  }
}

.c-document__info {
  flex: 1 1 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1rem 0;
}

@media (min-width: 1280px) {
  .c-document__info {
    padding: 1.5rem 0;
    margin-right: 1.5rem;
  }
}

.c-document__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-document__error-msg {
  color: var(--color-danger);
}

.c-document__meta {
  display: flex;
  align-items: center;
}

.c-document__time, .c-document__meta-text {
  color: var(--neutral-45);
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

.c-document__avatar {
  flex: 0 0 auto;
}

.c-document__tags {
  margin-left: auto;
  flex: 0;
  display: none;
}

@media (min-width: 1280px) {
  .c-document__tags {
    display: block;
  }
}

.c-document__actions {
  white-space: nowrap;
  flex: 0 1 auto;
  padding: 1rem;
}

.c-document-view {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .c-document-view {
    max-height: 100vh;
    flex-direction: row;
    flex-grow: 1;
  }
}

.c-document-view--backdrop:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: 400ms ease opacity;
}

.is-dark-mode .c-document-view--backdrop:before, .c-document-view--backdrop:before .is-dark-mode {
  background: rgba(0, 0, 0, 0.6);
}

.c-document-view__doc-wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .c-document-view__doc-wrapper {
    height: 100vh;
    overflow: hidden;
  }
}

.c-document-view__doc {
  padding: 1.5rem 0;
  width: 100%;
  flex-grow: 1;
  max-height: 100%;
  display: flex;
}

@media (min-width: 768px) {
  .c-document-view__doc {
    padding: 2.5rem;
    overflow: hidden;
  }
}

.c-document-view__doc-viewer {
  width: 100%;
}

.c-document-view__empty-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-document-view__empty {
  text-align: center;
}

.c-document-view__aside {
  flex: 0 0 450px;
  max-width: 450px;
  background: var(--neutral-10);
  box-shadow: 0 0 1.5rem var(--neutral-30);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.c-document-view__info {
  z-index: 30;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.c-document-view__heading {
  display: flex;
}

@media (min-width: 768px) {
  .c-document-view__heading {
    margin: 1rem 0;
  }
}

@media (min-width: 768px) {
  .c-document-view__body {
    margin-top: 2rem;
  }
}

.c-document-view__title {
  margin: 0;
}

@media (min-width: 768px) {
  .c-document-view__title {
    font-size: 1.5rem;
  }
}

.c-document-view__title-icon {
  flex: 0 0 2.5rem;
  font-size: 1.5rem;
}

.c-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-animation: fadeIn 200ms ease;
          animation: fadeIn 200ms ease;
  min-width: 250px;
  width: 100%;
}

.c-dropdown:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-bottom-color: var(--neutral-00);
  position: absolute;
  top: -1rem;
  right: 0.75rem;
  pointer-events: none;
}

@media (max-width: 450px) {
  .c-dropdown:before {
    content: normal;
  }
}

.is-dark-mode .c-dropdown:before {
  border-bottom-color: var(--neutral-20);
}

.c-dropdown__wrapper {
  background: var(--neutral-00);
  box-shadow: var(--box-shadow);
  padding: 0.5rem 0;
  max-height: calc(100vh - 10rem);
  overflow: auto;
}

.is-dark-mode .c-dropdown__wrapper, .c-dropdown__wrapper .is-dark-mode {
  background: var(--neutral-20);
}

@media (min-width: 450px) {
  .c-dropdown__wrapper {
    border-radius: 0.5rem;
  }
}

.c-dropdown__heading {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--neutral-40);
  font-size: 1.25rem;
}

.c-feed__actionbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  text-align: center;
  padding: 1rem;
  -webkit-animation: fadeInDown 300ms ease;
          animation: fadeInDown 300ms ease;
  z-index: 10;
}

@media (min-width: 768px) {
  .c-feed__actionbar {
    top: 5.5rem;
  }
}

.c-feed-suggestions {
  overflow: hidden;
}

.c-feed-suggestions__inner {
  display: flex;
}

@media (min-width: 768px) {
  .c-feed-suggestions__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 0.5rem;
    grid: 0.5rem;
  }
}

.c-feed-suggestions__item {
  width: 300px;
  padding-left: 1rem;
  transition: 300ms ease all;
  height: auto !important;
  display: flex;
}

.c-feed-suggestions__item:last-child {
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .c-feed-suggestions__item {
    width: auto;
    padding-left: 0;
  }

  .c-feed-suggestions__item:last-child {
    padding-right: 0;
  }
}

.c-feed-suggestions__item.is-following:not(.swiper-slide-active) {
  opacity: 50%;
}

.c-filter-panel {
  padding: 1rem;
  background: var(--neutral-10);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.is-dark-mode .c-filter-panel, .c-filter-panel .is-dark-mode {
  background: var(--neutral-00);
}

.c-flash-message {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  display: flex;
  justify-content: center;
}

.c-flash-message__dialog {
  width: 100%;
  padding: 1rem;
  max-width: 600px;
  box-shadow: var(--box-shadow);
  background: var(--neutral-00);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.is-dark-mode .c-flash-message__dialog, .c-flash-message__dialog .is-dark-mode {
  background: var(--neutral-20);
}

.c-flash-message.flash-wrapper-enter-active .c-flash-message__dialog {
  -webkit-animation: 300ms fadeInDown;
          animation: 300ms fadeInDown;
}

.c-flash-message.flash-wrapper-leave-active .c-flash-message__dialog {
  -webkit-animation: 300ms fadeOutUp forwards;
          animation: 300ms fadeOutUp forwards;
}

.c-flash-message__message {
  font-weight: 600;
}

.c-flash-message__message:before {
  content: "\f05a";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  text-align: center;
  font-size: 1.2em;
  padding: 0 0.5rem;
}

.c-flash-message__dialog.is-warning .c-flash-message__message:before {
  content: "\f2fe";
  color: var(--color-warning);
}

.c-flash-message__dialog.is-error .c-flash-message__message:before {
  content: "\f5b3";
  color: var(--color-danger);
}

.c-flash-message__dialog.is-success .c-flash-message__message:before {
  content: "\f5b8";
  color: var(--color-success);
}

.c-form__actions {
  padding: 1rem 0;
  text-align: center;
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--neutral-00);
  border-top: 1px solid var(--neutral-10);
  box-shadow: var(--box-shadow);
  margin-top: 1.5rem;
}

.is-dark-mode .c-form__actions, .c-form__actions .is-dark-mode {
  background: var(--neutral-20);
}

@media (min-width: 768px) {
  .c-form__actions {
    margin-top: 0;
    position: relative;
    border-bottom: none;
    box-shadow: none;
    background: none !important;
  }
}

.c-gamification-summary__head {
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-gamification-summary__header {
  text-align: center;
}

.c-gamification-summary__points {
  margin-top: 0;
}

.c-gamification-summary__wrapper {
  margin-top: 0.5rem;
  padding: 1rem;
  background: var(--neutral-10);
}

.c-hero {
  background: black;
  position: relative;
  z-index: 0;
}

.c-hero__container {
  display: block;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  position: relative;
}

.c-hero__body-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  position: relative;
  flex-direction: row-reverse;
}

.c-hero__body {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#FF000000", GradientType=0);
  padding: 2rem 1.5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .c-hero__body {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .c-hero__body {
    padding: 10rem 1.5rem;
    background-image: linear-gradient(to right, rgb(0, 0, 0) 0, rgba(0, 0, 0, 0) 75%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF000000", endColorstr="#00000000", GradientType=1);
  }
}

.c-hero__example {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  min-height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .c-hero__example {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.c-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.c-hero__bg .vjs-fluid {
  height: 100% !important;
}

.c-hero__bg .vjs-tech {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-hero__bg-instance {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-hero-video {
  background: black;
}

.c-hero-video__video-wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.c-hero-video__video {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.c-hero-video__video video {
  display: block;
}

.c-hero-video__video video:focus {
  outline: none;
}

.c-hero-video__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 1.5rem;
  opacity: 0;
  transition: 300ms ease all;
  display: none;
}

@media (min-width: 768px) {
  .c-hero-video__nav {
    display: block;
  }
}

.c-hero-video:hover .c-hero-video__nav {
  opacity: 1;
}

.c-hero-video__nav--prev {
  left: 0;
}

.c-hero-video__nav--next {
  right: 0;
}

.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-10);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  transition: 200ms ease all;
}

.is-dark-mode .c-input, .c-input .is-dark-mode {
  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.75rem;
  margin-top: 0.25rem;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input__help.is-error {
  color: var(--color-danger);
}

.c-input__help.is-error:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 0.75rem;
  padding: 0.5rem 0;
}

.c-input:focus {
  outline: none;
}

.c-input-addon {
  display: flex;
}

.c-input-addon__addon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--neutral-10);
  border: 1px solid var(--neutral-30);
}

.is-dark-mode .c-input-addon__addon, .c-input-addon__addon .is-dark-mode {
  background: var(--neutral-00);
}

.c-input-addon__addon:first-child {
  border-right: none;
  padding-left: 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
}

.c-input-addon--action .c-input-addon__addon:first-child {
  padding: 0;
  background: var(--neutral-10);
}

.is-dark-mode .c-input-addon--action .c-input-addon__addon:first-child, .c-input-addon--action .c-input-addon__addon:first-child .is-dark-mode {
  background: var(--neutral-00);
}

.c-input-addon--primary .c-input-addon__addon:first-child {
  background: var(--primary-40);
}

.c-input-addon__addon:last-child {
  border-left: none;
  padding-right: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.c-input-addon--action .c-input-addon__addon:last-child {
  padding: 0;
}

.c-input-addon--primary .c-input-addon__addon:last-child {
  background: var(--primary-40);
}

.c-input-addon--diapos .c-input-addon__addon {
  background: var(--primary-40);
  border-color: var(--primary-50);
  color: var(--neutral-50);
}

.is-disabled .c-input-addon__addon {
  border-bottom-color: var(--neutral-20);
  background: var(--neutral-20);
}

.is-error .c-input-addon__addon {
  border-color: var(--color-danger);
  color: var(--color-danger);
}

.c-input-addon__input {
  flex: 1 1 auto;
  display: flex;
}

.c-input-addon__input input {
  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-10);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  transition: 200ms ease all;
}

.is-dark-mode .c-input-addon__input input, .c-input-addon__input input .is-dark-mode {
  background: var(--neutral-00);
}

.c-input-addon__input input.is-error, .c-input-addon__input input--error {
  border-color: var(--color-danger);
}

.c-input-addon__input input:focus {
  border-color: var(--primary-50);
}

.c-input-addon__input input:disabled, .c-input-addon__input input.is-disabled {
  border-bottom-color: var(--neutral-20) !important;
  background: var(--neutral-20) !important;
}

.c-input-addon__input input:disabled::-moz-placeholder, .c-input-addon__input input.is-disabled::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-addon__input input:disabled::placeholder, .c-input-addon__input input.is-disabled::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-addon__input input::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-addon__input input::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-addon__input input--lg {
  padding: 1rem;
}

@media (min-width: 768px) {
  .c-input-addon__input input--lg {
    padding: 1.5rem;
    font-size: 1.25rem;
  }
}

.c-input-addon__input input--center {
  text-align: center;
}

.c-input-addon__input input--number {
  text-align: right;
}

.c-input-addon__input input--block {
  display: block;
  width: 100%;
}

.c-input-addon__input input__help {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input-addon__input input__help.is-error {
  color: var(--color-danger);
}

.c-input-addon__input input__help.is-error:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input-addon__input input__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 0.75rem;
  padding: 0.5rem 0;
}

.c-input-addon__input input:focus {
  outline: none;
}

.c-input-addon__input:first-child input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.c-input-addon__input:last-child input {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-input-checkbox {
  display: inline-block;
  max-width: 100%;
}

.c-input-checkbox__label {
  cursor: pointer;
  color: var(--neutral-45);
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-input-checkbox--text-wrap .c-input-checkbox__label {
  align-items: baseline;
  white-space: normal;
}

.c-input-checkbox__label:before {
  content: "\f00c";
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid var(--neutral-30);
  border-radius: 0.25rem;
  font-family: "Font Awesome 5 Pro";
  font-size: 0.6em;
  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(--primary-40);
  border-color: var(--primary-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__label a {
  text-decoration: underline;
}

.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: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.c-input-group--center {
  align-items: center;
}

.c-input-group__label {
  color: var(--neutral-45);
  display: block;
  margin: 0;
}

.c-input-group--horizontal .c-input-group__label {
  margin-top: 0.5rem;
}

.c-input-group__input {
  margin-top: 0.5rem;
  position: relative;
}

.c-input-group__input:first-child {
  margin-top: 0;
}

.c-input-group--horizontal .c-input-group__input {
  margin-top: 0;
}

.c-input-group__input > input {
  display: block;
  width: 100%;
}

.c-input-group__passtoggle {
  background: none;
  border: none;
  font-size: 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}

.c-input-group__passtoggle:focus {
  outline: none;
}

.c-input-search {
  display: flex;
  min-height: 2.5rem;
}

.c-input-search__addon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--neutral-30);
}

.c-input-search__addon:first-child {
  border-right: none;
  border-radius: 2rem 0 0 2rem;
}

.c-input-search__addon:last-child {
  border-left: none;
  border-radius: 0 2rem 2rem 0;
}

.c-input-search__addon-btn {
  font-size: 1.25rem;
  color: var(--neutral-60);
  padding: 0.25rem 1rem;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
}

.c-input-search__input {
  flex: 1 1 auto;
  display: flex;
}

.c-input-search__input input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  padding: 0.25rem 1rem;
  background: var(--neutral-00);
  margin: 0;
  border: 1px solid var(--neutral-30);
  border-radius: 2rem;
  max-width: 100%;
  color: var(--neutral-50);
  text-overflow: ellipsis;
  transition: 200ms ease all;
}

.c-input-search__input input:focus {
  outline: none;
}

.c-input-search__input input::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-search__input input::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-search__input:first-child input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.c-input-search__input:last-child input {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-input-comment {
  display: flex;
  border: 1px solid var(--neutral-20);
  border-radius: 1.4rem;
  position: relative;
  background: var(--neutral-10);
}

.is-dark-mode .c-input-comment, .c-input-comment .is-dark-mode {
  background: var(--neutral-00);
  border: 1px solid var(--neutral-10);
}

.c-input-comment__addon {
  padding: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
}

.c-input-comment__input-wrapper {
  display: block;
  width: 100%;
}

.c-input-comment__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: Mukta, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.5rem 1rem;
  padding-left: 3rem;
  padding-right: 2.5rem;
  border: none;
  background: transparent;
  margin: 0;
  border-radius: 1rem;
  max-width: 100%;
  color: var(--neutral-50);
  transition: 200ms ease all;
}

.c-input-comment__input:focus {
  outline: none;
}

.c-input-comment__input[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: var(--neutral-40);
  display: block; /* For Firefox */
  cursor: text;
}

.c-input-comment__send-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0.25rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 2rem;
  border: none;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-40);
  font-size: 0.75rem;
  color: white;
  cursor: pointer;
  -webkit-animation: fadeInLeft 300ms ease;
          animation: fadeInLeft 300ms ease;
}

.c-input-comment__send-btn:hover {
  background: var(--primary-50) !important;
}

.c-input-comment__send-btn:focus {
  outline: none;
}

.c-input-select {
  position: relative;
  display: inline-block;
}

.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-10);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  transition: 200ms ease all;
  padding-right: 2rem;
}

.is-dark-mode .c-input-select__input select, .c-input-select__input select .is-dark-mode {
  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.75rem;
  margin-top: 0.25rem;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input-select__input select__help.is-error {
  color: var(--color-danger);
}

.c-input-select__input select__help.is-error:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input-select__input select__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 0.75rem;
  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-switch {
  vertical-align: top;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.c-input-switch--block {
  display: flex;
  justify-content: space-between;
}

.c-input-switch__switch {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 2rem;
  margin: 0 0.5rem;
  flex: 0 0 3.5rem;
}

.c-input-switch__switch input {
  display: none;
  z-index: 1;
  position: relative;
}

.c-input-switch--small .c-input-switch__switch {
  width: 3rem;
  height: 1.5rem;
  flex: 0 0 3rem;
}

.c-input-switch__label {
  color: var(--neutral-45);
}

.c-input-switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-30);
  transition: 0.4s;
  border-radius: 2rem;
}

.c-input-switch__switch input:checked + .c-input-switch__slider {
  background-color: var(--color-success);
}

.c-input-switch__slider:before {
  position: absolute;
  content: "";
  color: var(--neutral-00);
  height: 1.5rem;
  width: 1.5rem;
  line-height: 1.5rem;
  right: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 1.5rem;
  text-align: center;
}

.c-input-switch__switch input:checked + .c-input-switch__slider:before {
  color: var(--color-success);
  -webkit-animation: turnOn 300ms forwards;
          animation: turnOn 300ms forwards;
}

.c-input-switch__switch input:not(:checked) + .c-input-switch__slider:before {
  -webkit-animation: turnOff 300ms forwards;
          animation: turnOff 300ms forwards;
}

.c-input-switch--small .c-input-switch__slider:before {
  height: 1rem;
  width: 1rem;
}

@-webkit-keyframes turnOn {
  from {
    transform: translateX(-1.5rem);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes turnOn {
  from {
    transform: translateX(-1.5rem);
  }

  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes turnOff {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1.5rem);
  }
}

@keyframes turnOff {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1.5rem);
  }
}

.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-60);
  color: var(--neutral-00);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
  min-height: 1.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

@media (pointer: fine){
  .c-input-toggle-pill__pill[href]:hover {
    text-decoration: none;
    background: var(--primary-50);
    color: white;
  }
}

.c-input-toggle-pill__pill{
  background: var(--neutral-30);
  color: var(--neutral-60);
  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-input-wysiwyg-blank:focus {
  outline: none;
}

.c-input-wysiwyg-blank > *:focus {
  outline: none;
}

.c-input-wysiwyg-blank *.is-empty:nth-child(1)::before,
.c-input-wysiwyg-blank *:nth-child(1):empty::before {
  content: attr(data-empty-text);
  float: left;
  color: var(--neutral-40);
  pointer-events: none;
  height: 0;
  font-style: italic;
}

.c-input-wysiwyg {
  -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-10);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  transition: 200ms ease all;
}

.is-dark-mode .c-input-wysiwyg, .c-input .is-dark-mode {
  background: var(--neutral-00);
}

.is-dark-mode .c-input, .c-input .is-dark-mode {
  background: var(--neutral-00);
}

.c-input-wysiwyg.is-error, .c-input--error {
  border-color: var(--color-danger);
}

.c-input-wysiwyg:focus {
  border-color: var(--primary-50);
}

.c-input-wysiwyg:disabled, .c-input-wysiwyg.is-disabled {
  border-bottom-color: var(--neutral-20);
  background: var(--neutral-20);
}

.c-input:disabled, .c-input.is-disabled {
  border-bottom-color: var(--neutral-20);
  background: var(--neutral-20);
}

.c-input-wysiwyg:disabled::-moz-placeholder, .c-input-wysiwyg.is-disabled::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-wysiwyg:disabled::placeholder, .c-input-wysiwyg.is-disabled::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.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-wysiwyg::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-wysiwyg::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-wysiwyg:focus {
  outline: none;
}

.c-input-wysiwyg{
  display: block;
}

.c-input-wysiwyg__menu {
  display: flex;
  flex-wrap: wrap;
}

.c-input-wysiwyg__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  padding: 0.5rem;
  border: none;
}

.c-input-wysiwyg__input {
  min-height: 200px;
  display: flex;
  margin-top: 0.5rem;
}

.c-input-wysiwyg__input .ProseMirror {
  width: 100%;
}

.c-input-wysiwyg__input .ProseMirror:focus {
  outline: none;
}

.c-input-wysiwyg-menu {
  position: absolute;
  background: var(--neutral-60);
  transform: translate(-50%, -1em);
  border-radius: 2rem;
  visibility: hidden;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.2s, visibility 0.2s;
  display: flex;
  max-width: 98vw;
  overflow-x: scroll;
  padding: 0 1rem;
}

.c-input-wysiwyg-menu.is-active {
  visibility: visible;
  opacity: 1;
}

.c-input-wysiwyg-menu__button {
  background: transparent;
  border: none;
  color: var(--neutral-00);
  padding: 0.5rem;
  display: inline-flex;
  padding: 1rem;
  margin-right: 0.2rem;
  border-radius: 3px;
  cursor: pointer;
}

.c-input-wysiwyg-menu__button.is-active {
  background: var(--neutral-50);
}

.c-input-wysiwyg-menu__button.is-active > .fal {
  font-weight: 600;
}

.c-lead {
  margin-top: 0.5em;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .c-lead {
    font-weight: normal;
    font-size: 1.25rem;
  }
}

.c-lead:first-child {
  margin-top: 0;
}

.c-lead--diapos {
  color: var(--neutral-00);
}

.c-like-box {
  display: inline-flex;
}

.c-like-box__like {
  display: flex;
  height: 2rem;
  background: var(--neutral-00);
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  padding: 0 0.5rem;
  border-radius: 2rem;
  position: relative;
  z-index: 1;
}

@media (pointer: fine) {
  .c-like-box__like:hover {
    text-decoration: none;
    background: var(--secundary-40);
    cursor: pointer;
  }
}

.c-like-box__like:focus, .c-like-box__like:hover {
  text-decoration: none;
}

.c-like-box__like-icon {
  color: var(--secundary-40);
}

.c-like-box__like-icon:after {
  content: "\f004";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-style: normal;
}

@media (pointer: fine) {
  .c-like-box__like:hover .c-like-box__like-icon {
    color: var(--neutral-00);
  }
}

.c-like-box.is-liked .c-like-box__like-icon:after {
  font-weight: 900;
}

.c-like-box__count {
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

@media (pointer: fine) {
  .c-like-box__like:hover .c-like-box__count {
    color: var(--neutral-00);
  }
}

.c-like-box__likes {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  transition: 300ms ease all;
}

.c-like-box__user {
  transition: 300ms ease all;
  margin-left: -0.5rem;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.c-like-box__user.like-enter-active, .c-like-box__user.like-leave-to {
  flex: 0 0 0;
  width: 0;
  margin-left: 0;
}

.c-like-box__user.like-enter-to, .c-like-box__user.like-leave {
  flex: 0 0 2rem;
  width: 2rem;
  margin-left: -0.5rem;
}

.c-like-box__user:nth-child(1).like-leave-to {
  opacity: 0;
  transform: translateX(2.5rem);
}

.c-like-box__user:nth-child(1).like-enter {
  transform: translateX(2.5rem);
}

.c-like-box__user:nth-child(1).like-enter-to {
  transform: translateX(0);
}

.c-like-box__user-avatar {
  float: right;
}

.c-modal {
  display: none;
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}

.c-modal--fixed-top {
  align-items: normal;
}

.c-modal--open {
  display: flex;
}

.c-modal__banner {
  overflow: hidden;
  height: 150px;
}

.c-modal__header {
  padding: 0 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-modal__dialog {
  background: var(--neutral-00);
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: 600px;
  max-height: 100%;
  overflow-y: auto;
}

.is-dark-mode .c-modal__dialog, .c-modal__dialog .is-dark-mode {
  background: var(--neutral-10);
}

.c-modal--smallest .c-modal__dialog {
  max-width: 250px;
}

.c-modal--mobile .c-modal__dialog {
  max-width: 320px;
}

.c-modal--mobile-large .c-modal__dialog {
  max-width: 450px;
}

.c-modal--tablet-small .c-modal__dialog {
  max-width: 600px;
}

.c-modal--tablet .c-modal__dialog {
  max-width: 768px;
}

.c-modal--tablet-large .c-modal__dialog {
  max-width: 900px;
}

.c-modal--desktop .c-modal__dialog {
  max-width: 1280px;
}

.c-modal--xl .c-modal__dialog {
  max-width: 1920px;
}

.c-modal__dialog .c-modal.modal-enter {
  opacity: 0;
}

.c-modal__dialog .c-modal.modal-enter-to {
  opacity: 1;
}

.c-modal__dialog .c-modal.modal-leave {
  opacity: 1;
}

.c-modal__dialog .c-modal.modal-leave-to {
  opacity: 0;
}

.c-modal__dialog .c-modal.modal-leave-active {
  opacity: 0;
}

.c-modal.modal-enter-active .c-modal__dialog {
  -webkit-animation: fadeInUp 300ms;
          animation: fadeInUp 300ms;
}

.c-modal.modal-leave-active .c-modal__dialog {
  -webkit-animation: fadeOutDown 300ms;
          animation: fadeOutDown 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.c-modal--primary .c-modal__dialog {
  background: var(--primary-40);
  max-width: 768px;
}

.c-modal--sm .c-modal__dialog {
  max-width: 450px;
}

.c-modal__searchbar {
  margin-top: 1rem;
}

.c-modal__hero-image {
  width: 100%;
  height: auto;
}

.c-modal__title {
  width: 100%;
}

.c-modal__body {
  margin: 0 auto;
  padding-bottom: 0;
}

.c-modal__body--blank {
  max-width: 768px;
  background: var(--neutral-00);
}

.c-modal__footer {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--neutral-10);
  margin-top: 1rem;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--neutral-00);
  justify-content: center;
}

.c-modal--primary .c-modal__footer {
  border-color: var(--primary-50);
}

.c-modal__actions--lead {
  color: var(--primary-40);
  margin-top: 1em !important;
}

.c-modal__actions--button {
  margin-top: 1em;
}

.c-modal__backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.7);
}

.c-modal__backdrop.modal-enter-active {
  -webkit-animation: fadeIn 300ms;
          animation: fadeIn 300ms;
}

.c-modal__backdrop.modal-leave-active {
  -webkit-animation: fadeOut 300ms;
          animation: fadeOut 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.c-modal__image {
  max-width: 100%;
}

.c-modal__image--center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.c-modal__form {
  width: 100%;
}

.c-modal__icon {
  font-size: 2em;
  line-height: 2em;
  width: 2em;
  height: 2em;
  border-radius: 3em;
  text-align: center;
  z-index: 1;
  background-color: #fff;
  color: var(--neutral-30);
  box-shadow: var(--box-shadow);
}

.c-modal__icon--image {
  font-size: 3em;
  margin: -1.5em auto 0 auto;
  position: relative;
}

.c-modal__close {
  padding: 0.5rem;
  cursor: pointer;
  color: var(--neutral-45);
  font-size: 1.5em;
  z-index: 40;
}

.c-modal__close--top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.c-modal__close--diapos {
  color: var(--neutral-00);
}

.c-modal__hero .c-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.c-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-nav__item--section {
  margin-top: 1.5rem;
}

.c-nav__link {
  display: block;
  padding: 1rem 2rem;
  color: var(--neutral-60);
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  width: 100%;
  font-size: 1rem;
  text-align: left;
}

.c-nav__link:after {
  content: "";
  border-bottom: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

.is-dark-mode .c-nav__link:after, .c-nav__link .is-dark-mode:after {
  content: "";
  border-bottom: 1px solid var(--neutral-30);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

.c-nav__item:last-child .c-nav__link:after {
  display: none;
}

.c-nav--small .c-nav__link {
  padding: 0.5rem 1rem;
}

.c-nav__link--badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-nav__item.is-active .c-nav__link {
  font-weight: 600;
  border-right: 2px solid var(--secundary-40);
}

@media (min-width: 768px) {
  .c-nav__link:hover {
    text-decoration: none;
    background: var(--neutral-10);
  }
}

.c-nav__link i {
  color: var(--neutral-40);
  width: 1.5rem;
}

.c-nav__item.is-active .c-nav__link i {
  color: var(--primary-40);
}

.c-nav__item--danger .c-nav__link i {
  color: var(--secundary-40);
}

.c-nav__heading {
  padding: 1rem 1.5rem;
  font-weight: bold;
  color: var(--neutral-30);
}

@media (min-width: 768px) {
  .c-nav__heading {
    padding: 1rem 0.5rem;
  }
}

.c-nav-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.c-nav-icons__item {
  align-items: center;
}

@media (min-width: 450px) {
  .c-nav-icons__item {
    position: relative;
  }
}

.c-nav-icons__item--search {
  max-width: 25em;
  width: 100%;
  padding: 0 0.5rem;
}

.c-nav-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.c-nav-icons__link--has-label {
  padding: 0 0.5rem;
}

.c-nav-icons__item.is-open .c-nav-icons__link, .c-nav-icons__link:hover {
  text-decoration: none;
  background: var(--neutral-10);
}

.c-nav-icons__item.is-open .c-nav-icons__link > i, .c-nav-icons__link:hover > i {
  -webkit-animation: shakeBell 1200ms;
          animation: shakeBell 1200ms;
}

@media (min-width: 900px) {
  .c-nav-icons__link {
    font-size: 1.25rem;
  }
}

.has-badge .c-nav-icons__link {
  -webkit-animation: shakeBell 1200ms;
          animation: shakeBell 1200ms;
}

.has-badge .c-nav-icons__link:after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  height: 0.5rem;
  width: 0.5rem;
  background: var(--secundary-40);
  border-radius: 1.5rem;
}

.c-nav-icons__link-text {
  font-size: 0.7em;
  color: var(--neutral-45);
  margin-right: 0.5rem;
}

.c-nav-icons__dropdown {
  position: absolute;
  z-index: 20;
  padding: 0;
  margin: 0;
  top: 4rem;
  width: 100%;
  right: 0;
}

@media (min-width: 450px) {
  .c-nav-icons__dropdown {
    width: 320px;
    max-width: calc(100vw - 3rem);
    max-height: calc(100vh - 4rem);
    left: auto;
  }
}

@-webkit-keyframes shakeBell {
  0% {
    transform: rotateZ(0);
  }

  10% {
    transform: rotateZ(-10deg);
  }

  20% {
    transform: rotateZ(5deg);
  }

  30% {
    transform: rotateZ(-3.3333333333deg);
  }

  40% {
    transform: rotateZ(2.5deg);
  }

  50% {
    transform: rotateZ(-2deg);
  }

  60% {
    transform: rotateZ(1.6666666667deg);
  }

  70% {
    transform: rotateZ(-1.4285714286deg);
  }

  80% {
    transform: rotateZ(1.25deg);
  }

  90% {
    transform: rotateZ(-1.1111111111deg);
  }

  100% {
    transform: rotateZ(0);
  }
}

@keyframes shakeBell {
  0% {
    transform: rotateZ(0);
  }

  10% {
    transform: rotateZ(-10deg);
  }

  20% {
    transform: rotateZ(5deg);
  }

  30% {
    transform: rotateZ(-3.3333333333deg);
  }

  40% {
    transform: rotateZ(2.5deg);
  }

  50% {
    transform: rotateZ(-2deg);
  }

  60% {
    transform: rotateZ(1.6666666667deg);
  }

  70% {
    transform: rotateZ(-1.4285714286deg);
  }

  80% {
    transform: rotateZ(1.25deg);
  }

  90% {
    transform: rotateZ(-1.1111111111deg);
  }

  100% {
    transform: rotateZ(0);
  }
}

.c-nav-main {
  margin: 0 0.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.c-nav-main--desktop {
  margin: 0;
  display: flex;
}

.c-nav-main__item {
  display: flex;
}

.c-nav-main__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
  width: 100%;
}

.c-nav-main__item.is-active .c-nav-main__link, .c-nav-main__link:hover {
  text-decoration: none;
}

.c-nav-main__link:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-40);
  border-radius: 100%;
  margin-top: 0.25rem;
  opacity: 0;
  transition: 300ms ease all;
}

@media (hover: hover) {
  .c-nav-main__link:hover:after, .c-nav-main__item.is-active .c-nav-main__link:after {
    opacity: 1;
  }
}

.c-nav-main__item.is-active .c-nav-main__link:after {
  opacity: 1;
}

.c-nav-main--desktop .c-nav-main__link {
  padding-left: 1rem;
  padding-right: 1rem;
}

.c-nav-main__label {
  font-size: 0.6em;
}

.c-nav-main--desktop .c-nav-main__label {
  font-weight: 600;
  font-size: 0.75rem;
}

.c-nav-main__icon {
  height: 1.5rem;
  width: auto;
  font-size: 1rem;
}

.c-nav-main--desktop .c-nav-main__icon {
  font-size: 1.25rem;
}

.c-navbar-top {
  background: var(--neutral-00);
  position: relative;
  display: grid;
}

@media (min-width: 768px) {
  .c-navbar-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    top: 0;
  }

  .c-navbar-top:after {
    content: "";
    border-bottom: 1px solid var(--neutral-20);
    width: calc(100% - 2em);
    position: absolute;
    bottom: 0;
    left: 1em;
  }
}

.c-navbar-top__logo-wrapper {
  display: flex;
  align-items: center;
}

.c-navbar-top__logo {
  max-height: 2.5rem;
  max-width: 100%;
}

.c-navbar-top__left {
  grid-column: 1;
  padding: 0 1.5rem;
  display: flex;
}

.c-navbar-top__right {
  grid-column: 2;
  padding-right: 1.5rem;
  display: flex;
}

.c-notification__head {
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-notification__wrapper {
  margin-top: 1rem;
}

.c-notification__item {
  display: flex;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.c-notification__item:after {
  content: "";
  border-bottom: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

.is-dark-mode .c-notification__item:after, .c-notification__item .is-dark-mode:after {
  content: "";
  border-bottom: 1px solid var(--neutral-30);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
}

.c-notification__item.is-unread {
  background: var(--primary-00);
}

.is-dark-mode .c-notification__item.is-unread, .c-notification__item.is-unread .is-dark-mode {
  background: transparent;
}

.c-notification__item.is-unread:before {
  content: "\f111";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 0.4em;
  color: var(--primary-40);
  margin-right: 1rem;
  padding-top: 1rem;
}

.c-notification__item:hover {
  text-decoration: none;
  background: var(--primary-00);
}

.is-dark-mode .c-notification__item:hover, .c-notification__item:hover .is-dark-mode {
  background: var(--neutral-30);
}

.c-notification__time {
  display: block;
  font-size: 0.75rem;
  color: var(--body-color-faded);
}

.c-notification__loading {
  padding: 1rem;
  text-align: center;
}

.c-notification__avatar {
  flex: 1 0 2rem;
  max-width: 2rem;
}

.c-notification__body {
  flex: 1 1 auto;
  padding-left: 1rem;
}

.c-notification__link {
  font-weight: 600;
}

.c-og-preview {
  display: block;
  background: var(--neutral-10);
}

.is-dark-mode .c-og-preview, .c-og-preview .is-dark-mode {
  background: var(--neutral-20);
}

.c-og-preview:hover {
  text-decoration: none;
}

.c-og-preview__image {
  width: 100%;
}

.c-og-preview__meta {
  padding: 1.5rem;
}

.c-og-preview__url {
  color: var(--neutral-45);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-og-preview__title {
  margin-top: 0.5rem;
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: 400ms ease opacity;
}

.is-dark-mode .c-overlay, .c-overlay .is-dark-mode {
  background: rgba(0, 0, 0, 0.6);
}

.c-overlay.overlay-toggle-enter-to, .c-overlay.overlay-toggle-leave {
  opacity: 1;
}

.c-overlay.overlay-toggle-enter, .c-overlay.overlay-toggle-leave-to {
  opacity: 0;
}

.no-scroll {
  overflow: hidden;
}

.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 2.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;
}

.is-dark-mode .c-panel__header:after, .c-panel__header .is-dark-mode: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: 0;
  overflow: hidden;
  transition: 300ms ease max-height;
}

.c-panel__body--show-body {
  max-height: 100vh;
  overflow: auto;
}

.c-panel__body-wrapper {
  padding: 1rem 2.5rem;
}

.c-panel__footer {
  padding: 1rem 2.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;
}

.is-dark-mode .c-panel__footer:after, .c-panel__footer .is-dark-mode:after {
  content: "";
  border-top: 1px solid var(--neutral-30);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
  bottom: auto;
  top: 0;
}

.ph {
  background: var(--neutral-00);
}

.ph__item {
  background: var(--neutral-20);
}

.ph-item {
  margin: 0;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  direction: ltr;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: var(--neutral-00);
  border-radius: 2px;
}

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

.is-dark-mode .ph-item, .ph-item .is-dark-mode {
  background-color: var(--neutral-10);
}

.ph-item::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 500%;
  margin-left: -250%;
  -webkit-animation: phAnimation 2s linear infinite;
          animation: phAnimation 2s linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 54%) 50% 50%;
}

.is-dark-mode .ph-item::before, .ph-item .is-dark-mode::before {
  background: linear-gradient(to right, rgba(69, 69, 69, 0) 46%, rgba(69, 69, 69, 0.35) 50%, rgba(69, 69, 69, 0) 54%) 50% 50%;
}

.ph-item > * {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.ph-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7.5px;
}

.ph-row div {
  height: 10px;
  margin-bottom: 7.5px;
  background-color: var(--neutral-20);
}

.ph-row .big, .ph-row.big div {
  height: 20px;
  margin-bottom: 15px;
}

.ph-row .empty {
  background-color: rgba(var(--neutral-00), 0);
}

.ph-col-2 {
  flex: 0 0 16.6666666667%;
}

.ph-col-4 {
  flex: 0 0 33.3333333333%;
}

.ph-col-6 {
  flex: 0 0 50%;
}

.ph-col-8 {
  flex: 0 0 66.6666666667%;
}

.ph-col-10 {
  flex: 0 0 83.3333333333%;
}

.ph-col-12 {
  flex: 0 0 100%;
}

.ph-avatar {
  position: relative;
  width: 100%;
  min-width: 60px;
  background-color: var(--neutral-20);
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
}

.ph-avatar::before {
  content: " ";
  display: block;
  padding-top: 100%;
}

.ph-avatar--small {
  min-width: 46px;
}

.ph-picture {
  width: 100%;
  height: 120px;
  background-color: var(--neutral-20);
  margin-bottom: 15px;
}

.ph-col-shrink {
  flex: 0 1 auto;
}

.ph-col-grow {
  flex: 1 1 auto;
}

.ph-file-icon {
  width: 30px;
  height: 50px;
  background-color: var(--neutral-20);
}

@-webkit-keyframes phAnimation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }

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

@keyframes phAnimation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }

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

.c-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  background: var(--neutral-60);
  color: var(--neutral-00);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
  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--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: 1rem;
  padding: 0.5rem 1rem;
}

@media (pointer: fine) {
  .c-pill[href]: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-post {
  border-radius: 0;
}

@media (min-width: 768px) {
  .c-post {
    border-radius: 1rem;
  }
}

.c-post__pinned, .c-post__heading, .c-post__tags, .c-post__actions, .c-post__comment, .c-post__comments {
  padding: 1rem 1.5rem;
  padding-bottom: 0;
}

.c-post__pinned {
  margin-top: -1.5rem;
  text-align: center;
}

.c-post__preheader i.fas {
  color: var(--neutral-40);
}

.c-post__heading {
  display: flex;
  justify-content: space-between;
}

.c-post__profile {
  flex: 0 1 auto;
  max-width: 100%;
  overflow: hidden;
}

.c-post__profile:hover {
  text-decoration: none;
}

.c-post__options {
  flex: 0 0 auto;
  max-width: 100%;
  margin-right: -0.5rem;
  position: relative;
}

.c-post__options.is-active .c-post__option-btn {
  background: var(--neutral-10);
}

.is-dark-mode .c-post__options.is-active .c-post__option-btn, .c-post__options.is-active .c-post__option-btn .is-dark-mode {
  background: var(--neutral-20);
}

.c-post__options-dropdown {
  position: absolute;
  right: -0.25rem;
  z-index: 10;
}

.c-post__body {
  word-break: break-word;
}

.c-post__body [data-user-slug] {
  font-weight: 600;
  cursor: pointer;
}

.c-post__body--edit p:focus {
  outline: none;
}

.c-post__edit-actions {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--neutral-20);
  text-align: right;
}

.c-post__actions {
  display: flex;
}

.c-post__actions-primary {
  flex: 1 1 auto;
  max-width: 100%;
}

.c-post__actions-secundary {
  flex: 0 0 auto;
}

.c-post__action {
  display: inline-block;
}

.c-post__comment {
  margin-top: 1rem;
  border-top: 1px solid var(--neutral-20);
}

.c-post__comments {
  padding-top: 0;
}

.c-post__share {
  margin-top: 1.5rem;
}

.is-dark-mode .c-post__share, .c-post__share .is-dark-mode {
  border: 1px solid var(--neutral-30);
}

.c-post__images {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.c-post__image-wrapper {
  display: block;
  flex: 1 0 50%;
  padding: 1px;
  cursor: zoom-in;
}

.c-post__image {
  width: 100%;
  display: block;
}

.c-post__files {
  margin-top: 1rem;
  padding: 0 1.5rem;
}

.is-dark-mode .c-post__file, .c-post__file .is-dark-mode {
  border: 1px solid var(--neutral-30);
}

.c-post__video-wrapper {
  margin-top: 1rem;
}

.c-post__video {
  width: 100%;
  display: block;
}

.c-post__video .vjs-tech:focus {
  outline: none;
}

.c-post__link {
  margin-top: 1rem;
}

.c-post-slider {
  position: relative;
}

.c-post-slider--zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  background: black;
  z-index: 100;
  display: flex;
}

.c-post-slider__inner {
  overflow: hidden;
}

.c-post-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.c-post-slider__btn--prev {
  left: 1.5rem;
}

.c-post-slider__btn--next {
  right: 1.5rem;
}

.c-post-slider__btn--close {
  bottom: 2rem;
  left: 50%;
  top: auto;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .c-post-slider__btn--close {
    bottom: auto;
    top: 2rem;
    left: 2rem;
  }
}

.c-post-slider__btn.swiper-button-disabled {
  visibility: hidden;
}

.c-post-slider__item {
  max-width: 100vw;
  width: auto;
  cursor: zoom-in;
}

.c-post-slider__item.swiper-slide-zoomed {
  cursor: zoom-out;
}

.c-post-slider--zoom .c-post-slider__item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-post-slider__image {
  display: block;
  width: 100%;
}

.c-post-slider--zoom .c-post-slider__image {
  width: auto;
  max-width: 100%;
}

.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-share-box {
  display: flex;
  flex-direction: column;
}

.c-share-box--inline {
  background: var(--neutral-00);
}

.is-dark-mode .c-share-box--inline, .c-share-box--inline .is-dark-mode {
  background: var(--neutral-10);
}

.c-share-box__input-wrapper {
  flex: 1 1 auto;
  max-height: 10rem;
  overflow: auto;
}

.c-share-box__input {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  display: block;
  font-size: 1rem;
  padding: 1.5rem;
  border: none;
  background: transparent;
  color: var(--neutral-60);
}

.c-share-box__input:focus {
  outline: none;
}

.c-share-box__input[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: var(--neutral-40);
  display: block; /* For Firefox */
}

.c-share-box__input > a {
  text-decoration: underline;
}

.c-share-box__options {
  position: relative;
  margin-top: 1rem;
}

.c-share-box__options:after {
  content: "";
  border-top: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
  bottom: auto;
  top: 0;
}

.is-dark-mode .c-share-box__options:after, .c-share-box__options .is-dark-mode:after {
  content: "";
  border-top: 1px solid var(--neutral-30);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
  bottom: auto;
  top: 0;
}

.c-share-box__shareable {
  margin: 1rem;
}

.c-share-box__options-wrapper {
  overflow-y: auto;
}

.c-share-box__channel-toggler {
  color: var(--neutral-50);
  background: var(--neutral-10);
  padding: 0 1rem;
  border-radius: 2rem;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  min-height: 1.5rem;
  margin-top: 0.5rem;
}

.c-share-box__channel-pill {
  margin-top: 0.5rem;
  margin-right: 0.25rem;
}

.c-share-box__channel-list {
  padding: 1rem 1rem;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-share-box__channel-list-title {
  margin-right: 0.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.c-share-box__channel-options {
  margin: 0;
  padding: 1rem 1.5rem;
  padding-bottom: 0;
  list-style: none;
}

.c-share-box__channel-items {
  margin: 0;
  padding: 0;
  padding-bottom: 0;
  list-style: none;
}

.c-share-box__channel {
  padding: 0.5rem 0;
}

.c-share-box__action-wrapper {
  padding: 1rem;
  display: flex;
  width: 100%;
  position: relative;
}

.c-share-box__action-wrapper:after {
  content: "";
  border-top: 1px solid var(--neutral-20);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
  bottom: auto;
  top: 0;
}

.is-dark-mode .c-share-box__action-wrapper:after, .c-share-box__action-wrapper .is-dark-mode:after {
  content: "";
  border-top: 1px solid var(--neutral-30);
  width: calc(100% - 2em);
  position: absolute;
  bottom: 0;
  left: 1em;
  bottom: auto;
  top: 0;
}

.c-share-box__action-options {
  flex: 1 1 auto;
}

.c-share-box__actions {
  flex: 0 0 auto;
  margin-left: auto;
}

.c-share-box__images {
  padding: 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
}

.c-share-box__files {
  padding: 1rem 1rem;
}

.c-share-box__image-item {
  flex: 1 0 50%;
  padding: 1px;
}

.c-share-box__image-wrapper {
  position: relative;
  overflow: hidden;
  position: relative;
}

.c-share-box__image-wrapper:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}

.c-share-box__image-wrapper > iframe, .c-share-box__image-wrapper > video, .c-share-box__image-wrapper > .video-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.c-share-box__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.c-share-box__image-error {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#FF000000", GradientType=0);
}

.c-share-box__remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.c-share-box__video-wrapper {
  position: relative;
}

.c-share-box__video {
  width: 100%;
  display: block;
  margin-top: 1px;
  background: black;
}

.c-share-box__video:focus {
  outline: none;
}

.c-status-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.c-status-list__link {
  display: flex;
  align-items: center;
}

.c-status-list__bullet {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  border-radius: 100%;
  background: var(--neutral-45);
  padding: 4px;
}

.c-status-list__item.is-pending .c-status-list__bullet {
  padding: 8px;
}

.c-status-list__bullet:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.c-status-list__item.is-active .c-status-list__bullet:after {
  background: var(--color-success);
}

.c-status-list__item.is-pending .c-status-list__bullet:after {
  background: #e4c442;
}

.c-status-list__label {
  display: inline-block;
  padding: 0.25rem 0;
  font-weight: 600;
}

.c-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.c-steps:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0.5rem;
  bottom: 0;
  border-left: 1px solid var(--neutral-20);
}

.c-steps--horizontal {
  display: inline-flex;
}

.c-steps--horizontal:after {
  top: 0.5rem;
  left: 0;
  right: 0;
  bottom: auto;
  border-left: none;
  border-top: 1px solid var(--neutral-20);
}

.c-steps__tab {
  position: relative;
  z-index: 1;
}

.c-steps__tab:focus {
  outline: none;
}

.c-steps__tab:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  border-radius: 100%;
  background: var(--neutral-20);
}

.c-steps__tab.is-active:before {
  background: var(--primary-40);
}

.c-steps__label {
  display: inline-block;
  padding: 0.5rem 0;
  cursor: pointer;
}

.c-table {
  width: 100%;
}

.c-table__heading {
  text-align: left;
  font-weight: bold;
  padding: 1em;
}

.c-table__heading--price {
  text-align: right;
}

.c-table__heading--ammount {
  text-align: center;
}

.c-table__cell {
  padding: 0.5rem;
  text-align: left;
  overflow: auto;
  vertical-align: middle;
  border-bottom: 1px solid var(--neutral-20);
  position: relative;
}

.c-table__cell--no-wrap {
  white-space: nowrap;
}

.c-table__row--heading .c-table__cell {
  border-bottom: none;
  font-size: 1.25rem;
  color: var(--primary-40);
}

.c-table__cell--avatar {
  border: none;
  width: 5rem;
}

.c-table__row--total .c-table__cell {
  border: none;
  border-top: 1px solid var(--neutral-20);
}

.c-table__row--subtotals .c-table__cell, .c-table__cell--spacer {
  border: none !important;
}

.c-table__cell--price {
  text-align: right;
}

.c-table__cell--ammount {
  text-align: center;
}

.c-table__cell--heading {
  text-align: right;
  font-weight: bold;
}

.c-table--scrolling {
  white-space: nowrap;
  width: 100%;
  overflow: auto;
}

@media (min-width: 768px) {
  .c-table--scrolling {
    overflow: auto;
    white-space: normal;
  }
}

.c-table__delete {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-tabs__tabslist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-tabs__tab {
  display: inline-block;
  padding: 1rem 0;
  margin-right: 1rem;
}

.c-tabs__link {
  font-weight: bold;
  color: var(--neutral-30);
}

.c-tabs__link.is-active {
  color: var(--neutral-50);
  text-decoration: underline;
}

.c-tabs__section {
  display: none;
}

.c-tabs__section.is-active {
  display: block;
}

.tooltip {
  display: block !important;
  z-index: 20;
}

.tooltip .tooltip-inner {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 16px;
  padding: 5px 10px 4px !important;
}

.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}

.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}

.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=right] {
  margin-left: 5px;
}

.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip[x-placement^=left] {
  margin-right: 5px;
}

.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}

.tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}

.tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}

.c-user-adder {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
}

.c-user-adder__users {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  transition: 300ms ease all;
}

.c-user-adder__user {
  transition: 300ms ease all;
  margin-left: -0.5rem;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.c-user-adder__user.adder-enter-active, .c-user-adder__user.adder-leave-to {
  flex: 0 0 0;
  width: 0;
  margin-left: 0;
}

.c-user-adder__user.adder-enter-to, .c-user-adder__user.adder-leave {
  flex: 0 0 2rem;
  width: 2rem;
  margin-left: -0.5rem;
}

.c-user-adder__user:nth-child(1).adder-leave-to {
  opacity: 0;
  transform: translateX(2.5rem);
}

.c-user-adder__user:nth-child(1).adder-enter {
  transform: translateX(2.5rem);
}

.c-user-adder__user:nth-child(1).adder-enter-to {
  transform: translateX(0);
}

.c-user-adder__user-avatar {
  float: right;
}

.c-user-adder__avatar {
  display: block;
}

.c-user-adder__counter {
  display: block;
  padding: 0 0.25rem;
  height: 2rem;
  line-height: 2rem;
  cursor: pointer;
}

.c-user-adder--diapos .c-user-adder__counter {
  color: var(--body-color-faded);
}

.c-user-adder .trigger {
  display: block !important;
  align-items: center;
}

.c-user-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-user-list__list {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.c-user-list--big-list .c-user-list__list {
  margin-top: 1rem;
}

.c-user-list__list:first-child {
  margin: 0;
}

.c-user-list__link {
  flex: 0 1 auto;
  overflow: hidden;
}

.c-user-list__link:hover {
  text-decoration: none;
}

.c-user-list__actions {
  flex: 0 0 auto;
}

.c-input-drop-upload__input {
  background: rgba(255, 255, 255, 0);
  overflow: hidden;
  position: fixed;
  width: 1px;
  height: 1px;
  z-index: -1;
  opacity: 0;
}

.c-input-drop-upload__dropzone {
  background: var(--neutral-10);
  border: 1px dashed var(--primary-40);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.c-input-drop-upload__dropzone.is-active {
  background: var(--neutral-20);
  border: 2px dashed var(--primary-40);
}

.c-input-drop-upload__icon {
  display: block;
  font-size: 3em;
  color: var(--primary-40);
}

.c-input-drop-upload__example {
  width: 3rem;
}

.c-checklist--diapos .c-checklist__item:before {
  color: white;
}

/* purgecss end ignore */

/*
  This layer beats – or 'trumps' – all other layers, and has the power to override anything at all that has gone before it.
  It is inelegant and heavy-handed, and contains utility and helper classes, hacks and overrides.

  A lot of the declarations in this layer will carry !important (e.g. .text-center { text-align: centre !important; }).
  This is the highest specificity layer – it includes the most explicit types of rule, with the most narrow focus.
  This layer forms the point of the Triangle.
*/

.u-overflow {
  display: flex;
  flex-flow: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  width: 100%;
}

.u-overflow.u-overflow--pull-borders {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  width: auto;
}

@media (max-width: 250px) {
  .u-overflow--smallest-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--smallest-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 320px) {
  .u-overflow--mobile-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--mobile-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 450px) {
  .u-overflow--mobile-large-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--mobile-large-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 600px) {
  .u-overflow--tablet-small-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--tablet-small-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 768px) {
  .u-overflow--tablet-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--tablet-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 900px) {
  .u-overflow--tablet-large-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--tablet-large-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 1280px) {
  .u-overflow--desktop-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--desktop-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

@media (max-width: 1920px) {
  .u-overflow--xl-x {
    display: flex;
    flex-flow: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    width: 100%;
  }

  .u-overflow--xl-x.u-overflow--pull-borders {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: auto;
  }
}

.u-overflow__item {
  flex: 1 0 250px;
  padding: 0 0.5rem;
}

.u-text-diapos {
  color: var(--neutral-00);
}

.u-animate__fade-out {
  -webkit-animation: fadeOut 400ms ease;
          animation: fadeOut 400ms ease;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 100%;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 100%;
  }

  to {
    opacity: 0;
  }
}

/* purgecss start ignore */

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 2.5rem;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  touch-action: manipulation;
}

.multiselectfieldset[disabled] {
  pointer-events: none;
}

.multiselect * {
  box-sizing: border-box;
}

.multiselect .multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: #fff;
  display: block;
}

.multiselect .multiselect__spinner:before,
.multiselect .multiselect__spinner:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border-color: #41B883 transparent transparent;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 0 1px transparent;
}

.multiselect .multiselect__spinner:before {
  -webkit-animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
          animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.multiselect .multiselect__spinner:after {
  -webkit-animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
          animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.multiselect .multiselect__loading-enter-active,
.multiselect .multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.multiselect .multiselect__loading-enter,
.multiselect .multiselect__loading-leave-active {
  opacity: 0;
}

.multiselect .multiselect__input,
.multiselect .multiselect__single {
  margin-top: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  touch-action: manipulation;
}

.is-dark-mode .multiselect .multiselect__input, .multiselect .multiselect__input .is-dark-mode,
.is-dark-mode .multiselect .multiselect__single,
.multiselect .multiselect__single .is-dark-mode {
  color: var(--neutral-60);
}

.multiselect .multiselect:focus {
  outline: none;
}

.multiselect .multiselect--disabled {
  pointer-events: none;
  opacity: 0.6;
}

.multiselect .multiselect--active {
  z-index: 50;
}

.multiselect .multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect .multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect .multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.multiselect .multiselect--active .multiselect__select {
  transform: rotateZ(180deg);
}

.multiselect .multiselect--above.multiselect--active .multiselect__current,
.multiselect .multiselect--above.multiselect--active .multiselect__input,
.multiselect .multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.multiselect .multiselect__input,
.multiselect .multiselect__single {
  position: relative;
  display: inline-block;
  border: none;
  background: transparent;
  width: 100%;
}

.multiselect .multiselect__tag ~ .multiselect__input,
.multiselect .multiselect__tag ~ .multiselect__single {
  width: auto;
}

.multiselect .multiselect__input:hover,
.multiselect .multiselect__single:hover {
  border-color: #cfcfcf;
}

.multiselect .multiselect__input:focus,
.multiselect .multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none;
}

.multiselect .multiselect__tags-wrap {
  display: inline;
}

.multiselect .multiselect__tags {
  min-height: 2.5rem;
  display: block;
  padding: 0 1rem;
  padding-bottom: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-30);
  background: var(--neutral-10);
}

.multiselect .multiselect__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  padding-right: 1.5rem;
  margin-right: 0.25rem;
  margin-top: 0.5rem;
  background: var(--neutral-60);
  color: var(--neutral-00);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
  min-height: 1.5rem;
  vertical-align: middle;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.multiselect .multiselect__tag-icon {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-style: initial;
  width: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.multiselect .multiselect__tag-icon:after {
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

.multiselect .multiselect__tag-icon:focus, .multiselect .multiselect__tag-icon:hover {
  background: var(--neutral-50);
  border-radius: 0 2rem 2rem 0;
}

.multiselect .multiselect__tag-icon .multiselect__tag-icon:focus:after,
.multiselect .multiselect__tag-icon:hover:after {
  color: white;
}

.multiselect .multiselect__current {
  line-height: 16px;
  min-height: 40px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  padding: 8px 12px 0;
  padding-right: 30px;
  white-space: nowrap;
  margin: 0;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  cursor: pointer;
}

.multiselect .multiselect__select {
  line-height: 16px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.multiselect .multiselect__select:before {
  position: absolute;
  top: 0;
  height: 100%;
  right: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

.multiselect .multiselect__placeholder {
  color: #ADADAD;
  display: inline-block;
  margin-top: 0.5rem;
}

.multiselect .multiselect--active .multiselect__placeholder {
  display: none;
}

.multiselect .multiselect__content-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--neutral-30);
  border-top: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
  background: var(--neutral-10);
  transform: translateY(-0.5rem);
  padding-top: 1rem;
}

.multiselect .multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}

.multiselect .multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  border-top: 1px solid #E8E8E8;
}

.multiselect .multiselect__content::webkit-scrollbar {
  display: none;
}

.multiselect .multiselect__element {
  display: block;
}

.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.multiselect__element .multiselect__option:before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Pro";
  color: var(--neutral-40);
  margin-right: 0.5rem;
  font-weight: 300;
}

.multiselect__element .multiselect__option--group {
  font-weight: bold;
}

.multiselect__element .multiselect__option--group:before {
  content: "\f5fd";
}

.multiselect .multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
}

.multiselect .multiselect__option--highlight {
  background: var(--neutral-20);
  outline: none;
}

.multiselect .multiselect__option--highlight:after {
  content: attr(data-select);
  font-weight: normal;
  font-size: 0.75rem;
  color: var(--neutral-50);
  background: var(--neutral-20);
}

.multiselect .multiselect__option--selected {
  color: var(--neutral-40);
}

.multiselect .multiselect__option--selected:before {
  content: "\f14a";
  font-family: "Font Awesome 5 Pro";
  margin-right: 0.5rem;
  font-weight: 600;
}

.multiselect .multiselect__option--selected.multiselect__option--highlight:after {
  color: #FF6A6A;
  content: attr(data-deselect);
}

.multiselect .multiselect--disabled {
  background: #ededed;
  pointer-events: none;
}

.multiselect .multiselect--disabled .multiselect__current,
.multiselect .multiselect--disabled .multiselect__select {
  background: #ededed;
  color: #a6a6a6;
}

.multiselect .multiselect__option--disabled {
  background: #ededed;
  color: #a6a6a6;
  cursor: text;
  pointer-events: none;
}

.multiselect .multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede !important;
}

.multiselect .multiselect-enter-active,
.multiselect .multiselect-leave-active {
  transition: all 0.15s ease;
}

.multiselect .multiselect-enter,
.multiselect .multiselect-leave-active {
  opacity: 0;
}

.multiselect .multiselect__strong {
  margin-bottom: 10px;
  display: inline-block;
}

.multiselect *[dir=rtl] {
  text-align: right;
}

.multiselect *[dir=rtl] .multiselect__select {
  right: auto;
  left: 1px;
}

.multiselect *[dir=rtl] .multiselect__tags {
  padding: 8px 8px 0px 40px;
}

.multiselect *[dir=rtl] .multiselect__content {
  text-align: right;
}

.multiselect *[dir=rtl] .multiselect__option:after {
  right: auto;
  left: 0;
}

.multiselect *[dir=rtl] .multiselect__clear {
  right: auto;
  left: 12px;
}

.multiselect *[dir=rtl] .multiselect__spinner {
  right: auto;
  left: 1px;
}

@-webkit-keyframes spinning {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(2turn);
  }
}

@keyframes spinning {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(2turn);
  }
}

.tribute-container {
  background: var(--neutral-00);
  border: 1px solid var(--neutral-10);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  z-index: 30;
  max-height: 300px;
  overflow: auto;
}

.tribute-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tribute-container li {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--neutral-10);
}

.tribute-container li:hover, .tribute-container li.highlight {
  background: var(--neutral-10);
  cursor: pointer;
}

.tribute-container__search-tag span {
  color: var(--primary-40);
}

/* Make clicks pass-through */

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: var(--primary-40);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Fancy blur effect */

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--primary-40), 0 0 5px var(--primary-40);
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: var(--primary-40);
  border-left-color: var(--primary-40);
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.video-js :focus:not(:focus-visible) {
  outline: none;
}

.video-js .vjs-big-play-button {
  border-radius: 5rem !important;
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;

  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");

  font-weight: normal;

  font-style: normal;
}

.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f120";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 5rem;
  height: 5rem;
  width: 5rem;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -2.5rem;
  margin-left: -2.5rem;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: rgba(84, 84, 84, 0);
  background-color: rgba(84, 84, 84, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: rgba(84, 84, 84, 0);
  background-color: rgba(84, 84, 84, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: transparent;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(0, 0, 0, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(84, 84, 84, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(84, 84, 84, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: rgba(84, 84, 84, 0);
  background-color: rgba(84, 84, 84, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster {
  display: block;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
          animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}

@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}

@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: rgba(84, 84, 84, 0);
  }

  20% {
    border-top-color: rgba(84, 84, 84, 0);
  }

  35% {
    border-top-color: white;
  }

  60% {
    border-top-color: rgba(84, 84, 84, 0);
  }

  100% {
    border-top-color: rgba(84, 84, 84, 0);
  }
}

@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: rgba(84, 84, 84, 0);
  }

  20% {
    border-top-color: rgba(84, 84, 84, 0);
  }

  35% {
    border-top-color: white;
  }

  60% {
    border-top-color: rgba(84, 84, 84, 0);
  }

  100% {
    border-top-color: rgba(84, 84, 84, 0);
  }
}

.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f11d";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }

  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }

  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }

  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}

.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, rgba(84, 84, 84, 0) 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, rgba(84, 84, 84, 0) 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}

.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

/* purgecss end ignore */

.c-auth-page__promoted {
  --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));
}

.u-hyphens-auto {
  -webkit-hyphens: auto;
          hyphens: auto;
}

ul {
  line-height: 1.5em;
}

.c-btn--secundary {
  background: var(--secundary-40);
  color: white;
}

.c-input__help a {
  text-decoration: underline;
}

@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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-divide-opacity)) !important;
  }

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

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

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

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

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

  .mobile-large\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .mobile-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .mobile-large\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .mobile-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .mobile-large\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .mobile-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .mobile-large\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .mobile-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .mobile-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .mobile-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .mobile-large\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .mobile-large\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .mobile-large\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .mobile-large\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile-large\:u-from-neutral-15{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:u-from-neutral-50{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .mobile-large\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .mobile-large\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .mobile-large\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .mobile-large\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .mobile-large\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .mobile-large\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\: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: #F0F9ED !important;
  }

  .mobile-large\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .mobile-large\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .mobile-large\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .mobile-large\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .mobile-large\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .mobile-large\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .mobile-large\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .mobile-large\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .mobile-large\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .mobile-large\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .mobile-large\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .mobile-large\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .mobile-large\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .mobile-large\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .mobile-large\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .mobile-large\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .mobile-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .mobile-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .mobile-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #484848 !important;
  }

  .mobile-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .mobile-large\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .mobile-large\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .mobile-large\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .mobile-large\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .mobile-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .mobile-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .mobile-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #484848 !important;
  }

  .mobile-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .mobile-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .mobile-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .mobile-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .mobile-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .mobile-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .mobile-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .mobile-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\: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: #F0F9ED !important;
  }

  .mobile-large\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .mobile-large\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .mobile-large\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .mobile-large\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .mobile-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .mobile-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .mobile-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #484848 !important;
  }

  .mobile-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #484848 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #484848 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-divide-opacity)) !important;
  }

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

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

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

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

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

  .tablet-small\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet-small\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .tablet-small\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet-small\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .tablet-small\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet-small\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .tablet-small\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet-small\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet-small\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet-small\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-small\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-small\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-small\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-small\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-small\:u-from-neutral-15{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:u-from-neutral-50{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-small\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-small\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-small\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-small\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-small\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-small\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\: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: #F0F9ED !important;
  }

  .tablet-small\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet-small\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet-small\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .tablet-small\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-small\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .tablet-small\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .tablet-small\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-small\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-small\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-small\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-small\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .tablet-small\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .tablet-small\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet-small\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet-small\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .tablet-small\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-small\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-small\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-small\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #484848 !important;
  }

  .tablet-small\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .tablet-small\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet-small\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet-small\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .tablet-small\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-small\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-small\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-small\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #484848 !important;
  }

  .tablet-small\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-small\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-small\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-small\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-small\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet-small\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet-small\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet-small\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\: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: #F0F9ED !important;
  }

  .tablet-small\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet-small\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet-small\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet-small\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-small\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-small\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-small\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet-small\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-divide-opacity)) !important;
  }

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

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

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

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

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

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

  .tablet\:u-divide-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .tablet\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .tablet\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .tablet\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet\:u-from-neutral-15{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:u-from-neutral-50{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\: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: #F0F9ED !important;
  }

  .tablet\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .tablet\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .tablet\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .tablet\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .tablet\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .tablet\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !important;
  }

  .tablet\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #47872D !important;
  }

  .tablet\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .tablet\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #484848 !important;
  }

  .tablet\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .tablet\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !important;
  }

  .tablet\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #47872D !important;
  }

  .tablet\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .tablet\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #484848 !important;
  }

  .tablet\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .u-group:hover .tablet\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .tablet\:u-placeholder-neutral-45::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .tablet\:focus\:u-placeholder-neutral-45:focus::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\: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: #F0F9ED !important;
  }

  .tablet\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !important;
  }

  .tablet\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .tablet\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #47872D !important;
  }

  .tablet\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !important;
  }

  .tablet\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .tablet\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .tablet\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-divide-opacity)) !important;
  }

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

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

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

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

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

  .tablet-large\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .tablet-large\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .tablet-large\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .tablet-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .tablet-large\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .tablet-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-large\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-large\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-large\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-large\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-large\:u-from-neutral-15{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:u-from-neutral-50{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-large\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-large\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-large\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-large\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-large\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-large\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\: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: #F0F9ED !important;
  }

  .tablet-large\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet-large\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet-large\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .tablet-large\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .tablet-large\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .tablet-large\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .tablet-large\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .tablet-large\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-large\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-large\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-large\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .tablet-large\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .tablet-large\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet-large\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet-large\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .tablet-large\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #484848 !important;
  }

  .tablet-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .tablet-large\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .tablet-large\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .tablet-large\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .tablet-large\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #484848 !important;
  }

  .tablet-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .tablet-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .tablet-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\: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: #F0F9ED !important;
  }

  .tablet-large\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet-large\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet-large\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet-large\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #484848 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-divide-opacity)) !important;
  }

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

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

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

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

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

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

  .desktop\:u-divide-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

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

  .desktop\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .desktop\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .desktop\: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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

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

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

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

  .desktop\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .desktop\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .desktop\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .desktop\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

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

  .desktop\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .desktop\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .desktop\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .desktop\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .desktop\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .desktop\:u-from-neutral-15{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:u-from-neutral-50{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .desktop\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\: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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .desktop\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .desktop\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .desktop\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .desktop\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .desktop\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\: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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\: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: #F0F9ED !important;
  }

  .desktop\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .desktop\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .desktop\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .desktop\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .desktop\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .desktop\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .desktop\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .desktop\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .desktop\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .desktop\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .desktop\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .desktop\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .desktop\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .desktop\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !important;
  }

  .desktop\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #47872D !important;
  }

  .desktop\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .desktop\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .desktop\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .desktop\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .desktop\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .desktop\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #484848 !important;
  }

  .desktop\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .desktop\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .desktop\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .desktop\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !important;
  }

  .desktop\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #5DB13B !important;
  }

  .desktop\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #47872D !important;
  }

  .desktop\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .desktop\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .desktop\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .desktop\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .desktop\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .desktop\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #484848 !important;
  }

  .desktop\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .desktop\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .u-group:hover .desktop\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .desktop\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .desktop\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

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

  .desktop\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .desktop\:u-placeholder-neutral-45::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

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

  .desktop\:focus\:u-placeholder-neutral-45:focus::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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .desktop\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .desktop\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\: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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

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

  .desktop\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\: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: #F0F9ED !important;
  }

  .desktop\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .desktop\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .desktop\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !important;
  }

  .desktop\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #5DB13B !important;
  }

  .desktop\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #47872D !important;
  }

  .desktop\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !important;
  }

  .desktop\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F5F5F5 !important;
  }

  .desktop\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .desktop\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .desktop\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .desktop\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #484848 !important;
  }

  .desktop\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #484848 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .desktop\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .desktop\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .desktop\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .desktop\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #484848 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

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

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

  .dark-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(72, 72, 72, var(--tw-divide-opacity)) !important;
  }

  .dark-mode\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .dark-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:u-border-neutral-60{
    --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-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

  .u-group:hover .dark-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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

  .dark-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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

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

  .dark-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .dark-mode\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:u-bg-neutral-60{
    --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-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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .dark-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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark-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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .dark-mode\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .dark-mode\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .dark-mode\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .dark-mode\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .dark-mode\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark-mode\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark-mode\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark-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: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .dark-mode\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .dark-mode\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark-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: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .dark-mode\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .dark-mode\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark-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: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .dark-mode\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .dark-mode\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .dark-mode\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .dark-mode\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .dark-mode\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark-mode\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark-mode\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 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), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .dark-mode\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .dark-mode\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark-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), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .dark-mode\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .dark-mode\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark-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), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .dark-mode\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark-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: #F0F9ED !important;
  }

  .dark-mode\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .dark-mode\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .dark-mode\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .dark-mode\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .dark-mode\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .dark-mode\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .dark-mode\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .dark-mode\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .dark-mode\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .dark-mode\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .dark-mode\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .dark-mode\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .dark-mode\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .dark-mode\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .dark-mode\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .dark-mode\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .dark-mode\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .dark-mode\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .dark-mode\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !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: #484848 !important;
  }

  .dark-mode\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .dark-mode\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .dark-mode\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .dark-mode\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .dark-mode\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .dark-mode\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .dark-mode\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !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: #484848 !important;
  }

  .dark-mode\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark-mode\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .dark-mode\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark-mode\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .dark-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(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark-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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .dark-mode\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, 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: #F0F9ED !important;
  }

  .dark-mode\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .dark-mode\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .dark-mode\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .dark-mode\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .dark-mode\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .dark-mode\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !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: #484848 !important;
  }

  .dark-mode\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !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: #484848 !important;
  }

  .dark-mode\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .dark-mode\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !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: #484848 !important;
  }

  .dark-mode\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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(240, 249, 237, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

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

  .light-mode\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-divide-opacity)) !important;
  }

  .light-mode\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .light-mode\:u-border-neutral-60{
    --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-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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

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

  .u-group:hover .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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

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

  .light-mode\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .light-mode\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(219, 240, 210, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(176, 222, 157, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-border-opacity)) !important;
  }

  .light-mode\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:u-bg-neutral-60{
    --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-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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(219, 240, 210, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(176, 222, 157, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-bg-opacity)) !important;
  }

  .light-mode\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, 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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .light-mode\:u-from-primary-10{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .light-mode\:u-from-primary-20{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .light-mode\:u-from-primary-30{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .light-mode\:u-from-primary-60{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .light-mode\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .light-mode\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .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: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .light-mode\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .light-mode\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .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: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .light-mode\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .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: #F0F9ED !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #DBF0D2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #B0DE9D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #84CC67 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(132, 204, 103, 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: #47872D !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .light-mode\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #315D1F !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 93, 31, 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: #FAFAFA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 250, 250, 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: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .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: #484848 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .light-mode\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .light-mode\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .light-mode\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .light-mode\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .light-mode\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .light-mode\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .light-mode\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 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), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .light-mode\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .light-mode\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 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), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .light-mode\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 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), #F0F9ED, var(--tw-gradient-to, rgba(240, 249, 237, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #DBF0D2, var(--tw-gradient-to, rgba(219, 240, 210, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B0DE9D, var(--tw-gradient-to, rgba(176, 222, 157, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #84CC67, var(--tw-gradient-to, rgba(132, 204, 103, 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), #47872D, var(--tw-gradient-to, rgba(71, 135, 45, 0)) !important;
  }

  .light-mode\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #315D1F, var(--tw-gradient-to, rgba(49, 93, 31, 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), #FAFAFA, var(--tw-gradient-to, rgba(250, 250, 250, 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), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 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), #484848, var(--tw-gradient-to, rgba(72, 72, 72, 0)) !important;
  }

  .light-mode\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 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: #F0F9ED !important;
  }

  .light-mode\:u-to-primary-10{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .light-mode\:u-to-primary-20{
    --tw-gradient-to: #B0DE9D !important;
  }

  .light-mode\:u-to-primary-30{
    --tw-gradient-to: #84CC67 !important;
  }

  .light-mode\:u-to-primary-40{
    --tw-gradient-to: #5DB13B !important;
  }

  .light-mode\:u-to-primary-50{
    --tw-gradient-to: #47872D !important;
  }

  .light-mode\:u-to-primary-60{
    --tw-gradient-to: #315D1F !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: #FAFAFA !important;
  }

  .light-mode\:u-to-neutral-15{
    --tw-gradient-to: #F5F5F5 !important;
  }

  .light-mode\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .light-mode\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .light-mode\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .light-mode\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .light-mode\:u-to-neutral-50{
    --tw-gradient-to: #484848 !important;
  }

  .light-mode\:u-to-neutral-60{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .light-mode\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .light-mode\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #B0DE9D !important;
  }

  .light-mode\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .light-mode\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .light-mode\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .light-mode\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !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: #484848 !important;
  }

  .light-mode\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !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: #F0F9ED !important;
  }

  .light-mode\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #DBF0D2 !important;
  }

  .light-mode\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #B0DE9D !important;
  }

  .light-mode\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #84CC67 !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: #47872D !important;
  }

  .light-mode\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .light-mode\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .light-mode\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !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: #484848 !important;
  }

  .light-mode\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .light-mode\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .light-mode\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .light-mode\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-text-opacity)) !important;
  }

  .light-mode\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(240, 249, 237, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(219, 240, 210, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(176, 222, 157, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(71, 135, 45, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 93, 31, 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(250, 250, 250, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 250, 250, 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(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 72, 72, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .light-mode\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, 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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .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(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .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(240, 249, 237, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(219, 240, 210, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(176, 222, 157, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(132, 204, 103, 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(71, 135, 45, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 93, 31, 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(250, 250, 250, 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(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, 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(72, 72, 72, var(--tw-ring-opacity)) !important;
  }

  .light-mode\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, 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: #F0F9ED !important;
  }

  .light-mode\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .light-mode\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .light-mode\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .light-mode\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .light-mode\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .light-mode\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !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: #484848 !important;
  }

  .light-mode\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .light-mode\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !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: #484848 !important;
  }

  .light-mode\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !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: #F0F9ED !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #DBF0D2 !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #B0DE9D !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #84CC67 !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: #47872D !important;
  }

  .light-mode\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #315D1F !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: #FAFAFA !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: #e3e3e3 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !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: #484848 !important;
  }

  .light-mode\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !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;
  }
}
