:root {
    --toastify-color-dark: #121212
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translateZ(var(--toastify-z-index));
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width:480px) {
    .Toastify__toast-container {
        width: 100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: auto
    }
}

.Toastify__toast {
    position: relative;
    min-height: var(--toastify-toast-min-height);
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    display: flex;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    overflow: hidden;
    font-family: var(--toastify-font-family);
    cursor: default;
    direction: ltr;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    margin: auto 0;
    flex: 1 1 auto;
    padding: 6px;
    display: flex;
    align-items: center
}

.Toastify__toast-body>div:last-child {
    word-break: break-word;
    flex: 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    width: 20px;
    flex-shrink: 0;
    display: flex
}

.Toastify--animate {
    animation-fill-mode: both;
    animation-duration: .7s
}

.Toastify--animate-icon {
    animation-fill-mode: both;
    animation-duration: .3s
}

@media only screen and (max-width:480px) {
    .Toastify__toast {
        margin-bottom: 0;
        border-radius: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease;
    align-self: flex-start
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: var(--toastify-z-index);
    opacity: .7;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: auto;
    transform-origin: right
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid;
    border-radius: 100%;
    border-color: var(--toastify-spinner-color-empty-area);
    border-right-color: var(--toastify-spinner-color);
    animation: Toastify__spin .65s linear infinite
}

@keyframes Toastify__bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .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: none
    }
}

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

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

@keyframes Toastify__bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .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: none
    }
}

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

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

@keyframes Toastify__bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        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: translateZ(0)
    }
}

@keyframes Toastify__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 Toastify__bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .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: none
    }
}

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

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

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

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

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

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

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

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

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

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

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

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

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 500px, 0)
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -500px, 0)
    }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

/*
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
*/
*,
:after,
:before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb
}

:after,
:before {
    --tw-content: ""
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

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

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

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

b,
strong {
    font-weight: bolder
}

code,
kbd,
pre,
samp {
    font-family: PsyopMonoWhyteInktrapMono-Regular, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

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

progress {
    vertical-align: baseline
}

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

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

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

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

fieldset {
    margin: 0
}

fieldset,
legend {
    padding: 0
}

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

textarea {
    resize: vertical
}

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

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

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

:disabled {
    cursor: default
}

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

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

[hidden] {
    display: none
}

*,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia:
}

.container {
    width: 100%
}

@media (min-width:640px) {
    .container {
        max-width: 640px
    }
}

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

@media (min-width:1024px) {
    .container {
        max-width: 1024px
    }
}

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

@media (min-width:1536px) {
    .container {
        max-width: 1536px
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.pointer-events-none {
    pointer-events: none
}

.pointer-events-auto {
    pointer-events: auto
}

.\!visible {
    visibility: visible !important
}

.visible {
    visibility: visible
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.sticky {
    position: sticky
}

.-bottom-12 {
    bottom: -3rem
}

.-bottom-6 {
    bottom: -1.5rem
}

.-bottom-8 {
    bottom: -2rem
}

.-bottom-px {
    bottom: -1px
}

.-left-\[10vw\] {
    left: -10vw
}

.-left-\[6vw\] {
    left: -6vw
}

.-left-px {
    left: -1px
}

.-right-10 {
    right: -2.5rem
}

.-right-2 {
    right: -.5rem
}

.-right-8 {
    right: -2rem
}

.-right-\[14vw\] {
    right: -14vw
}

.-right-px {
    right: -1px
}

.-top-\[10vw\] {
    top: -10vw
}

.-top-px {
    top: -1px
}

.bottom-0 {
    bottom: 0
}

.bottom-12 {
    bottom: 3rem
}

.bottom-20 {
    bottom: 5rem
}

.bottom-24 {
    bottom: 6rem
}

.bottom-8 {
    bottom: 2rem
}

.left-0 {
    left: 0
}

.left-1 {
    left: .25rem
}

.left-1\/2 {
    left: 50%
}

.left-11 {
    left: 2.75rem
}

.left-2 {
    left: .5rem
}

.left-24 {
    left: 6rem
}

.left-4 {
    left: 1rem
}

.left-8 {
    left: 2rem
}

.left-\[50\%\] {
    left: 50%
}

.left-\[5vw\] {
    left: 5vw
}

.left-\[75\%\] {
    left: 75%
}

.left-\[calc\(49\%\)\] {
    left: calc(49%)
}

.left-\[calc\(50\%-1vw\)\] {
    left: calc(50% - 1vw)
}

.right-0 {
    right: 0
}

.right-11 {
    right: 2.75rem
}

.right-20 {
    right: 5rem
}

.right-4 {
    right: 1rem
}

.right-\[2vw\] {
    right: 2vw
}

.right-\[3vw\] {
    right: 3vw
}

.top-0 {
    top: 0
}

.top-1\/2 {
    top: 50%
}

.top-12 {
    top: 3rem
}

.top-2 {
    top: .5rem
}

.top-20 {
    top: 5rem
}

.top-3 {
    top: .75rem
}

.top-4 {
    top: 1rem
}

.top-\[1\%\] {
    top: 1%
}

.top-\[24vw\] {
    top: 24vw
}

.top-\[30vh\] {
    top: 30vh
}

.top-\[3vw\] {
    top: 3vw
}

.top-\[50\%\] {
    top: 50%
}

.top-\[calc\(50\%-36px\)\] {
    top: calc(50% - 36px)
}

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.z-\[-1\] {
    z-index: -1
}

.z-\[100\] {
    z-index: 100
}

.z-\[9999\] {
    z-index: 9999
}

.col-span-1 {
    grid-column: span 1/span 1
}

.col-span-2 {
    grid-column: span 2/span 2
}

.col-span-3 {
    grid-column: span 3/span 3
}

.col-span-4 {
    grid-column: span 4/span 4
}

.m-auto {
    margin: auto
}

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

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

.mx-0 {
    margin-left: 0;
    margin-right: 0
}

.mx-0\.5 {
    margin-left: .125rem;
    margin-right: .125rem
}

.mx-1 {
    margin-left: .25rem;
    margin-right: .25rem
}

.mx-2 {
    margin-left: .5rem;
    margin-right: .5rem
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

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

.my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem
}

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

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

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

.my-\[10vh\] {
    margin-top: 10vh;
    margin-bottom: 10vh
}

.-mb-5 {
    margin-bottom: -1.25rem
}

.-mb-9 {
    margin-bottom: -2.25rem
}

.-mb-\[3vw\] {
    margin-bottom: -3vw
}

.-ml-1 {
    margin-left: -.25rem
}

.-ml-2 {
    margin-left: -.5rem
}

.-ml-8 {
    margin-left: -2rem
}

.-ml-\[\.065em\] {
    margin-left: -.065em
}

.-mr-\[\.085em\] {
    margin-right: -.085em
}

.-mt-0 {
    margin-top: 0
}

.-mt-0\.5 {
    margin-top: -.125rem
}

.-mt-1 {
    margin-top: -.25rem
}

.-mt-2 {
    margin-top: -.5rem
}

.-mt-5 {
    margin-top: -1.25rem
}

.-mt-\[1\.75vw\] {
    margin-top: -1.75vw
}

.-mt-\[15vw\] {
    margin-top: -15vw
}

.-mt-\[4\.25vw\] {
    margin-top: -4.25vw
}

.mb-0 {
    margin-bottom: 0
}

.mb-0\.5 {
    margin-bottom: .125rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-16 {
    margin-bottom: 4rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-\[10vh\] {
    margin-bottom: 10vh
}

.mb-\[25vh\] {
    margin-bottom: 25vh
}

.mb-\[30vh\] {
    margin-bottom: 30vh
}

.mb-\[50vh\] {
    margin-bottom: 50vh
}

.ml-0 {
    margin-left: 0
}

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-2\.5 {
    margin-left: .625rem
}

.ml-4 {
    margin-left: 1rem
}

.ml-5 {
    margin-left: 1.25rem
}

.ml-8 {
    margin-left: 2rem
}

.ml-\[2vw\] {
    margin-left: 2vw
}

.ml-auto {
    margin-left: auto
}

.mr-0 {
    margin-right: 0
}

.mr-1 {
    margin-right: .25rem
}

.mr-1\.5 {
    margin-right: .375rem
}

.mr-2 {
    margin-right: .5rem
}

.mr-3 {
    margin-right: .75rem
}

.mr-4 {
    margin-right: 1rem
}

.mt-0 {
    margin-top: 0
}

.mt-0\.5 {
    margin-top: .125rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-16 {
    margin-top: 4rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-7 {
    margin-top: 1.75rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-\[-20vh\] {
    margin-top: -20vh
}

.mt-\[-30vh\] {
    margin-top: -30vh
}

.mt-\[1vw\] {
    margin-top: 1vw
}

.mt-\[20vh\] {
    margin-top: 20vh
}

.mt-\[2vw\] {
    margin-top: 2vw
}

.mt-\[30vh\] {
    margin-top: 30vh
}

.mt-\[4rem\] {
    margin-top: 4rem
}

.mt-\[95vh\] {
    margin-top: 95vh
}

.mt-auto {
    margin-top: auto
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.table-cell {
    display: table-cell
}

.flow-root {
    display: flow-root
}

.\!grid {
    display: grid !important
}

.grid {
    display: grid
}

.contents {
    display: contents
}

.hidden {
    display: none
}

.aspect-square {
    aspect-ratio: 1/1
}

.\!h-\[50vh\] {
    height: 50vh !important
}

.h-1 {
    height: .25rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-2 {
    height: .5rem
}

.h-20 {
    height: 5rem
}

.h-24 {
    height: 6rem
}

.h-3 {
    height: .75rem
}

.h-32 {
    height: 8rem
}

.h-36 {
    height: 9rem
}

.h-4 {
    height: 1rem
}

.h-40 {
    height: 10rem
}

.h-44 {
    height: 11rem
}

.h-48 {
    height: 12rem
}

.h-5 {
    height: 1.25rem
}

.h-56 {
    height: 14rem
}

.h-6 {
    height: 1.5rem
}

.h-60 {
    height: 15rem
}

.h-8 {
    height: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-\[100svh\] {
    height: 100svh
}

.h-\[10vw\] {
    height: 10vw
}

.h-\[21\.9vw\] {
    height: 21.9vw
}

.h-\[24rem\] {
    height: 24rem
}

.h-\[30vw\] {
    height: 30vw
}

.h-\[3vw\] {
    height: 3vw
}

.h-\[46px\] {
    height: 46px
}

.h-\[50vh\] {
    height: 50vh
}

.h-\[50vw\] {
    height: 50vw
}

.h-\[6vw\] {
    height: 6vw
}

.h-\[75vw\] {
    height: 75vw
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-px {
    height: 1px
}

.h-screen {
    height: 100vh
}

.min-h-\[200px\] {
    min-height: 200px
}

.min-h-\[60vw\] {
    min-height: 60vw
}

.min-h-\[66vh\] {
    min-height: 66vh
}

.min-h-screen {
    min-height: 100vh
}

.w-1\/2 {
    width: 50%
}

.w-1\/3 {
    width: 33.333333%
}

.w-10 {
    width: 2.5rem
}

.w-12 {
    width: 3rem
}

.w-14 {
    width: 3.5rem
}

.w-16 {
    width: 4rem
}

.w-2 {
    width: .5rem
}

.w-2\/3 {
    width: 66.666667%
}

.w-24 {
    width: 6rem
}

.w-3 {
    width: .75rem
}

.w-32 {
    width: 8rem
}

.w-36 {
    width: 9rem
}

.w-4 {
    width: 1rem
}

.w-44 {
    width: 11rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-60 {
    width: 15rem
}

.w-8 {
    width: 2rem
}

.w-96 {
    width: 24rem
}

.w-\[12\.25vw\] {
    width: 12.25vw
}

.w-\[130px\] {
    width: 130px
}

.w-\[200px\] {
    width: 200px
}

.w-\[25vw\] {
    width: 25vw
}

.w-\[28vw\] {
    width: 28vw
}

.w-\[300px\] {
    width: 300px
}

.w-\[3vw\] {
    width: 3vw
}

.w-\[6\%\] {
    width: 6%
}

.w-\[6vw\] {
    width: 6vw
}

.w-\[78vw\] {
    width: 78vw
}

.w-\[96\%\] {
    width: 96%
}

.w-\[96vw\] {
    width: 96vw
}

.w-\[97\%\] {
    width: 97%
}

.w-\[99\%\] {
    width: 99%
}

.w-fit {
    width: -moz-fit-content;
    width: fit-content
}

.w-full {
    width: 100%
}

.w-px {
    width: 1px
}

.w-screen {
    width: 100vw
}

.min-w-full {
    min-width: 100%
}

.max-w-xs {
    max-width: 20rem
}

.flex-1 {
    flex: 1 1 0%
}

.flex-none {
    flex: none
}

.flex-shrink-0 {
    flex-shrink: 0
}

.flex-grow,
.grow {
    flex-grow: 1
}

.grow-0 {
    flex-grow: 0
}

.basis-0 {
    flex-basis: 0px
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%
}

.-translate-x-1\/2,
.-translate-y-1\/2 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%
}

.translate-x-0 {
    --tw-translate-x: 0px
}

.translate-x-0,
.translate-x-\[-47\%\] {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-\[-47\%\] {
    --tw-translate-x: -47%
}

.translate-x-\[-50\%\] {
    --tw-translate-x: -50%
}

.translate-x-\[-50\%\],
.translate-y-\[-30\%\] {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-\[-30\%\] {
    --tw-translate-y: -30%
}

.translate-y-\[-50\%\] {
    --tw-translate-y: -50%
}

.-rotate-90,
.translate-y-\[-50\%\] {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-rotate-90 {
    --tw-rotate: -90deg
}

.rotate-180 {
    --tw-rotate: 180deg
}

.rotate-180,
.rotate-90 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-90 {
    --tw-rotate: 90deg
}

.scale-150 {
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5
}

.scale-150,
.scale-75 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-75 {
    --tw-scale-x: .75;
    --tw-scale-y: .75
}

.scale-90 {
    --tw-scale-x: .9;
    --tw-scale-y: .9
}

.scale-90,
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes marquee {
    0% {
        transform: translateX(10%)
    }

    to {
        transform: translateX(-90%)
    }
}

.animate-marquee {
    animation: marquee 25s linear infinite
}

@keyframes marquee2 {
    0% {
        transform: translateX(110%)
    }

    to {
        transform: translateX(10%)
    }
}

.animate-marquee2 {
    animation: marquee2 25s linear infinite
}

@keyframes marquee3 {
    0% {
        transform: translateX(210%)
    }

    to {
        transform: translateX(110%)
    }
}

.animate-marquee3 {
    animation: marquee3 25s linear infinite
}

@keyframes ping {

    75%,
    to {
        transform: scale(2);
        opacity: 0
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes spin {
    to {
        transform: rotate(1turn)
    }
}

.animate-spin {
    animation: spin 1s linear infinite
}

.cursor-no-drop {
    cursor: no-drop
}

.cursor-pointer {
    cursor: pointer
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.resize {
    resize: both
}

.list-outside {
    list-style-position: outside
}

.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

.flex-wrap {
    flex-wrap: wrap
}

.content-center {
    align-content: center
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.justify-stretch {
    justify-content: stretch
}

.gap-0 {
    gap: 0
}

.gap-2 {
    gap: .5rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-8 {
    gap: 2rem
}

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

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

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

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

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

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

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

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

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

.self-end {
    align-self: flex-end
}

.self-center {
    align-self: center
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-x-hidden {
    overflow-x: hidden
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis
}

.truncate,
.whitespace-nowrap {
    white-space: nowrap
}

.rounded {
    border-radius: .25rem
}

.rounded-3xl {
    border-radius: 1.5rem
}

.rounded-\[2rem\] {
    border-radius: 2rem
}

.rounded-\[3rem\] {
    border-radius: 3rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-md {
    border-radius: .375rem
}

.rounded-sm {
    border-radius: .125rem
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-b-\[4rem\] {
    border-bottom-right-radius: 4rem;
    border-bottom-left-radius: 4rem
}

.rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px
}

.rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px
}

.rounded-t-\[4rem\] {
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem
}

.rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.rounded-tr-lg {
    border-top-right-radius: .5rem
}

.\!border {
    border-width: 1px !important
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-4 {
    border-width: 4px
}

.border-\[0\.5px\],
.border-\[\.5px\] {
    border-width: .5px
}

.border-y-\[0\.5px\] {
    border-top-width: .5px
}

.border-b-\[0\.5px\],
.border-b-\[\.5px\],
.border-y-\[0\.5px\] {
    border-bottom-width: .5px
}

.border-l-\[0\.5px\] {
    border-left-width: .5px
}

.border-r-\[0\.5px\] {
    border-right-width: .5px
}

.border-t-\[0\.5px\],
.border-t-\[\.5px\] {
    border-top-width: .5px
}

.border-none {
    border-style: none
}

.\!border-blue-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(219 234 254/var(--tw-border-opacity)) !important
}

.\!border-blue-100\/0 {
    border-color: rgba(219, 234, 254, 0) !important
}

.\!border-blue-100\/10 {
    border-color: rgba(219, 234, 254, .1) !important
}

.\!border-blue-100\/100 {
    border-color: #dbeafe !important
}

.\!border-blue-100\/20 {
    border-color: rgba(219, 234, 254, .2) !important
}

.\!border-blue-100\/25 {
    border-color: rgba(219, 234, 254, .25) !important
}

.\!border-blue-100\/30 {
    border-color: rgba(219, 234, 254, .3) !important
}

.\!border-blue-100\/40 {
    border-color: rgba(219, 234, 254, .4) !important
}

.\!border-blue-100\/5 {
    border-color: rgba(219, 234, 254, .05) !important
}

.\!border-blue-100\/50 {
    border-color: rgba(219, 234, 254, .5) !important
}

.\!border-blue-100\/60 {
    border-color: rgba(219, 234, 254, .6) !important
}

.\!border-blue-100\/70 {
    border-color: rgba(219, 234, 254, .7) !important
}

.\!border-blue-100\/75 {
    border-color: rgba(219, 234, 254, .75) !important
}

.\!border-blue-100\/80 {
    border-color: rgba(219, 234, 254, .8) !important
}

.\!border-blue-100\/90 {
    border-color: rgba(219, 234, 254, .9) !important
}

.\!border-blue-100\/95 {
    border-color: rgba(219, 234, 254, .95) !important
}

.\!border-blue-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(191 219 254/var(--tw-border-opacity)) !important
}

.\!border-blue-200\/0 {
    border-color: rgba(191, 219, 254, 0) !important
}

.\!border-blue-200\/10 {
    border-color: rgba(191, 219, 254, .1) !important
}

.\!border-blue-200\/100 {
    border-color: #bfdbfe !important
}

.\!border-blue-200\/20 {
    border-color: rgba(191, 219, 254, .2) !important
}

.\!border-blue-200\/25 {
    border-color: rgba(191, 219, 254, .25) !important
}

.\!border-blue-200\/30 {
    border-color: rgba(191, 219, 254, .3) !important
}

.\!border-blue-200\/40 {
    border-color: rgba(191, 219, 254, .4) !important
}

.\!border-blue-200\/5 {
    border-color: rgba(191, 219, 254, .05) !important
}

.\!border-blue-200\/50 {
    border-color: rgba(191, 219, 254, .5) !important
}

.\!border-blue-200\/60 {
    border-color: rgba(191, 219, 254, .6) !important
}

.\!border-blue-200\/70 {
    border-color: rgba(191, 219, 254, .7) !important
}

.\!border-blue-200\/75 {
    border-color: rgba(191, 219, 254, .75) !important
}

.\!border-blue-200\/80 {
    border-color: rgba(191, 219, 254, .8) !important
}

.\!border-blue-200\/90 {
    border-color: rgba(191, 219, 254, .9) !important
}

.\!border-blue-200\/95 {
    border-color: rgba(191, 219, 254, .95) !important
}

.\!border-blue-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(147 197 253/var(--tw-border-opacity)) !important
}

.\!border-blue-300\/0 {
    border-color: rgba(147, 197, 253, 0) !important
}

.\!border-blue-300\/10 {
    border-color: rgba(147, 197, 253, .1) !important
}

.\!border-blue-300\/100 {
    border-color: #93c5fd !important
}

.\!border-blue-300\/20 {
    border-color: rgba(147, 197, 253, .2) !important
}

.\!border-blue-300\/25 {
    border-color: rgba(147, 197, 253, .25) !important
}

.\!border-blue-300\/30 {
    border-color: rgba(147, 197, 253, .3) !important
}

.\!border-blue-300\/40 {
    border-color: rgba(147, 197, 253, .4) !important
}

.\!border-blue-300\/5 {
    border-color: rgba(147, 197, 253, .05) !important
}

.\!border-blue-300\/50 {
    border-color: rgba(147, 197, 253, .5) !important
}

.\!border-blue-300\/60 {
    border-color: rgba(147, 197, 253, .6) !important
}

.\!border-blue-300\/70 {
    border-color: rgba(147, 197, 253, .7) !important
}

.\!border-blue-300\/75 {
    border-color: rgba(147, 197, 253, .75) !important
}

.\!border-blue-300\/80 {
    border-color: rgba(147, 197, 253, .8) !important
}

.\!border-blue-300\/90 {
    border-color: rgba(147, 197, 253, .9) !important
}

.\!border-blue-300\/95 {
    border-color: rgba(147, 197, 253, .95) !important
}

.\!border-blue-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(96 165 250/var(--tw-border-opacity)) !important
}

.\!border-blue-400\/0 {
    border-color: rgba(96, 165, 250, 0) !important
}

.\!border-blue-400\/10 {
    border-color: rgba(96, 165, 250, .1) !important
}

.\!border-blue-400\/100 {
    border-color: #60a5fa !important
}

.\!border-blue-400\/20 {
    border-color: rgba(96, 165, 250, .2) !important
}

.\!border-blue-400\/25 {
    border-color: rgba(96, 165, 250, .25) !important
}

.\!border-blue-400\/30 {
    border-color: rgba(96, 165, 250, .3) !important
}

.\!border-blue-400\/40 {
    border-color: rgba(96, 165, 250, .4) !important
}

.\!border-blue-400\/5 {
    border-color: rgba(96, 165, 250, .05) !important
}

.\!border-blue-400\/50 {
    border-color: rgba(96, 165, 250, .5) !important
}

.\!border-blue-400\/60 {
    border-color: rgba(96, 165, 250, .6) !important
}

.\!border-blue-400\/70 {
    border-color: rgba(96, 165, 250, .7) !important
}

.\!border-blue-400\/75 {
    border-color: rgba(96, 165, 250, .75) !important
}

.\!border-blue-400\/80 {
    border-color: rgba(96, 165, 250, .8) !important
}

.\!border-blue-400\/90 {
    border-color: rgba(96, 165, 250, .9) !important
}

.\!border-blue-400\/95 {
    border-color: rgba(96, 165, 250, .95) !important
}

.\!border-blue-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(59 130 246/var(--tw-border-opacity)) !important
}

.\!border-blue-500\/0 {
    border-color: rgba(59, 130, 246, 0) !important
}

.\!border-blue-500\/10 {
    border-color: rgba(59, 130, 246, .1) !important
}

.\!border-blue-500\/100 {
    border-color: #3b82f6 !important
}

.\!border-blue-500\/20 {
    border-color: rgba(59, 130, 246, .2) !important
}

.\!border-blue-500\/25 {
    border-color: rgba(59, 130, 246, .25) !important
}

.\!border-blue-500\/30 {
    border-color: rgba(59, 130, 246, .3) !important
}

.\!border-blue-500\/40 {
    border-color: rgba(59, 130, 246, .4) !important
}

.\!border-blue-500\/5 {
    border-color: rgba(59, 130, 246, .05) !important
}

.\!border-blue-500\/50 {
    border-color: rgba(59, 130, 246, .5) !important
}

.\!border-blue-500\/60 {
    border-color: rgba(59, 130, 246, .6) !important
}

.\!border-blue-500\/70 {
    border-color: rgba(59, 130, 246, .7) !important
}

.\!border-blue-500\/75 {
    border-color: rgba(59, 130, 246, .75) !important
}

.\!border-blue-500\/80 {
    border-color: rgba(59, 130, 246, .8) !important
}

.\!border-blue-500\/90 {
    border-color: rgba(59, 130, 246, .9) !important
}

.\!border-blue-500\/95 {
    border-color: rgba(59, 130, 246, .95) !important
}

.\!border-blue-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(37 99 235/var(--tw-border-opacity)) !important
}

.\!border-blue-600\/0 {
    border-color: rgba(37, 99, 235, 0) !important
}

.\!border-blue-600\/10 {
    border-color: rgba(37, 99, 235, .1) !important
}

.\!border-blue-600\/100 {
    border-color: #2563eb !important
}

.\!border-blue-600\/20 {
    border-color: rgba(37, 99, 235, .2) !important
}

.\!border-blue-600\/25 {
    border-color: rgba(37, 99, 235, .25) !important
}

.\!border-blue-600\/30 {
    border-color: rgba(37, 99, 235, .3) !important
}

.\!border-blue-600\/40 {
    border-color: rgba(37, 99, 235, .4) !important
}

.\!border-blue-600\/5 {
    border-color: rgba(37, 99, 235, .05) !important
}

.\!border-blue-600\/50 {
    border-color: rgba(37, 99, 235, .5) !important
}

.\!border-blue-600\/60 {
    border-color: rgba(37, 99, 235, .6) !important
}

.\!border-blue-600\/70 {
    border-color: rgba(37, 99, 235, .7) !important
}

.\!border-blue-600\/75 {
    border-color: rgba(37, 99, 235, .75) !important
}

.\!border-blue-600\/80 {
    border-color: rgba(37, 99, 235, .8) !important
}

.\!border-blue-600\/90 {
    border-color: rgba(37, 99, 235, .9) !important
}

.\!border-blue-600\/95 {
    border-color: rgba(37, 99, 235, .95) !important
}

.\!border-blue-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(29 78 216/var(--tw-border-opacity)) !important
}

.\!border-blue-700\/0 {
    border-color: rgba(29, 78, 216, 0) !important
}

.\!border-blue-700\/10 {
    border-color: rgba(29, 78, 216, .1) !important
}

.\!border-blue-700\/100 {
    border-color: #1d4ed8 !important
}

.\!border-blue-700\/20 {
    border-color: rgba(29, 78, 216, .2) !important
}

.\!border-blue-700\/25 {
    border-color: rgba(29, 78, 216, .25) !important
}

.\!border-blue-700\/30 {
    border-color: rgba(29, 78, 216, .3) !important
}

.\!border-blue-700\/40 {
    border-color: rgba(29, 78, 216, .4) !important
}

.\!border-blue-700\/5 {
    border-color: rgba(29, 78, 216, .05) !important
}

.\!border-blue-700\/50 {
    border-color: rgba(29, 78, 216, .5) !important
}

.\!border-blue-700\/60 {
    border-color: rgba(29, 78, 216, .6) !important
}

.\!border-blue-700\/70 {
    border-color: rgba(29, 78, 216, .7) !important
}

.\!border-blue-700\/75 {
    border-color: rgba(29, 78, 216, .75) !important
}

.\!border-blue-700\/80 {
    border-color: rgba(29, 78, 216, .8) !important
}

.\!border-blue-700\/90 {
    border-color: rgba(29, 78, 216, .9) !important
}

.\!border-blue-700\/95 {
    border-color: rgba(29, 78, 216, .95) !important
}

.\!border-blue-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(30 64 175/var(--tw-border-opacity)) !important
}

.\!border-blue-800\/0 {
    border-color: rgba(30, 64, 175, 0) !important
}

.\!border-blue-800\/10 {
    border-color: rgba(30, 64, 175, .1) !important
}

.\!border-blue-800\/100 {
    border-color: #1e40af !important
}

.\!border-blue-800\/20 {
    border-color: rgba(30, 64, 175, .2) !important
}

.\!border-blue-800\/25 {
    border-color: rgba(30, 64, 175, .25) !important
}

.\!border-blue-800\/30 {
    border-color: rgba(30, 64, 175, .3) !important
}

.\!border-blue-800\/40 {
    border-color: rgba(30, 64, 175, .4) !important
}

.\!border-blue-800\/5 {
    border-color: rgba(30, 64, 175, .05) !important
}

.\!border-blue-800\/50 {
    border-color: rgba(30, 64, 175, .5) !important
}

.\!border-blue-800\/60 {
    border-color: rgba(30, 64, 175, .6) !important
}

.\!border-blue-800\/70 {
    border-color: rgba(30, 64, 175, .7) !important
}

.\!border-blue-800\/75 {
    border-color: rgba(30, 64, 175, .75) !important
}

.\!border-blue-800\/80 {
    border-color: rgba(30, 64, 175, .8) !important
}

.\!border-blue-800\/90 {
    border-color: rgba(30, 64, 175, .9) !important
}

.\!border-blue-800\/95 {
    border-color: rgba(30, 64, 175, .95) !important
}

.\!border-emerald-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(209 250 229/var(--tw-border-opacity)) !important
}

.\!border-emerald-100\/0 {
    border-color: rgba(209, 250, 229, 0) !important
}

.\!border-emerald-100\/10 {
    border-color: rgba(209, 250, 229, .1) !important
}

.\!border-emerald-100\/100 {
    border-color: #d1fae5 !important
}

.\!border-emerald-100\/20 {
    border-color: rgba(209, 250, 229, .2) !important
}

.\!border-emerald-100\/25 {
    border-color: rgba(209, 250, 229, .25) !important
}

.\!border-emerald-100\/30 {
    border-color: rgba(209, 250, 229, .3) !important
}

.\!border-emerald-100\/40 {
    border-color: rgba(209, 250, 229, .4) !important
}

.\!border-emerald-100\/5 {
    border-color: rgba(209, 250, 229, .05) !important
}

.\!border-emerald-100\/50 {
    border-color: rgba(209, 250, 229, .5) !important
}

.\!border-emerald-100\/60 {
    border-color: rgba(209, 250, 229, .6) !important
}

.\!border-emerald-100\/70 {
    border-color: rgba(209, 250, 229, .7) !important
}

.\!border-emerald-100\/75 {
    border-color: rgba(209, 250, 229, .75) !important
}

.\!border-emerald-100\/80 {
    border-color: rgba(209, 250, 229, .8) !important
}

.\!border-emerald-100\/90 {
    border-color: rgba(209, 250, 229, .9) !important
}

.\!border-emerald-100\/95 {
    border-color: rgba(209, 250, 229, .95) !important
}

.\!border-emerald-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(167 243 208/var(--tw-border-opacity)) !important
}

.\!border-emerald-200\/0 {
    border-color: rgba(167, 243, 208, 0) !important
}

.\!border-emerald-200\/10 {
    border-color: rgba(167, 243, 208, .1) !important
}

.\!border-emerald-200\/100 {
    border-color: #a7f3d0 !important
}

.\!border-emerald-200\/20 {
    border-color: rgba(167, 243, 208, .2) !important
}

.\!border-emerald-200\/25 {
    border-color: rgba(167, 243, 208, .25) !important
}

.\!border-emerald-200\/30 {
    border-color: rgba(167, 243, 208, .3) !important
}

.\!border-emerald-200\/40 {
    border-color: rgba(167, 243, 208, .4) !important
}

.\!border-emerald-200\/5 {
    border-color: rgba(167, 243, 208, .05) !important
}

.\!border-emerald-200\/50 {
    border-color: rgba(167, 243, 208, .5) !important
}

.\!border-emerald-200\/60 {
    border-color: rgba(167, 243, 208, .6) !important
}

.\!border-emerald-200\/70 {
    border-color: rgba(167, 243, 208, .7) !important
}

.\!border-emerald-200\/75 {
    border-color: rgba(167, 243, 208, .75) !important
}

.\!border-emerald-200\/80 {
    border-color: rgba(167, 243, 208, .8) !important
}

.\!border-emerald-200\/90 {
    border-color: rgba(167, 243, 208, .9) !important
}

.\!border-emerald-200\/95 {
    border-color: rgba(167, 243, 208, .95) !important
}

.\!border-emerald-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(110 231 183/var(--tw-border-opacity)) !important
}

.\!border-emerald-300\/0 {
    border-color: rgba(110, 231, 183, 0) !important
}

.\!border-emerald-300\/10 {
    border-color: rgba(110, 231, 183, .1) !important
}

.\!border-emerald-300\/100 {
    border-color: #6ee7b7 !important
}

.\!border-emerald-300\/20 {
    border-color: rgba(110, 231, 183, .2) !important
}

.\!border-emerald-300\/25 {
    border-color: rgba(110, 231, 183, .25) !important
}

.\!border-emerald-300\/30 {
    border-color: rgba(110, 231, 183, .3) !important
}

.\!border-emerald-300\/40 {
    border-color: rgba(110, 231, 183, .4) !important
}

.\!border-emerald-300\/5 {
    border-color: rgba(110, 231, 183, .05) !important
}

.\!border-emerald-300\/50 {
    border-color: rgba(110, 231, 183, .5) !important
}

.\!border-emerald-300\/60 {
    border-color: rgba(110, 231, 183, .6) !important
}

.\!border-emerald-300\/70 {
    border-color: rgba(110, 231, 183, .7) !important
}

.\!border-emerald-300\/75 {
    border-color: rgba(110, 231, 183, .75) !important
}

.\!border-emerald-300\/80 {
    border-color: rgba(110, 231, 183, .8) !important
}

.\!border-emerald-300\/90 {
    border-color: rgba(110, 231, 183, .9) !important
}

.\!border-emerald-300\/95 {
    border-color: rgba(110, 231, 183, .95) !important
}

.\!border-emerald-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(52 211 153/var(--tw-border-opacity)) !important
}

.\!border-emerald-400\/0 {
    border-color: rgba(52, 211, 153, 0) !important
}

.\!border-emerald-400\/10 {
    border-color: rgba(52, 211, 153, .1) !important
}

.\!border-emerald-400\/100 {
    border-color: #34d399 !important
}

.\!border-emerald-400\/20 {
    border-color: rgba(52, 211, 153, .2) !important
}

.\!border-emerald-400\/25 {
    border-color: rgba(52, 211, 153, .25) !important
}

.\!border-emerald-400\/30 {
    border-color: rgba(52, 211, 153, .3) !important
}

.\!border-emerald-400\/40 {
    border-color: rgba(52, 211, 153, .4) !important
}

.\!border-emerald-400\/5 {
    border-color: rgba(52, 211, 153, .05) !important
}

.\!border-emerald-400\/50 {
    border-color: rgba(52, 211, 153, .5) !important
}

.\!border-emerald-400\/60 {
    border-color: rgba(52, 211, 153, .6) !important
}

.\!border-emerald-400\/70 {
    border-color: rgba(52, 211, 153, .7) !important
}

.\!border-emerald-400\/75 {
    border-color: rgba(52, 211, 153, .75) !important
}

.\!border-emerald-400\/80 {
    border-color: rgba(52, 211, 153, .8) !important
}

.\!border-emerald-400\/90 {
    border-color: rgba(52, 211, 153, .9) !important
}

.\!border-emerald-400\/95 {
    border-color: rgba(52, 211, 153, .95) !important
}

.\!border-emerald-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(16 185 129/var(--tw-border-opacity)) !important
}

.\!border-emerald-500\/0 {
    border-color: rgba(16, 185, 129, 0) !important
}

.\!border-emerald-500\/10 {
    border-color: rgba(16, 185, 129, .1) !important
}

.\!border-emerald-500\/100 {
    border-color: #10b981 !important
}

.\!border-emerald-500\/20 {
    border-color: rgba(16, 185, 129, .2) !important
}

.\!border-emerald-500\/25 {
    border-color: rgba(16, 185, 129, .25) !important
}

.\!border-emerald-500\/30 {
    border-color: rgba(16, 185, 129, .3) !important
}

.\!border-emerald-500\/40 {
    border-color: rgba(16, 185, 129, .4) !important
}

.\!border-emerald-500\/5 {
    border-color: rgba(16, 185, 129, .05) !important
}

.\!border-emerald-500\/50 {
    border-color: rgba(16, 185, 129, .5) !important
}

.\!border-emerald-500\/60 {
    border-color: rgba(16, 185, 129, .6) !important
}

.\!border-emerald-500\/70 {
    border-color: rgba(16, 185, 129, .7) !important
}

.\!border-emerald-500\/75 {
    border-color: rgba(16, 185, 129, .75) !important
}

.\!border-emerald-500\/80 {
    border-color: rgba(16, 185, 129, .8) !important
}

.\!border-emerald-500\/90 {
    border-color: rgba(16, 185, 129, .9) !important
}

.\!border-emerald-500\/95 {
    border-color: rgba(16, 185, 129, .95) !important
}

.\!border-emerald-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(5 150 105/var(--tw-border-opacity)) !important
}

.\!border-emerald-600\/0 {
    border-color: rgba(5, 150, 105, 0) !important
}

.\!border-emerald-600\/10 {
    border-color: rgba(5, 150, 105, .1) !important
}

.\!border-emerald-600\/100 {
    border-color: #059669 !important
}

.\!border-emerald-600\/20 {
    border-color: rgba(5, 150, 105, .2) !important
}

.\!border-emerald-600\/25 {
    border-color: rgba(5, 150, 105, .25) !important
}

.\!border-emerald-600\/30 {
    border-color: rgba(5, 150, 105, .3) !important
}

.\!border-emerald-600\/40 {
    border-color: rgba(5, 150, 105, .4) !important
}

.\!border-emerald-600\/5 {
    border-color: rgba(5, 150, 105, .05) !important
}

.\!border-emerald-600\/50 {
    border-color: rgba(5, 150, 105, .5) !important
}

.\!border-emerald-600\/60 {
    border-color: rgba(5, 150, 105, .6) !important
}

.\!border-emerald-600\/70 {
    border-color: rgba(5, 150, 105, .7) !important
}

.\!border-emerald-600\/75 {
    border-color: rgba(5, 150, 105, .75) !important
}

.\!border-emerald-600\/80 {
    border-color: rgba(5, 150, 105, .8) !important
}

.\!border-emerald-600\/90 {
    border-color: rgba(5, 150, 105, .9) !important
}

.\!border-emerald-600\/95 {
    border-color: rgba(5, 150, 105, .95) !important
}

.\!border-emerald-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(4 120 87/var(--tw-border-opacity)) !important
}

.\!border-emerald-700\/0 {
    border-color: rgba(4, 120, 87, 0) !important
}

.\!border-emerald-700\/10 {
    border-color: rgba(4, 120, 87, .1) !important
}

.\!border-emerald-700\/100 {
    border-color: #047857 !important
}

.\!border-emerald-700\/20 {
    border-color: rgba(4, 120, 87, .2) !important
}

.\!border-emerald-700\/25 {
    border-color: rgba(4, 120, 87, .25) !important
}

.\!border-emerald-700\/30 {
    border-color: rgba(4, 120, 87, .3) !important
}

.\!border-emerald-700\/40 {
    border-color: rgba(4, 120, 87, .4) !important
}

.\!border-emerald-700\/5 {
    border-color: rgba(4, 120, 87, .05) !important
}

.\!border-emerald-700\/50 {
    border-color: rgba(4, 120, 87, .5) !important
}

.\!border-emerald-700\/60 {
    border-color: rgba(4, 120, 87, .6) !important
}

.\!border-emerald-700\/70 {
    border-color: rgba(4, 120, 87, .7) !important
}

.\!border-emerald-700\/75 {
    border-color: rgba(4, 120, 87, .75) !important
}

.\!border-emerald-700\/80 {
    border-color: rgba(4, 120, 87, .8) !important
}

.\!border-emerald-700\/90 {
    border-color: rgba(4, 120, 87, .9) !important
}

.\!border-emerald-700\/95 {
    border-color: rgba(4, 120, 87, .95) !important
}

.\!border-emerald-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(6 95 70/var(--tw-border-opacity)) !important
}

.\!border-emerald-800\/0 {
    border-color: rgba(6, 95, 70, 0) !important
}

.\!border-emerald-800\/10 {
    border-color: rgba(6, 95, 70, .1) !important
}

.\!border-emerald-800\/100 {
    border-color: #065f46 !important
}

.\!border-emerald-800\/20 {
    border-color: rgba(6, 95, 70, .2) !important
}

.\!border-emerald-800\/25 {
    border-color: rgba(6, 95, 70, .25) !important
}

.\!border-emerald-800\/30 {
    border-color: rgba(6, 95, 70, .3) !important
}

.\!border-emerald-800\/40 {
    border-color: rgba(6, 95, 70, .4) !important
}

.\!border-emerald-800\/5 {
    border-color: rgba(6, 95, 70, .05) !important
}

.\!border-emerald-800\/50 {
    border-color: rgba(6, 95, 70, .5) !important
}

.\!border-emerald-800\/60 {
    border-color: rgba(6, 95, 70, .6) !important
}

.\!border-emerald-800\/70 {
    border-color: rgba(6, 95, 70, .7) !important
}

.\!border-emerald-800\/75 {
    border-color: rgba(6, 95, 70, .75) !important
}

.\!border-emerald-800\/80 {
    border-color: rgba(6, 95, 70, .8) !important
}

.\!border-emerald-800\/90 {
    border-color: rgba(6, 95, 70, .9) !important
}

.\!border-emerald-800\/95 {
    border-color: rgba(6, 95, 70, .95) !important
}

.\!border-green-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(220 252 231/var(--tw-border-opacity)) !important
}

.\!border-green-100\/0 {
    border-color: rgba(220, 252, 231, 0) !important
}

.\!border-green-100\/10 {
    border-color: rgba(220, 252, 231, .1) !important
}

.\!border-green-100\/100 {
    border-color: #dcfce7 !important
}

.\!border-green-100\/20 {
    border-color: rgba(220, 252, 231, .2) !important
}

.\!border-green-100\/25 {
    border-color: rgba(220, 252, 231, .25) !important
}

.\!border-green-100\/30 {
    border-color: rgba(220, 252, 231, .3) !important
}

.\!border-green-100\/40 {
    border-color: rgba(220, 252, 231, .4) !important
}

.\!border-green-100\/5 {
    border-color: rgba(220, 252, 231, .05) !important
}

.\!border-green-100\/50 {
    border-color: rgba(220, 252, 231, .5) !important
}

.\!border-green-100\/60 {
    border-color: rgba(220, 252, 231, .6) !important
}

.\!border-green-100\/70 {
    border-color: rgba(220, 252, 231, .7) !important
}

.\!border-green-100\/75 {
    border-color: rgba(220, 252, 231, .75) !important
}

.\!border-green-100\/80 {
    border-color: rgba(220, 252, 231, .8) !important
}

.\!border-green-100\/90 {
    border-color: rgba(220, 252, 231, .9) !important
}

.\!border-green-100\/95 {
    border-color: rgba(220, 252, 231, .95) !important
}

.\!border-green-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(187 247 208/var(--tw-border-opacity)) !important
}

.\!border-green-200\/0 {
    border-color: rgba(187, 247, 208, 0) !important
}

.\!border-green-200\/10 {
    border-color: rgba(187, 247, 208, .1) !important
}

.\!border-green-200\/100 {
    border-color: #bbf7d0 !important
}

.\!border-green-200\/20 {
    border-color: rgba(187, 247, 208, .2) !important
}

.\!border-green-200\/25 {
    border-color: rgba(187, 247, 208, .25) !important
}

.\!border-green-200\/30 {
    border-color: rgba(187, 247, 208, .3) !important
}

.\!border-green-200\/40 {
    border-color: rgba(187, 247, 208, .4) !important
}

.\!border-green-200\/5 {
    border-color: rgba(187, 247, 208, .05) !important
}

.\!border-green-200\/50 {
    border-color: rgba(187, 247, 208, .5) !important
}

.\!border-green-200\/60 {
    border-color: rgba(187, 247, 208, .6) !important
}

.\!border-green-200\/70 {
    border-color: rgba(187, 247, 208, .7) !important
}

.\!border-green-200\/75 {
    border-color: rgba(187, 247, 208, .75) !important
}

.\!border-green-200\/80 {
    border-color: rgba(187, 247, 208, .8) !important
}

.\!border-green-200\/90 {
    border-color: rgba(187, 247, 208, .9) !important
}

.\!border-green-200\/95 {
    border-color: rgba(187, 247, 208, .95) !important
}

.\!border-green-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(134 239 172/var(--tw-border-opacity)) !important
}

.\!border-green-300\/0 {
    border-color: rgba(134, 239, 172, 0) !important
}

.\!border-green-300\/10 {
    border-color: rgba(134, 239, 172, .1) !important
}

.\!border-green-300\/100 {
    border-color: #86efac !important
}

.\!border-green-300\/20 {
    border-color: rgba(134, 239, 172, .2) !important
}

.\!border-green-300\/25 {
    border-color: rgba(134, 239, 172, .25) !important
}

.\!border-green-300\/30 {
    border-color: rgba(134, 239, 172, .3) !important
}

.\!border-green-300\/40 {
    border-color: rgba(134, 239, 172, .4) !important
}

.\!border-green-300\/5 {
    border-color: rgba(134, 239, 172, .05) !important
}

.\!border-green-300\/50 {
    border-color: rgba(134, 239, 172, .5) !important
}

.\!border-green-300\/60 {
    border-color: rgba(134, 239, 172, .6) !important
}

.\!border-green-300\/70 {
    border-color: rgba(134, 239, 172, .7) !important
}

.\!border-green-300\/75 {
    border-color: rgba(134, 239, 172, .75) !important
}

.\!border-green-300\/80 {
    border-color: rgba(134, 239, 172, .8) !important
}

.\!border-green-300\/90 {
    border-color: rgba(134, 239, 172, .9) !important
}

.\!border-green-300\/95 {
    border-color: rgba(134, 239, 172, .95) !important
}

.\!border-green-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(74 222 128/var(--tw-border-opacity)) !important
}

.\!border-green-400\/0 {
    border-color: rgba(74, 222, 128, 0) !important
}

.\!border-green-400\/10 {
    border-color: rgba(74, 222, 128, .1) !important
}

.\!border-green-400\/100 {
    border-color: #4ade80 !important
}

.\!border-green-400\/20 {
    border-color: rgba(74, 222, 128, .2) !important
}

.\!border-green-400\/25 {
    border-color: rgba(74, 222, 128, .25) !important
}

.\!border-green-400\/30 {
    border-color: rgba(74, 222, 128, .3) !important
}

.\!border-green-400\/40 {
    border-color: rgba(74, 222, 128, .4) !important
}

.\!border-green-400\/5 {
    border-color: rgba(74, 222, 128, .05) !important
}

.\!border-green-400\/50 {
    border-color: rgba(74, 222, 128, .5) !important
}

.\!border-green-400\/60 {
    border-color: rgba(74, 222, 128, .6) !important
}

.\!border-green-400\/70 {
    border-color: rgba(74, 222, 128, .7) !important
}

.\!border-green-400\/75 {
    border-color: rgba(74, 222, 128, .75) !important
}

.\!border-green-400\/80 {
    border-color: rgba(74, 222, 128, .8) !important
}

.\!border-green-400\/90 {
    border-color: rgba(74, 222, 128, .9) !important
}

.\!border-green-400\/95 {
    border-color: rgba(74, 222, 128, .95) !important
}

.\!border-green-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(34 197 94/var(--tw-border-opacity)) !important
}

.\!border-green-500\/0 {
    border-color: rgba(34, 197, 94, 0) !important
}

.\!border-green-500\/10 {
    border-color: rgba(34, 197, 94, .1) !important
}

.\!border-green-500\/100 {
    border-color: #22c55e !important
}

.\!border-green-500\/20 {
    border-color: rgba(34, 197, 94, .2) !important
}

.\!border-green-500\/25 {
    border-color: rgba(34, 197, 94, .25) !important
}

.\!border-green-500\/30 {
    border-color: rgba(34, 197, 94, .3) !important
}

.\!border-green-500\/40 {
    border-color: rgba(34, 197, 94, .4) !important
}

.\!border-green-500\/5 {
    border-color: rgba(34, 197, 94, .05) !important
}

.\!border-green-500\/50 {
    border-color: rgba(34, 197, 94, .5) !important
}

.\!border-green-500\/60 {
    border-color: rgba(34, 197, 94, .6) !important
}

.\!border-green-500\/70 {
    border-color: rgba(34, 197, 94, .7) !important
}

.\!border-green-500\/75 {
    border-color: rgba(34, 197, 94, .75) !important
}

.\!border-green-500\/80 {
    border-color: rgba(34, 197, 94, .8) !important
}

.\!border-green-500\/90 {
    border-color: rgba(34, 197, 94, .9) !important
}

.\!border-green-500\/95 {
    border-color: rgba(34, 197, 94, .95) !important
}

.\!border-green-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(22 163 74/var(--tw-border-opacity)) !important
}

.\!border-green-600\/0 {
    border-color: rgba(22, 163, 74, 0) !important
}

.\!border-green-600\/10 {
    border-color: rgba(22, 163, 74, .1) !important
}

.\!border-green-600\/100 {
    border-color: #16a34a !important
}

.\!border-green-600\/20 {
    border-color: rgba(22, 163, 74, .2) !important
}

.\!border-green-600\/25 {
    border-color: rgba(22, 163, 74, .25) !important
}

.\!border-green-600\/30 {
    border-color: rgba(22, 163, 74, .3) !important
}

.\!border-green-600\/40 {
    border-color: rgba(22, 163, 74, .4) !important
}

.\!border-green-600\/5 {
    border-color: rgba(22, 163, 74, .05) !important
}

.\!border-green-600\/50 {
    border-color: rgba(22, 163, 74, .5) !important
}

.\!border-green-600\/60 {
    border-color: rgba(22, 163, 74, .6) !important
}

.\!border-green-600\/70 {
    border-color: rgba(22, 163, 74, .7) !important
}

.\!border-green-600\/75 {
    border-color: rgba(22, 163, 74, .75) !important
}

.\!border-green-600\/80 {
    border-color: rgba(22, 163, 74, .8) !important
}

.\!border-green-600\/90 {
    border-color: rgba(22, 163, 74, .9) !important
}

.\!border-green-600\/95 {
    border-color: rgba(22, 163, 74, .95) !important
}

.\!border-green-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(21 128 61/var(--tw-border-opacity)) !important
}

.\!border-green-700\/0 {
    border-color: rgba(21, 128, 61, 0) !important
}

.\!border-green-700\/10 {
    border-color: rgba(21, 128, 61, .1) !important
}

.\!border-green-700\/100 {
    border-color: #15803d !important
}

.\!border-green-700\/20 {
    border-color: rgba(21, 128, 61, .2) !important
}

.\!border-green-700\/25 {
    border-color: rgba(21, 128, 61, .25) !important
}

.\!border-green-700\/30 {
    border-color: rgba(21, 128, 61, .3) !important
}

.\!border-green-700\/40 {
    border-color: rgba(21, 128, 61, .4) !important
}

.\!border-green-700\/5 {
    border-color: rgba(21, 128, 61, .05) !important
}

.\!border-green-700\/50 {
    border-color: rgba(21, 128, 61, .5) !important
}

.\!border-green-700\/60 {
    border-color: rgba(21, 128, 61, .6) !important
}

.\!border-green-700\/70 {
    border-color: rgba(21, 128, 61, .7) !important
}

.\!border-green-700\/75 {
    border-color: rgba(21, 128, 61, .75) !important
}

.\!border-green-700\/80 {
    border-color: rgba(21, 128, 61, .8) !important
}

.\!border-green-700\/90 {
    border-color: rgba(21, 128, 61, .9) !important
}

.\!border-green-700\/95 {
    border-color: rgba(21, 128, 61, .95) !important
}

.\!border-green-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(22 101 52/var(--tw-border-opacity)) !important
}

.\!border-green-800\/0 {
    border-color: rgba(22, 101, 52, 0) !important
}

.\!border-green-800\/10 {
    border-color: rgba(22, 101, 52, .1) !important
}

.\!border-green-800\/100 {
    border-color: #166534 !important
}

.\!border-green-800\/20 {
    border-color: rgba(22, 101, 52, .2) !important
}

.\!border-green-800\/25 {
    border-color: rgba(22, 101, 52, .25) !important
}

.\!border-green-800\/30 {
    border-color: rgba(22, 101, 52, .3) !important
}

.\!border-green-800\/40 {
    border-color: rgba(22, 101, 52, .4) !important
}

.\!border-green-800\/5 {
    border-color: rgba(22, 101, 52, .05) !important
}

.\!border-green-800\/50 {
    border-color: rgba(22, 101, 52, .5) !important
}

.\!border-green-800\/60 {
    border-color: rgba(22, 101, 52, .6) !important
}

.\!border-green-800\/70 {
    border-color: rgba(22, 101, 52, .7) !important
}

.\!border-green-800\/75 {
    border-color: rgba(22, 101, 52, .75) !important
}

.\!border-green-800\/80 {
    border-color: rgba(22, 101, 52, .8) !important
}

.\!border-green-800\/90 {
    border-color: rgba(22, 101, 52, .9) !important
}

.\!border-green-800\/95 {
    border-color: rgba(22, 101, 52, .95) !important
}

.\!border-lime-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(236 252 203/var(--tw-border-opacity)) !important
}

.\!border-lime-100\/0 {
    border-color: hsla(80, 89%, 89%, 0) !important
}

.\!border-lime-100\/10 {
    border-color: hsla(80, 89%, 89%, .1) !important
}

.\!border-lime-100\/100 {
    border-color: #ecfccb !important
}

.\!border-lime-100\/20 {
    border-color: hsla(80, 89%, 89%, .2) !important
}

.\!border-lime-100\/25 {
    border-color: hsla(80, 89%, 89%, .25) !important
}

.\!border-lime-100\/30 {
    border-color: hsla(80, 89%, 89%, .3) !important
}

.\!border-lime-100\/40 {
    border-color: hsla(80, 89%, 89%, .4) !important
}

.\!border-lime-100\/5 {
    border-color: hsla(80, 89%, 89%, .05) !important
}

.\!border-lime-100\/50 {
    border-color: hsla(80, 89%, 89%, .5) !important
}

.\!border-lime-100\/60 {
    border-color: hsla(80, 89%, 89%, .6) !important
}

.\!border-lime-100\/70 {
    border-color: hsla(80, 89%, 89%, .7) !important
}

.\!border-lime-100\/75 {
    border-color: hsla(80, 89%, 89%, .75) !important
}

.\!border-lime-100\/80 {
    border-color: hsla(80, 89%, 89%, .8) !important
}

.\!border-lime-100\/90 {
    border-color: hsla(80, 89%, 89%, .9) !important
}

.\!border-lime-100\/95 {
    border-color: hsla(80, 89%, 89%, .95) !important
}

.\!border-lime-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(217 249 157/var(--tw-border-opacity)) !important
}

.\!border-lime-200\/0 {
    border-color: hsla(81, 88%, 80%, 0) !important
}

.\!border-lime-200\/10 {
    border-color: hsla(81, 88%, 80%, .1) !important
}

.\!border-lime-200\/100 {
    border-color: #d9f99d !important
}

.\!border-lime-200\/20 {
    border-color: hsla(81, 88%, 80%, .2) !important
}

.\!border-lime-200\/25 {
    border-color: hsla(81, 88%, 80%, .25) !important
}

.\!border-lime-200\/30 {
    border-color: hsla(81, 88%, 80%, .3) !important
}

.\!border-lime-200\/40 {
    border-color: hsla(81, 88%, 80%, .4) !important
}

.\!border-lime-200\/5 {
    border-color: hsla(81, 88%, 80%, .05) !important
}

.\!border-lime-200\/50 {
    border-color: hsla(81, 88%, 80%, .5) !important
}

.\!border-lime-200\/60 {
    border-color: hsla(81, 88%, 80%, .6) !important
}

.\!border-lime-200\/70 {
    border-color: hsla(81, 88%, 80%, .7) !important
}

.\!border-lime-200\/75 {
    border-color: hsla(81, 88%, 80%, .75) !important
}

.\!border-lime-200\/80 {
    border-color: hsla(81, 88%, 80%, .8) !important
}

.\!border-lime-200\/90 {
    border-color: hsla(81, 88%, 80%, .9) !important
}

.\!border-lime-200\/95 {
    border-color: hsla(81, 88%, 80%, .95) !important
}

.\!border-lime-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(190 242 100/var(--tw-border-opacity)) !important
}

.\!border-lime-300\/0 {
    border-color: hsla(82, 85%, 67%, 0) !important
}

.\!border-lime-300\/10 {
    border-color: hsla(82, 85%, 67%, .1) !important
}

.\!border-lime-300\/100 {
    border-color: #bef264 !important
}

.\!border-lime-300\/20 {
    border-color: hsla(82, 85%, 67%, .2) !important
}

.\!border-lime-300\/25 {
    border-color: hsla(82, 85%, 67%, .25) !important
}

.\!border-lime-300\/30 {
    border-color: hsla(82, 85%, 67%, .3) !important
}

.\!border-lime-300\/40 {
    border-color: hsla(82, 85%, 67%, .4) !important
}

.\!border-lime-300\/5 {
    border-color: hsla(82, 85%, 67%, .05) !important
}

.\!border-lime-300\/50 {
    border-color: hsla(82, 85%, 67%, .5) !important
}

.\!border-lime-300\/60 {
    border-color: hsla(82, 85%, 67%, .6) !important
}

.\!border-lime-300\/70 {
    border-color: hsla(82, 85%, 67%, .7) !important
}

.\!border-lime-300\/75 {
    border-color: hsla(82, 85%, 67%, .75) !important
}

.\!border-lime-300\/80 {
    border-color: hsla(82, 85%, 67%, .8) !important
}

.\!border-lime-300\/90 {
    border-color: hsla(82, 85%, 67%, .9) !important
}

.\!border-lime-300\/95 {
    border-color: hsla(82, 85%, 67%, .95) !important
}

.\!border-lime-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(163 230 53/var(--tw-border-opacity)) !important
}

.\!border-lime-400\/0 {
    border-color: rgba(163, 230, 53, 0) !important
}

.\!border-lime-400\/10 {
    border-color: rgba(163, 230, 53, .1) !important
}

.\!border-lime-400\/100 {
    border-color: #a3e635 !important
}

.\!border-lime-400\/20 {
    border-color: rgba(163, 230, 53, .2) !important
}

.\!border-lime-400\/25 {
    border-color: rgba(163, 230, 53, .25) !important
}

.\!border-lime-400\/30 {
    border-color: rgba(163, 230, 53, .3) !important
}

.\!border-lime-400\/40 {
    border-color: rgba(163, 230, 53, .4) !important
}

.\!border-lime-400\/5 {
    border-color: rgba(163, 230, 53, .05) !important
}

.\!border-lime-400\/50 {
    border-color: rgba(163, 230, 53, .5) !important
}

.\!border-lime-400\/60 {
    border-color: rgba(163, 230, 53, .6) !important
}

.\!border-lime-400\/70 {
    border-color: rgba(163, 230, 53, .7) !important
}

.\!border-lime-400\/75 {
    border-color: rgba(163, 230, 53, .75) !important
}

.\!border-lime-400\/80 {
    border-color: rgba(163, 230, 53, .8) !important
}

.\!border-lime-400\/90 {
    border-color: rgba(163, 230, 53, .9) !important
}

.\!border-lime-400\/95 {
    border-color: rgba(163, 230, 53, .95) !important
}

.\!border-lime-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(132 204 22/var(--tw-border-opacity)) !important
}

.\!border-lime-500\/0 {
    border-color: rgba(132, 204, 22, 0) !important
}

.\!border-lime-500\/10 {
    border-color: rgba(132, 204, 22, .1) !important
}

.\!border-lime-500\/100 {
    border-color: #84cc16 !important
}

.\!border-lime-500\/20 {
    border-color: rgba(132, 204, 22, .2) !important
}

.\!border-lime-500\/25 {
    border-color: rgba(132, 204, 22, .25) !important
}

.\!border-lime-500\/30 {
    border-color: rgba(132, 204, 22, .3) !important
}

.\!border-lime-500\/40 {
    border-color: rgba(132, 204, 22, .4) !important
}

.\!border-lime-500\/5 {
    border-color: rgba(132, 204, 22, .05) !important
}

.\!border-lime-500\/50 {
    border-color: rgba(132, 204, 22, .5) !important
}

.\!border-lime-500\/60 {
    border-color: rgba(132, 204, 22, .6) !important
}

.\!border-lime-500\/70 {
    border-color: rgba(132, 204, 22, .7) !important
}

.\!border-lime-500\/75 {
    border-color: rgba(132, 204, 22, .75) !important
}

.\!border-lime-500\/80 {
    border-color: rgba(132, 204, 22, .8) !important
}

.\!border-lime-500\/90 {
    border-color: rgba(132, 204, 22, .9) !important
}

.\!border-lime-500\/95 {
    border-color: rgba(132, 204, 22, .95) !important
}

.\!border-lime-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(101 163 13/var(--tw-border-opacity)) !important
}

.\!border-lime-600\/0 {
    border-color: rgba(101, 163, 13, 0) !important
}

.\!border-lime-600\/10 {
    border-color: rgba(101, 163, 13, .1) !important
}

.\!border-lime-600\/100 {
    border-color: #65a30d !important
}

.\!border-lime-600\/20 {
    border-color: rgba(101, 163, 13, .2) !important
}

.\!border-lime-600\/25 {
    border-color: rgba(101, 163, 13, .25) !important
}

.\!border-lime-600\/30 {
    border-color: rgba(101, 163, 13, .3) !important
}

.\!border-lime-600\/40 {
    border-color: rgba(101, 163, 13, .4) !important
}

.\!border-lime-600\/5 {
    border-color: rgba(101, 163, 13, .05) !important
}

.\!border-lime-600\/50 {
    border-color: rgba(101, 163, 13, .5) !important
}

.\!border-lime-600\/60 {
    border-color: rgba(101, 163, 13, .6) !important
}

.\!border-lime-600\/70 {
    border-color: rgba(101, 163, 13, .7) !important
}

.\!border-lime-600\/75 {
    border-color: rgba(101, 163, 13, .75) !important
}

.\!border-lime-600\/80 {
    border-color: rgba(101, 163, 13, .8) !important
}

.\!border-lime-600\/90 {
    border-color: rgba(101, 163, 13, .9) !important
}

.\!border-lime-600\/95 {
    border-color: rgba(101, 163, 13, .95) !important
}

.\!border-lime-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(77 124 15/var(--tw-border-opacity)) !important
}

.\!border-lime-700\/0 {
    border-color: rgba(77, 124, 15, 0) !important
}

.\!border-lime-700\/10 {
    border-color: rgba(77, 124, 15, .1) !important
}

.\!border-lime-700\/100 {
    border-color: #4d7c0f !important
}

.\!border-lime-700\/20 {
    border-color: rgba(77, 124, 15, .2) !important
}

.\!border-lime-700\/25 {
    border-color: rgba(77, 124, 15, .25) !important
}

.\!border-lime-700\/30 {
    border-color: rgba(77, 124, 15, .3) !important
}

.\!border-lime-700\/40 {
    border-color: rgba(77, 124, 15, .4) !important
}

.\!border-lime-700\/5 {
    border-color: rgba(77, 124, 15, .05) !important
}

.\!border-lime-700\/50 {
    border-color: rgba(77, 124, 15, .5) !important
}

.\!border-lime-700\/60 {
    border-color: rgba(77, 124, 15, .6) !important
}

.\!border-lime-700\/70 {
    border-color: rgba(77, 124, 15, .7) !important
}

.\!border-lime-700\/75 {
    border-color: rgba(77, 124, 15, .75) !important
}

.\!border-lime-700\/80 {
    border-color: rgba(77, 124, 15, .8) !important
}

.\!border-lime-700\/90 {
    border-color: rgba(77, 124, 15, .9) !important
}

.\!border-lime-700\/95 {
    border-color: rgba(77, 124, 15, .95) !important
}

.\!border-lime-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(63 98 18/var(--tw-border-opacity)) !important
}

.\!border-lime-800\/0 {
    border-color: rgba(63, 98, 18, 0) !important
}

.\!border-lime-800\/10 {
    border-color: rgba(63, 98, 18, .1) !important
}

.\!border-lime-800\/100 {
    border-color: #3f6212 !important
}

.\!border-lime-800\/20 {
    border-color: rgba(63, 98, 18, .2) !important
}

.\!border-lime-800\/25 {
    border-color: rgba(63, 98, 18, .25) !important
}

.\!border-lime-800\/30 {
    border-color: rgba(63, 98, 18, .3) !important
}

.\!border-lime-800\/40 {
    border-color: rgba(63, 98, 18, .4) !important
}

.\!border-lime-800\/5 {
    border-color: rgba(63, 98, 18, .05) !important
}

.\!border-lime-800\/50 {
    border-color: rgba(63, 98, 18, .5) !important
}

.\!border-lime-800\/60 {
    border-color: rgba(63, 98, 18, .6) !important
}

.\!border-lime-800\/70 {
    border-color: rgba(63, 98, 18, .7) !important
}

.\!border-lime-800\/75 {
    border-color: rgba(63, 98, 18, .75) !important
}

.\!border-lime-800\/80 {
    border-color: rgba(63, 98, 18, .8) !important
}

.\!border-lime-800\/90 {
    border-color: rgba(63, 98, 18, .9) !important
}

.\!border-lime-800\/95 {
    border-color: rgba(63, 98, 18, .95) !important
}

.\!border-orange-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(255 237 213/var(--tw-border-opacity)) !important
}

.\!border-orange-100\/0 {
    border-color: rgba(255, 237, 213, 0) !important
}

.\!border-orange-100\/10 {
    border-color: rgba(255, 237, 213, .1) !important
}

.\!border-orange-100\/100 {
    border-color: #ffedd5 !important
}

.\!border-orange-100\/20 {
    border-color: rgba(255, 237, 213, .2) !important
}

.\!border-orange-100\/25 {
    border-color: rgba(255, 237, 213, .25) !important
}

.\!border-orange-100\/30 {
    border-color: rgba(255, 237, 213, .3) !important
}

.\!border-orange-100\/40 {
    border-color: rgba(255, 237, 213, .4) !important
}

.\!border-orange-100\/5 {
    border-color: rgba(255, 237, 213, .05) !important
}

.\!border-orange-100\/50 {
    border-color: rgba(255, 237, 213, .5) !important
}

.\!border-orange-100\/60 {
    border-color: rgba(255, 237, 213, .6) !important
}

.\!border-orange-100\/70 {
    border-color: rgba(255, 237, 213, .7) !important
}

.\!border-orange-100\/75 {
    border-color: rgba(255, 237, 213, .75) !important
}

.\!border-orange-100\/80 {
    border-color: rgba(255, 237, 213, .8) !important
}

.\!border-orange-100\/90 {
    border-color: rgba(255, 237, 213, .9) !important
}

.\!border-orange-100\/95 {
    border-color: rgba(255, 237, 213, .95) !important
}

.\!border-orange-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(254 215 170/var(--tw-border-opacity)) !important
}

.\!border-orange-200\/0 {
    border-color: hsla(32, 98%, 83%, 0) !important
}

.\!border-orange-200\/10 {
    border-color: hsla(32, 98%, 83%, .1) !important
}

.\!border-orange-200\/100 {
    border-color: #fed7aa !important
}

.\!border-orange-200\/20 {
    border-color: hsla(32, 98%, 83%, .2) !important
}

.\!border-orange-200\/25 {
    border-color: hsla(32, 98%, 83%, .25) !important
}

.\!border-orange-200\/30 {
    border-color: hsla(32, 98%, 83%, .3) !important
}

.\!border-orange-200\/40 {
    border-color: hsla(32, 98%, 83%, .4) !important
}

.\!border-orange-200\/5 {
    border-color: hsla(32, 98%, 83%, .05) !important
}

.\!border-orange-200\/50 {
    border-color: hsla(32, 98%, 83%, .5) !important
}

.\!border-orange-200\/60 {
    border-color: hsla(32, 98%, 83%, .6) !important
}

.\!border-orange-200\/70 {
    border-color: hsla(32, 98%, 83%, .7) !important
}

.\!border-orange-200\/75 {
    border-color: hsla(32, 98%, 83%, .75) !important
}

.\!border-orange-200\/80 {
    border-color: hsla(32, 98%, 83%, .8) !important
}

.\!border-orange-200\/90 {
    border-color: hsla(32, 98%, 83%, .9) !important
}

.\!border-orange-200\/95 {
    border-color: hsla(32, 98%, 83%, .95) !important
}

.\!border-orange-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(253 186 116/var(--tw-border-opacity)) !important
}

.\!border-orange-300\/0 {
    border-color: hsla(31, 97%, 72%, 0) !important
}

.\!border-orange-300\/10 {
    border-color: hsla(31, 97%, 72%, .1) !important
}

.\!border-orange-300\/100 {
    border-color: #fdba74 !important
}

.\!border-orange-300\/20 {
    border-color: hsla(31, 97%, 72%, .2) !important
}

.\!border-orange-300\/25 {
    border-color: hsla(31, 97%, 72%, .25) !important
}

.\!border-orange-300\/30 {
    border-color: hsla(31, 97%, 72%, .3) !important
}

.\!border-orange-300\/40 {
    border-color: hsla(31, 97%, 72%, .4) !important
}

.\!border-orange-300\/5 {
    border-color: hsla(31, 97%, 72%, .05) !important
}

.\!border-orange-300\/50 {
    border-color: hsla(31, 97%, 72%, .5) !important
}

.\!border-orange-300\/60 {
    border-color: hsla(31, 97%, 72%, .6) !important
}

.\!border-orange-300\/70 {
    border-color: hsla(31, 97%, 72%, .7) !important
}

.\!border-orange-300\/75 {
    border-color: hsla(31, 97%, 72%, .75) !important
}

.\!border-orange-300\/80 {
    border-color: hsla(31, 97%, 72%, .8) !important
}

.\!border-orange-300\/90 {
    border-color: hsla(31, 97%, 72%, .9) !important
}

.\!border-orange-300\/95 {
    border-color: hsla(31, 97%, 72%, .95) !important
}

.\!border-orange-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(251 146 60/var(--tw-border-opacity)) !important
}

.\!border-orange-400\/0 {
    border-color: rgba(251, 146, 60, 0) !important
}

.\!border-orange-400\/10 {
    border-color: rgba(251, 146, 60, .1) !important
}

.\!border-orange-400\/100 {
    border-color: #fb923c !important
}

.\!border-orange-400\/20 {
    border-color: rgba(251, 146, 60, .2) !important
}

.\!border-orange-400\/25 {
    border-color: rgba(251, 146, 60, .25) !important
}

.\!border-orange-400\/30 {
    border-color: rgba(251, 146, 60, .3) !important
}

.\!border-orange-400\/40 {
    border-color: rgba(251, 146, 60, .4) !important
}

.\!border-orange-400\/5 {
    border-color: rgba(251, 146, 60, .05) !important
}

.\!border-orange-400\/50 {
    border-color: rgba(251, 146, 60, .5) !important
}

.\!border-orange-400\/60 {
    border-color: rgba(251, 146, 60, .6) !important
}

.\!border-orange-400\/70 {
    border-color: rgba(251, 146, 60, .7) !important
}

.\!border-orange-400\/75 {
    border-color: rgba(251, 146, 60, .75) !important
}

.\!border-orange-400\/80 {
    border-color: rgba(251, 146, 60, .8) !important
}

.\!border-orange-400\/90 {
    border-color: rgba(251, 146, 60, .9) !important
}

.\!border-orange-400\/95 {
    border-color: rgba(251, 146, 60, .95) !important
}

.\!border-orange-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(249 115 22/var(--tw-border-opacity)) !important
}

.\!border-orange-500\/0 {
    border-color: rgba(249, 115, 22, 0) !important
}

.\!border-orange-500\/10 {
    border-color: rgba(249, 115, 22, .1) !important
}

.\!border-orange-500\/100 {
    border-color: #f97316 !important
}

.\!border-orange-500\/20 {
    border-color: rgba(249, 115, 22, .2) !important
}

.\!border-orange-500\/25 {
    border-color: rgba(249, 115, 22, .25) !important
}

.\!border-orange-500\/30 {
    border-color: rgba(249, 115, 22, .3) !important
}

.\!border-orange-500\/40 {
    border-color: rgba(249, 115, 22, .4) !important
}

.\!border-orange-500\/5 {
    border-color: rgba(249, 115, 22, .05) !important
}

.\!border-orange-500\/50 {
    border-color: rgba(249, 115, 22, .5) !important
}

.\!border-orange-500\/60 {
    border-color: rgba(249, 115, 22, .6) !important
}

.\!border-orange-500\/70 {
    border-color: rgba(249, 115, 22, .7) !important
}

.\!border-orange-500\/75 {
    border-color: rgba(249, 115, 22, .75) !important
}

.\!border-orange-500\/80 {
    border-color: rgba(249, 115, 22, .8) !important
}

.\!border-orange-500\/90 {
    border-color: rgba(249, 115, 22, .9) !important
}

.\!border-orange-500\/95 {
    border-color: rgba(249, 115, 22, .95) !important
}

.\!border-orange-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(234 88 12/var(--tw-border-opacity)) !important
}

.\!border-orange-600\/0 {
    border-color: rgba(234, 88, 12, 0) !important
}

.\!border-orange-600\/10 {
    border-color: rgba(234, 88, 12, .1) !important
}

.\!border-orange-600\/100 {
    border-color: #ea580c !important
}

.\!border-orange-600\/20 {
    border-color: rgba(234, 88, 12, .2) !important
}

.\!border-orange-600\/25 {
    border-color: rgba(234, 88, 12, .25) !important
}

.\!border-orange-600\/30 {
    border-color: rgba(234, 88, 12, .3) !important
}

.\!border-orange-600\/40 {
    border-color: rgba(234, 88, 12, .4) !important
}

.\!border-orange-600\/5 {
    border-color: rgba(234, 88, 12, .05) !important
}

.\!border-orange-600\/50 {
    border-color: rgba(234, 88, 12, .5) !important
}

.\!border-orange-600\/60 {
    border-color: rgba(234, 88, 12, .6) !important
}

.\!border-orange-600\/70 {
    border-color: rgba(234, 88, 12, .7) !important
}

.\!border-orange-600\/75 {
    border-color: rgba(234, 88, 12, .75) !important
}

.\!border-orange-600\/80 {
    border-color: rgba(234, 88, 12, .8) !important
}

.\!border-orange-600\/90 {
    border-color: rgba(234, 88, 12, .9) !important
}

.\!border-orange-600\/95 {
    border-color: rgba(234, 88, 12, .95) !important
}

.\!border-orange-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(194 65 12/var(--tw-border-opacity)) !important
}

.\!border-orange-700\/0 {
    border-color: rgba(194, 65, 12, 0) !important
}

.\!border-orange-700\/10 {
    border-color: rgba(194, 65, 12, .1) !important
}

.\!border-orange-700\/100 {
    border-color: #c2410c !important
}

.\!border-orange-700\/20 {
    border-color: rgba(194, 65, 12, .2) !important
}

.\!border-orange-700\/25 {
    border-color: rgba(194, 65, 12, .25) !important
}

.\!border-orange-700\/30 {
    border-color: rgba(194, 65, 12, .3) !important
}

.\!border-orange-700\/40 {
    border-color: rgba(194, 65, 12, .4) !important
}

.\!border-orange-700\/5 {
    border-color: rgba(194, 65, 12, .05) !important
}

.\!border-orange-700\/50 {
    border-color: rgba(194, 65, 12, .5) !important
}

.\!border-orange-700\/60 {
    border-color: rgba(194, 65, 12, .6) !important
}

.\!border-orange-700\/70 {
    border-color: rgba(194, 65, 12, .7) !important
}

.\!border-orange-700\/75 {
    border-color: rgba(194, 65, 12, .75) !important
}

.\!border-orange-700\/80 {
    border-color: rgba(194, 65, 12, .8) !important
}

.\!border-orange-700\/90 {
    border-color: rgba(194, 65, 12, .9) !important
}

.\!border-orange-700\/95 {
    border-color: rgba(194, 65, 12, .95) !important
}

.\!border-orange-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(154 52 18/var(--tw-border-opacity)) !important
}

.\!border-orange-800\/0 {
    border-color: rgba(154, 52, 18, 0) !important
}

.\!border-orange-800\/10 {
    border-color: rgba(154, 52, 18, .1) !important
}

.\!border-orange-800\/100 {
    border-color: #9a3412 !important
}

.\!border-orange-800\/20 {
    border-color: rgba(154, 52, 18, .2) !important
}

.\!border-orange-800\/25 {
    border-color: rgba(154, 52, 18, .25) !important
}

.\!border-orange-800\/30 {
    border-color: rgba(154, 52, 18, .3) !important
}

.\!border-orange-800\/40 {
    border-color: rgba(154, 52, 18, .4) !important
}

.\!border-orange-800\/5 {
    border-color: rgba(154, 52, 18, .05) !important
}

.\!border-orange-800\/50 {
    border-color: rgba(154, 52, 18, .5) !important
}

.\!border-orange-800\/60 {
    border-color: rgba(154, 52, 18, .6) !important
}

.\!border-orange-800\/70 {
    border-color: rgba(154, 52, 18, .7) !important
}

.\!border-orange-800\/75 {
    border-color: rgba(154, 52, 18, .75) !important
}

.\!border-orange-800\/80 {
    border-color: rgba(154, 52, 18, .8) !important
}

.\!border-orange-800\/90 {
    border-color: rgba(154, 52, 18, .9) !important
}

.\!border-orange-800\/95 {
    border-color: rgba(154, 52, 18, .95) !important
}

.\!border-red-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(254 226 226/var(--tw-border-opacity)) !important
}

.\!border-red-100\/0 {
    border-color: hsla(0, 93%, 94%, 0) !important
}

.\!border-red-100\/10 {
    border-color: hsla(0, 93%, 94%, .1) !important
}

.\!border-red-100\/100 {
    border-color: #fee2e2 !important
}

.\!border-red-100\/20 {
    border-color: hsla(0, 93%, 94%, .2) !important
}

.\!border-red-100\/25 {
    border-color: hsla(0, 93%, 94%, .25) !important
}

.\!border-red-100\/30 {
    border-color: hsla(0, 93%, 94%, .3) !important
}

.\!border-red-100\/40 {
    border-color: hsla(0, 93%, 94%, .4) !important
}

.\!border-red-100\/5 {
    border-color: hsla(0, 93%, 94%, .05) !important
}

.\!border-red-100\/50 {
    border-color: hsla(0, 93%, 94%, .5) !important
}

.\!border-red-100\/60 {
    border-color: hsla(0, 93%, 94%, .6) !important
}

.\!border-red-100\/70 {
    border-color: hsla(0, 93%, 94%, .7) !important
}

.\!border-red-100\/75 {
    border-color: hsla(0, 93%, 94%, .75) !important
}

.\!border-red-100\/80 {
    border-color: hsla(0, 93%, 94%, .8) !important
}

.\!border-red-100\/90 {
    border-color: hsla(0, 93%, 94%, .9) !important
}

.\!border-red-100\/95 {
    border-color: hsla(0, 93%, 94%, .95) !important
}

.\!border-red-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(254 202 202/var(--tw-border-opacity)) !important
}

.\!border-red-200\/0 {
    border-color: hsla(0, 96%, 89%, 0) !important
}

.\!border-red-200\/10 {
    border-color: hsla(0, 96%, 89%, .1) !important
}

.\!border-red-200\/100 {
    border-color: #fecaca !important
}

.\!border-red-200\/20 {
    border-color: hsla(0, 96%, 89%, .2) !important
}

.\!border-red-200\/25 {
    border-color: hsla(0, 96%, 89%, .25) !important
}

.\!border-red-200\/30 {
    border-color: hsla(0, 96%, 89%, .3) !important
}

.\!border-red-200\/40 {
    border-color: hsla(0, 96%, 89%, .4) !important
}

.\!border-red-200\/5 {
    border-color: hsla(0, 96%, 89%, .05) !important
}

.\!border-red-200\/50 {
    border-color: hsla(0, 96%, 89%, .5) !important
}

.\!border-red-200\/60 {
    border-color: hsla(0, 96%, 89%, .6) !important
}

.\!border-red-200\/70 {
    border-color: hsla(0, 96%, 89%, .7) !important
}

.\!border-red-200\/75 {
    border-color: hsla(0, 96%, 89%, .75) !important
}

.\!border-red-200\/80 {
    border-color: hsla(0, 96%, 89%, .8) !important
}

.\!border-red-200\/90 {
    border-color: hsla(0, 96%, 89%, .9) !important
}

.\!border-red-200\/95 {
    border-color: hsla(0, 96%, 89%, .95) !important
}

.\!border-red-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(252 165 165/var(--tw-border-opacity)) !important
}

.\!border-red-300\/0 {
    border-color: hsla(0, 94%, 82%, 0) !important
}

.\!border-red-300\/10 {
    border-color: hsla(0, 94%, 82%, .1) !important
}

.\!border-red-300\/100 {
    border-color: #fca5a5 !important
}

.\!border-red-300\/20 {
    border-color: hsla(0, 94%, 82%, .2) !important
}

.\!border-red-300\/25 {
    border-color: hsla(0, 94%, 82%, .25) !important
}

.\!border-red-300\/30 {
    border-color: hsla(0, 94%, 82%, .3) !important
}

.\!border-red-300\/40 {
    border-color: hsla(0, 94%, 82%, .4) !important
}

.\!border-red-300\/5 {
    border-color: hsla(0, 94%, 82%, .05) !important
}

.\!border-red-300\/50 {
    border-color: hsla(0, 94%, 82%, .5) !important
}

.\!border-red-300\/60 {
    border-color: hsla(0, 94%, 82%, .6) !important
}

.\!border-red-300\/70 {
    border-color: hsla(0, 94%, 82%, .7) !important
}

.\!border-red-300\/75 {
    border-color: hsla(0, 94%, 82%, .75) !important
}

.\!border-red-300\/80 {
    border-color: hsla(0, 94%, 82%, .8) !important
}

.\!border-red-300\/90 {
    border-color: hsla(0, 94%, 82%, .9) !important
}

.\!border-red-300\/95 {
    border-color: hsla(0, 94%, 82%, .95) !important
}

.\!border-red-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(248 113 113/var(--tw-border-opacity)) !important
}

.\!border-red-400\/0 {
    border-color: hsla(0, 91%, 71%, 0) !important
}

.\!border-red-400\/10 {
    border-color: hsla(0, 91%, 71%, .1) !important
}

.\!border-red-400\/100 {
    border-color: #f87171 !important
}

.\!border-red-400\/20 {
    border-color: hsla(0, 91%, 71%, .2) !important
}

.\!border-red-400\/25 {
    border-color: hsla(0, 91%, 71%, .25) !important
}

.\!border-red-400\/30 {
    border-color: hsla(0, 91%, 71%, .3) !important
}

.\!border-red-400\/40 {
    border-color: hsla(0, 91%, 71%, .4) !important
}

.\!border-red-400\/5 {
    border-color: hsla(0, 91%, 71%, .05) !important
}

.\!border-red-400\/50 {
    border-color: hsla(0, 91%, 71%, .5) !important
}

.\!border-red-400\/60 {
    border-color: hsla(0, 91%, 71%, .6) !important
}

.\!border-red-400\/70 {
    border-color: hsla(0, 91%, 71%, .7) !important
}

.\!border-red-400\/75 {
    border-color: hsla(0, 91%, 71%, .75) !important
}

.\!border-red-400\/80 {
    border-color: hsla(0, 91%, 71%, .8) !important
}

.\!border-red-400\/90 {
    border-color: hsla(0, 91%, 71%, .9) !important
}

.\!border-red-400\/95 {
    border-color: hsla(0, 91%, 71%, .95) !important
}

.\!border-red-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(239 68 68/var(--tw-border-opacity)) !important
}

.\!border-red-500\/0 {
    border-color: rgba(239, 68, 68, 0) !important
}

.\!border-red-500\/10 {
    border-color: rgba(239, 68, 68, .1) !important
}

.\!border-red-500\/100 {
    border-color: #ef4444 !important
}

.\!border-red-500\/20 {
    border-color: rgba(239, 68, 68, .2) !important
}

.\!border-red-500\/25 {
    border-color: rgba(239, 68, 68, .25) !important
}

.\!border-red-500\/30 {
    border-color: rgba(239, 68, 68, .3) !important
}

.\!border-red-500\/40 {
    border-color: rgba(239, 68, 68, .4) !important
}

.\!border-red-500\/5 {
    border-color: rgba(239, 68, 68, .05) !important
}

.\!border-red-500\/50 {
    border-color: rgba(239, 68, 68, .5) !important
}

.\!border-red-500\/60 {
    border-color: rgba(239, 68, 68, .6) !important
}

.\!border-red-500\/70 {
    border-color: rgba(239, 68, 68, .7) !important
}

.\!border-red-500\/75 {
    border-color: rgba(239, 68, 68, .75) !important
}

.\!border-red-500\/80 {
    border-color: rgba(239, 68, 68, .8) !important
}

.\!border-red-500\/90 {
    border-color: rgba(239, 68, 68, .9) !important
}

.\!border-red-500\/95 {
    border-color: rgba(239, 68, 68, .95) !important
}

.\!border-red-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(220 38 38/var(--tw-border-opacity)) !important
}

.\!border-red-600\/0 {
    border-color: rgba(220, 38, 38, 0) !important
}

.\!border-red-600\/10 {
    border-color: rgba(220, 38, 38, .1) !important
}

.\!border-red-600\/100 {
    border-color: #dc2626 !important
}

.\!border-red-600\/20 {
    border-color: rgba(220, 38, 38, .2) !important
}

.\!border-red-600\/25 {
    border-color: rgba(220, 38, 38, .25) !important
}

.\!border-red-600\/30 {
    border-color: rgba(220, 38, 38, .3) !important
}

.\!border-red-600\/40 {
    border-color: rgba(220, 38, 38, .4) !important
}

.\!border-red-600\/5 {
    border-color: rgba(220, 38, 38, .05) !important
}

.\!border-red-600\/50 {
    border-color: rgba(220, 38, 38, .5) !important
}

.\!border-red-600\/60 {
    border-color: rgba(220, 38, 38, .6) !important
}

.\!border-red-600\/70 {
    border-color: rgba(220, 38, 38, .7) !important
}

.\!border-red-600\/75 {
    border-color: rgba(220, 38, 38, .75) !important
}

.\!border-red-600\/80 {
    border-color: rgba(220, 38, 38, .8) !important
}

.\!border-red-600\/90 {
    border-color: rgba(220, 38, 38, .9) !important
}

.\!border-red-600\/95 {
    border-color: rgba(220, 38, 38, .95) !important
}

.\!border-red-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(185 28 28/var(--tw-border-opacity)) !important
}

.\!border-red-700\/0 {
    border-color: rgba(185, 28, 28, 0) !important
}

.\!border-red-700\/10 {
    border-color: rgba(185, 28, 28, .1) !important
}

.\!border-red-700\/100 {
    border-color: #b91c1c !important
}

.\!border-red-700\/20 {
    border-color: rgba(185, 28, 28, .2) !important
}

.\!border-red-700\/25 {
    border-color: rgba(185, 28, 28, .25) !important
}

.\!border-red-700\/30 {
    border-color: rgba(185, 28, 28, .3) !important
}

.\!border-red-700\/40 {
    border-color: rgba(185, 28, 28, .4) !important
}

.\!border-red-700\/5 {
    border-color: rgba(185, 28, 28, .05) !important
}

.\!border-red-700\/50 {
    border-color: rgba(185, 28, 28, .5) !important
}

.\!border-red-700\/60 {
    border-color: rgba(185, 28, 28, .6) !important
}

.\!border-red-700\/70 {
    border-color: rgba(185, 28, 28, .7) !important
}

.\!border-red-700\/75 {
    border-color: rgba(185, 28, 28, .75) !important
}

.\!border-red-700\/80 {
    border-color: rgba(185, 28, 28, .8) !important
}

.\!border-red-700\/90 {
    border-color: rgba(185, 28, 28, .9) !important
}

.\!border-red-700\/95 {
    border-color: rgba(185, 28, 28, .95) !important
}

.\!border-red-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(153 27 27/var(--tw-border-opacity)) !important
}

.\!border-red-800\/0 {
    border-color: rgba(153, 27, 27, 0) !important
}

.\!border-red-800\/10 {
    border-color: rgba(153, 27, 27, .1) !important
}

.\!border-red-800\/100 {
    border-color: #991b1b !important
}

.\!border-red-800\/20 {
    border-color: rgba(153, 27, 27, .2) !important
}

.\!border-red-800\/25 {
    border-color: rgba(153, 27, 27, .25) !important
}

.\!border-red-800\/30 {
    border-color: rgba(153, 27, 27, .3) !important
}

.\!border-red-800\/40 {
    border-color: rgba(153, 27, 27, .4) !important
}

.\!border-red-800\/5 {
    border-color: rgba(153, 27, 27, .05) !important
}

.\!border-red-800\/50 {
    border-color: rgba(153, 27, 27, .5) !important
}

.\!border-red-800\/60 {
    border-color: rgba(153, 27, 27, .6) !important
}

.\!border-red-800\/70 {
    border-color: rgba(153, 27, 27, .7) !important
}

.\!border-red-800\/75 {
    border-color: rgba(153, 27, 27, .75) !important
}

.\!border-red-800\/80 {
    border-color: rgba(153, 27, 27, .8) !important
}

.\!border-red-800\/90 {
    border-color: rgba(153, 27, 27, .9) !important
}

.\!border-red-800\/95 {
    border-color: rgba(153, 27, 27, .95) !important
}

.\!border-slate-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(241 245 249/var(--tw-border-opacity)) !important
}

.\!border-slate-100\/0 {
    border-color: rgba(241, 245, 249, 0) !important
}

.\!border-slate-100\/10 {
    border-color: rgba(241, 245, 249, .1) !important
}

.\!border-slate-100\/100 {
    border-color: #f1f5f9 !important
}

.\!border-slate-100\/20 {
    border-color: rgba(241, 245, 249, .2) !important
}

.\!border-slate-100\/25 {
    border-color: rgba(241, 245, 249, .25) !important
}

.\!border-slate-100\/30 {
    border-color: rgba(241, 245, 249, .3) !important
}

.\!border-slate-100\/40 {
    border-color: rgba(241, 245, 249, .4) !important
}

.\!border-slate-100\/5 {
    border-color: rgba(241, 245, 249, .05) !important
}

.\!border-slate-100\/50 {
    border-color: rgba(241, 245, 249, .5) !important
}

.\!border-slate-100\/60 {
    border-color: rgba(241, 245, 249, .6) !important
}

.\!border-slate-100\/70 {
    border-color: rgba(241, 245, 249, .7) !important
}

.\!border-slate-100\/75 {
    border-color: rgba(241, 245, 249, .75) !important
}

.\!border-slate-100\/80 {
    border-color: rgba(241, 245, 249, .8) !important
}

.\!border-slate-100\/90 {
    border-color: rgba(241, 245, 249, .9) !important
}

.\!border-slate-100\/95 {
    border-color: rgba(241, 245, 249, .95) !important
}

.\!border-slate-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(226 232 240/var(--tw-border-opacity)) !important
}

.\!border-slate-200\/0 {
    border-color: rgba(226, 232, 240, 0) !important
}

.\!border-slate-200\/10 {
    border-color: rgba(226, 232, 240, .1) !important
}

.\!border-slate-200\/100 {
    border-color: #e2e8f0 !important
}

.\!border-slate-200\/20 {
    border-color: rgba(226, 232, 240, .2) !important
}

.\!border-slate-200\/25 {
    border-color: rgba(226, 232, 240, .25) !important
}

.\!border-slate-200\/30 {
    border-color: rgba(226, 232, 240, .3) !important
}

.\!border-slate-200\/40 {
    border-color: rgba(226, 232, 240, .4) !important
}

.\!border-slate-200\/5 {
    border-color: rgba(226, 232, 240, .05) !important
}

.\!border-slate-200\/50 {
    border-color: rgba(226, 232, 240, .5) !important
}

.\!border-slate-200\/60 {
    border-color: rgba(226, 232, 240, .6) !important
}

.\!border-slate-200\/70 {
    border-color: rgba(226, 232, 240, .7) !important
}

.\!border-slate-200\/75 {
    border-color: rgba(226, 232, 240, .75) !important
}

.\!border-slate-200\/80 {
    border-color: rgba(226, 232, 240, .8) !important
}

.\!border-slate-200\/90 {
    border-color: rgba(226, 232, 240, .9) !important
}

.\!border-slate-200\/95 {
    border-color: rgba(226, 232, 240, .95) !important
}

.\!border-slate-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(203 213 225/var(--tw-border-opacity)) !important
}

.\!border-slate-300\/0 {
    border-color: rgba(203, 213, 225, 0) !important
}

.\!border-slate-300\/10 {
    border-color: rgba(203, 213, 225, .1) !important
}

.\!border-slate-300\/100 {
    border-color: #cbd5e1 !important
}

.\!border-slate-300\/20 {
    border-color: rgba(203, 213, 225, .2) !important
}

.\!border-slate-300\/25 {
    border-color: rgba(203, 213, 225, .25) !important
}

.\!border-slate-300\/30 {
    border-color: rgba(203, 213, 225, .3) !important
}

.\!border-slate-300\/40 {
    border-color: rgba(203, 213, 225, .4) !important
}

.\!border-slate-300\/5 {
    border-color: rgba(203, 213, 225, .05) !important
}

.\!border-slate-300\/50 {
    border-color: rgba(203, 213, 225, .5) !important
}

.\!border-slate-300\/60 {
    border-color: rgba(203, 213, 225, .6) !important
}

.\!border-slate-300\/70 {
    border-color: rgba(203, 213, 225, .7) !important
}

.\!border-slate-300\/75 {
    border-color: rgba(203, 213, 225, .75) !important
}

.\!border-slate-300\/80 {
    border-color: rgba(203, 213, 225, .8) !important
}

.\!border-slate-300\/90 {
    border-color: rgba(203, 213, 225, .9) !important
}

.\!border-slate-300\/95 {
    border-color: rgba(203, 213, 225, .95) !important
}

.\!border-slate-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(148 163 184/var(--tw-border-opacity)) !important
}

.\!border-slate-400\/0 {
    border-color: rgba(148, 163, 184, 0) !important
}

.\!border-slate-400\/10 {
    border-color: rgba(148, 163, 184, .1) !important
}

.\!border-slate-400\/100 {
    border-color: #94a3b8 !important
}

.\!border-slate-400\/20 {
    border-color: rgba(148, 163, 184, .2) !important
}

.\!border-slate-400\/25 {
    border-color: rgba(148, 163, 184, .25) !important
}

.\!border-slate-400\/30 {
    border-color: rgba(148, 163, 184, .3) !important
}

.\!border-slate-400\/40 {
    border-color: rgba(148, 163, 184, .4) !important
}

.\!border-slate-400\/5 {
    border-color: rgba(148, 163, 184, .05) !important
}

.\!border-slate-400\/50 {
    border-color: rgba(148, 163, 184, .5) !important
}

.\!border-slate-400\/60 {
    border-color: rgba(148, 163, 184, .6) !important
}

.\!border-slate-400\/70 {
    border-color: rgba(148, 163, 184, .7) !important
}

.\!border-slate-400\/75 {
    border-color: rgba(148, 163, 184, .75) !important
}

.\!border-slate-400\/80 {
    border-color: rgba(148, 163, 184, .8) !important
}

.\!border-slate-400\/90 {
    border-color: rgba(148, 163, 184, .9) !important
}

.\!border-slate-400\/95 {
    border-color: rgba(148, 163, 184, .95) !important
}

.\!border-slate-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(100 116 139/var(--tw-border-opacity)) !important
}

.\!border-slate-500\/0 {
    border-color: rgba(100, 116, 139, 0) !important
}

.\!border-slate-500\/10 {
    border-color: rgba(100, 116, 139, .1) !important
}

.\!border-slate-500\/100 {
    border-color: #64748b !important
}

.\!border-slate-500\/20 {
    border-color: rgba(100, 116, 139, .2) !important
}

.\!border-slate-500\/25 {
    border-color: rgba(100, 116, 139, .25) !important
}

.\!border-slate-500\/30 {
    border-color: rgba(100, 116, 139, .3) !important
}

.\!border-slate-500\/40 {
    border-color: rgba(100, 116, 139, .4) !important
}

.\!border-slate-500\/5 {
    border-color: rgba(100, 116, 139, .05) !important
}

.\!border-slate-500\/50 {
    border-color: rgba(100, 116, 139, .5) !important
}

.\!border-slate-500\/60 {
    border-color: rgba(100, 116, 139, .6) !important
}

.\!border-slate-500\/70 {
    border-color: rgba(100, 116, 139, .7) !important
}

.\!border-slate-500\/75 {
    border-color: rgba(100, 116, 139, .75) !important
}

.\!border-slate-500\/80 {
    border-color: rgba(100, 116, 139, .8) !important
}

.\!border-slate-500\/90 {
    border-color: rgba(100, 116, 139, .9) !important
}

.\!border-slate-500\/95 {
    border-color: rgba(100, 116, 139, .95) !important
}

.\!border-slate-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(71 85 105/var(--tw-border-opacity)) !important
}

.\!border-slate-600\/0 {
    border-color: rgba(71, 85, 105, 0) !important
}

.\!border-slate-600\/10 {
    border-color: rgba(71, 85, 105, .1) !important
}

.\!border-slate-600\/100 {
    border-color: #475569 !important
}

.\!border-slate-600\/20 {
    border-color: rgba(71, 85, 105, .2) !important
}

.\!border-slate-600\/25 {
    border-color: rgba(71, 85, 105, .25) !important
}

.\!border-slate-600\/30 {
    border-color: rgba(71, 85, 105, .3) !important
}

.\!border-slate-600\/40 {
    border-color: rgba(71, 85, 105, .4) !important
}

.\!border-slate-600\/5 {
    border-color: rgba(71, 85, 105, .05) !important
}

.\!border-slate-600\/50 {
    border-color: rgba(71, 85, 105, .5) !important
}

.\!border-slate-600\/60 {
    border-color: rgba(71, 85, 105, .6) !important
}

.\!border-slate-600\/70 {
    border-color: rgba(71, 85, 105, .7) !important
}

.\!border-slate-600\/75 {
    border-color: rgba(71, 85, 105, .75) !important
}

.\!border-slate-600\/80 {
    border-color: rgba(71, 85, 105, .8) !important
}

.\!border-slate-600\/90 {
    border-color: rgba(71, 85, 105, .9) !important
}

.\!border-slate-600\/95 {
    border-color: rgba(71, 85, 105, .95) !important
}

.\!border-slate-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(51 65 85/var(--tw-border-opacity)) !important
}

.\!border-slate-700\/0 {
    border-color: rgba(51, 65, 85, 0) !important
}

.\!border-slate-700\/10 {
    border-color: rgba(51, 65, 85, .1) !important
}

.\!border-slate-700\/100 {
    border-color: #334155 !important
}

.\!border-slate-700\/20 {
    border-color: rgba(51, 65, 85, .2) !important
}

.\!border-slate-700\/25 {
    border-color: rgba(51, 65, 85, .25) !important
}

.\!border-slate-700\/30 {
    border-color: rgba(51, 65, 85, .3) !important
}

.\!border-slate-700\/40 {
    border-color: rgba(51, 65, 85, .4) !important
}

.\!border-slate-700\/5 {
    border-color: rgba(51, 65, 85, .05) !important
}

.\!border-slate-700\/50 {
    border-color: rgba(51, 65, 85, .5) !important
}

.\!border-slate-700\/60 {
    border-color: rgba(51, 65, 85, .6) !important
}

.\!border-slate-700\/70 {
    border-color: rgba(51, 65, 85, .7) !important
}

.\!border-slate-700\/75 {
    border-color: rgba(51, 65, 85, .75) !important
}

.\!border-slate-700\/80 {
    border-color: rgba(51, 65, 85, .8) !important
}

.\!border-slate-700\/90 {
    border-color: rgba(51, 65, 85, .9) !important
}

.\!border-slate-700\/95 {
    border-color: rgba(51, 65, 85, .95) !important
}

.\!border-slate-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(30 41 59/var(--tw-border-opacity)) !important
}

.\!border-slate-800\/0 {
    border-color: rgba(30, 41, 59, 0) !important
}

.\!border-slate-800\/10 {
    border-color: rgba(30, 41, 59, .1) !important
}

.\!border-slate-800\/100 {
    border-color: #1e293b !important
}

.\!border-slate-800\/20 {
    border-color: rgba(30, 41, 59, .2) !important
}

.\!border-slate-800\/25 {
    border-color: rgba(30, 41, 59, .25) !important
}

.\!border-slate-800\/30 {
    border-color: rgba(30, 41, 59, .3) !important
}

.\!border-slate-800\/40 {
    border-color: rgba(30, 41, 59, .4) !important
}

.\!border-slate-800\/5 {
    border-color: rgba(30, 41, 59, .05) !important
}

.\!border-slate-800\/50 {
    border-color: rgba(30, 41, 59, .5) !important
}

.\!border-slate-800\/60 {
    border-color: rgba(30, 41, 59, .6) !important
}

.\!border-slate-800\/70 {
    border-color: rgba(30, 41, 59, .7) !important
}

.\!border-slate-800\/75 {
    border-color: rgba(30, 41, 59, .75) !important
}

.\!border-slate-800\/80 {
    border-color: rgba(30, 41, 59, .8) !important
}

.\!border-slate-800\/90 {
    border-color: rgba(30, 41, 59, .9) !important
}

.\!border-slate-800\/95 {
    border-color: rgba(30, 41, 59, .95) !important
}

.\!border-violet-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(237 233 254/var(--tw-border-opacity)) !important
}

.\!border-violet-100\/0 {
    border-color: rgba(237, 233, 254, 0) !important
}

.\!border-violet-100\/10 {
    border-color: rgba(237, 233, 254, .1) !important
}

.\!border-violet-100\/100 {
    border-color: #ede9fe !important
}

.\!border-violet-100\/20 {
    border-color: rgba(237, 233, 254, .2) !important
}

.\!border-violet-100\/25 {
    border-color: rgba(237, 233, 254, .25) !important
}

.\!border-violet-100\/30 {
    border-color: rgba(237, 233, 254, .3) !important
}

.\!border-violet-100\/40 {
    border-color: rgba(237, 233, 254, .4) !important
}

.\!border-violet-100\/5 {
    border-color: rgba(237, 233, 254, .05) !important
}

.\!border-violet-100\/50 {
    border-color: rgba(237, 233, 254, .5) !important
}

.\!border-violet-100\/60 {
    border-color: rgba(237, 233, 254, .6) !important
}

.\!border-violet-100\/70 {
    border-color: rgba(237, 233, 254, .7) !important
}

.\!border-violet-100\/75 {
    border-color: rgba(237, 233, 254, .75) !important
}

.\!border-violet-100\/80 {
    border-color: rgba(237, 233, 254, .8) !important
}

.\!border-violet-100\/90 {
    border-color: rgba(237, 233, 254, .9) !important
}

.\!border-violet-100\/95 {
    border-color: rgba(237, 233, 254, .95) !important
}

.\!border-violet-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(221 214 254/var(--tw-border-opacity)) !important
}

.\!border-violet-200\/0 {
    border-color: rgba(221, 214, 254, 0) !important
}

.\!border-violet-200\/10 {
    border-color: rgba(221, 214, 254, .1) !important
}

.\!border-violet-200\/100 {
    border-color: #ddd6fe !important
}

.\!border-violet-200\/20 {
    border-color: rgba(221, 214, 254, .2) !important
}

.\!border-violet-200\/25 {
    border-color: rgba(221, 214, 254, .25) !important
}

.\!border-violet-200\/30 {
    border-color: rgba(221, 214, 254, .3) !important
}

.\!border-violet-200\/40 {
    border-color: rgba(221, 214, 254, .4) !important
}

.\!border-violet-200\/5 {
    border-color: rgba(221, 214, 254, .05) !important
}

.\!border-violet-200\/50 {
    border-color: rgba(221, 214, 254, .5) !important
}

.\!border-violet-200\/60 {
    border-color: rgba(221, 214, 254, .6) !important
}

.\!border-violet-200\/70 {
    border-color: rgba(221, 214, 254, .7) !important
}

.\!border-violet-200\/75 {
    border-color: rgba(221, 214, 254, .75) !important
}

.\!border-violet-200\/80 {
    border-color: rgba(221, 214, 254, .8) !important
}

.\!border-violet-200\/90 {
    border-color: rgba(221, 214, 254, .9) !important
}

.\!border-violet-200\/95 {
    border-color: rgba(221, 214, 254, .95) !important
}

.\!border-violet-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(196 181 253/var(--tw-border-opacity)) !important
}

.\!border-violet-300\/0 {
    border-color: rgba(196, 181, 253, 0) !important
}

.\!border-violet-300\/10 {
    border-color: rgba(196, 181, 253, .1) !important
}

.\!border-violet-300\/100 {
    border-color: #c4b5fd !important
}

.\!border-violet-300\/20 {
    border-color: rgba(196, 181, 253, .2) !important
}

.\!border-violet-300\/25 {
    border-color: rgba(196, 181, 253, .25) !important
}

.\!border-violet-300\/30 {
    border-color: rgba(196, 181, 253, .3) !important
}

.\!border-violet-300\/40 {
    border-color: rgba(196, 181, 253, .4) !important
}

.\!border-violet-300\/5 {
    border-color: rgba(196, 181, 253, .05) !important
}

.\!border-violet-300\/50 {
    border-color: rgba(196, 181, 253, .5) !important
}

.\!border-violet-300\/60 {
    border-color: rgba(196, 181, 253, .6) !important
}

.\!border-violet-300\/70 {
    border-color: rgba(196, 181, 253, .7) !important
}

.\!border-violet-300\/75 {
    border-color: rgba(196, 181, 253, .75) !important
}

.\!border-violet-300\/80 {
    border-color: rgba(196, 181, 253, .8) !important
}

.\!border-violet-300\/90 {
    border-color: rgba(196, 181, 253, .9) !important
}

.\!border-violet-300\/95 {
    border-color: rgba(196, 181, 253, .95) !important
}

.\!border-violet-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(167 139 250/var(--tw-border-opacity)) !important
}

.\!border-violet-400\/0 {
    border-color: rgba(167, 139, 250, 0) !important
}

.\!border-violet-400\/10 {
    border-color: rgba(167, 139, 250, .1) !important
}

.\!border-violet-400\/100 {
    border-color: #a78bfa !important
}

.\!border-violet-400\/20 {
    border-color: rgba(167, 139, 250, .2) !important
}

.\!border-violet-400\/25 {
    border-color: rgba(167, 139, 250, .25) !important
}

.\!border-violet-400\/30 {
    border-color: rgba(167, 139, 250, .3) !important
}

.\!border-violet-400\/40 {
    border-color: rgba(167, 139, 250, .4) !important
}

.\!border-violet-400\/5 {
    border-color: rgba(167, 139, 250, .05) !important
}

.\!border-violet-400\/50 {
    border-color: rgba(167, 139, 250, .5) !important
}

.\!border-violet-400\/60 {
    border-color: rgba(167, 139, 250, .6) !important
}

.\!border-violet-400\/70 {
    border-color: rgba(167, 139, 250, .7) !important
}

.\!border-violet-400\/75 {
    border-color: rgba(167, 139, 250, .75) !important
}

.\!border-violet-400\/80 {
    border-color: rgba(167, 139, 250, .8) !important
}

.\!border-violet-400\/90 {
    border-color: rgba(167, 139, 250, .9) !important
}

.\!border-violet-400\/95 {
    border-color: rgba(167, 139, 250, .95) !important
}

.\!border-violet-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(139 92 246/var(--tw-border-opacity)) !important
}

.\!border-violet-500\/0 {
    border-color: rgba(139, 92, 246, 0) !important
}

.\!border-violet-500\/10 {
    border-color: rgba(139, 92, 246, .1) !important
}

.\!border-violet-500\/100 {
    border-color: #8b5cf6 !important
}

.\!border-violet-500\/20 {
    border-color: rgba(139, 92, 246, .2) !important
}

.\!border-violet-500\/25 {
    border-color: rgba(139, 92, 246, .25) !important
}

.\!border-violet-500\/30 {
    border-color: rgba(139, 92, 246, .3) !important
}

.\!border-violet-500\/40 {
    border-color: rgba(139, 92, 246, .4) !important
}

.\!border-violet-500\/5 {
    border-color: rgba(139, 92, 246, .05) !important
}

.\!border-violet-500\/50 {
    border-color: rgba(139, 92, 246, .5) !important
}

.\!border-violet-500\/60 {
    border-color: rgba(139, 92, 246, .6) !important
}

.\!border-violet-500\/70 {
    border-color: rgba(139, 92, 246, .7) !important
}

.\!border-violet-500\/75 {
    border-color: rgba(139, 92, 246, .75) !important
}

.\!border-violet-500\/80 {
    border-color: rgba(139, 92, 246, .8) !important
}

.\!border-violet-500\/90 {
    border-color: rgba(139, 92, 246, .9) !important
}

.\!border-violet-500\/95 {
    border-color: rgba(139, 92, 246, .95) !important
}

.\!border-violet-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(124 58 237/var(--tw-border-opacity)) !important
}

.\!border-violet-600\/0 {
    border-color: rgba(124, 58, 237, 0) !important
}

.\!border-violet-600\/10 {
    border-color: rgba(124, 58, 237, .1) !important
}

.\!border-violet-600\/100 {
    border-color: #7c3aed !important
}

.\!border-violet-600\/20 {
    border-color: rgba(124, 58, 237, .2) !important
}

.\!border-violet-600\/25 {
    border-color: rgba(124, 58, 237, .25) !important
}

.\!border-violet-600\/30 {
    border-color: rgba(124, 58, 237, .3) !important
}

.\!border-violet-600\/40 {
    border-color: rgba(124, 58, 237, .4) !important
}

.\!border-violet-600\/5 {
    border-color: rgba(124, 58, 237, .05) !important
}

.\!border-violet-600\/50 {
    border-color: rgba(124, 58, 237, .5) !important
}

.\!border-violet-600\/60 {
    border-color: rgba(124, 58, 237, .6) !important
}

.\!border-violet-600\/70 {
    border-color: rgba(124, 58, 237, .7) !important
}

.\!border-violet-600\/75 {
    border-color: rgba(124, 58, 237, .75) !important
}

.\!border-violet-600\/80 {
    border-color: rgba(124, 58, 237, .8) !important
}

.\!border-violet-600\/90 {
    border-color: rgba(124, 58, 237, .9) !important
}

.\!border-violet-600\/95 {
    border-color: rgba(124, 58, 237, .95) !important
}

.\!border-violet-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(109 40 217/var(--tw-border-opacity)) !important
}

.\!border-violet-700\/0 {
    border-color: rgba(109, 40, 217, 0) !important
}

.\!border-violet-700\/10 {
    border-color: rgba(109, 40, 217, .1) !important
}

.\!border-violet-700\/100 {
    border-color: #6d28d9 !important
}

.\!border-violet-700\/20 {
    border-color: rgba(109, 40, 217, .2) !important
}

.\!border-violet-700\/25 {
    border-color: rgba(109, 40, 217, .25) !important
}

.\!border-violet-700\/30 {
    border-color: rgba(109, 40, 217, .3) !important
}

.\!border-violet-700\/40 {
    border-color: rgba(109, 40, 217, .4) !important
}

.\!border-violet-700\/5 {
    border-color: rgba(109, 40, 217, .05) !important
}

.\!border-violet-700\/50 {
    border-color: rgba(109, 40, 217, .5) !important
}

.\!border-violet-700\/60 {
    border-color: rgba(109, 40, 217, .6) !important
}

.\!border-violet-700\/70 {
    border-color: rgba(109, 40, 217, .7) !important
}

.\!border-violet-700\/75 {
    border-color: rgba(109, 40, 217, .75) !important
}

.\!border-violet-700\/80 {
    border-color: rgba(109, 40, 217, .8) !important
}

.\!border-violet-700\/90 {
    border-color: rgba(109, 40, 217, .9) !important
}

.\!border-violet-700\/95 {
    border-color: rgba(109, 40, 217, .95) !important
}

.\!border-violet-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(91 33 182/var(--tw-border-opacity)) !important
}

.\!border-violet-800\/0 {
    border-color: rgba(91, 33, 182, 0) !important
}

.\!border-violet-800\/10 {
    border-color: rgba(91, 33, 182, .1) !important
}

.\!border-violet-800\/100 {
    border-color: #5b21b6 !important
}

.\!border-violet-800\/20 {
    border-color: rgba(91, 33, 182, .2) !important
}

.\!border-violet-800\/25 {
    border-color: rgba(91, 33, 182, .25) !important
}

.\!border-violet-800\/30 {
    border-color: rgba(91, 33, 182, .3) !important
}

.\!border-violet-800\/40 {
    border-color: rgba(91, 33, 182, .4) !important
}

.\!border-violet-800\/5 {
    border-color: rgba(91, 33, 182, .05) !important
}

.\!border-violet-800\/50 {
    border-color: rgba(91, 33, 182, .5) !important
}

.\!border-violet-800\/60 {
    border-color: rgba(91, 33, 182, .6) !important
}

.\!border-violet-800\/70 {
    border-color: rgba(91, 33, 182, .7) !important
}

.\!border-violet-800\/75 {
    border-color: rgba(91, 33, 182, .75) !important
}

.\!border-violet-800\/80 {
    border-color: rgba(91, 33, 182, .8) !important
}

.\!border-violet-800\/90 {
    border-color: rgba(91, 33, 182, .9) !important
}

.\!border-violet-800\/95 {
    border-color: rgba(91, 33, 182, .95) !important
}

.\!border-white {
    --tw-border-opacity: 1 !important;
    border-color: rgb(255 255 255/var(--tw-border-opacity)) !important
}

.\!border-yellow-100 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(254 249 195/var(--tw-border-opacity)) !important
}

.\!border-yellow-100\/0 {
    border-color: hsla(55, 97%, 88%, 0) !important
}

.\!border-yellow-100\/10 {
    border-color: hsla(55, 97%, 88%, .1) !important
}

.\!border-yellow-100\/100 {
    border-color: #fef9c3 !important
}

.\!border-yellow-100\/20 {
    border-color: hsla(55, 97%, 88%, .2) !important
}

.\!border-yellow-100\/25 {
    border-color: hsla(55, 97%, 88%, .25) !important
}

.\!border-yellow-100\/30 {
    border-color: hsla(55, 97%, 88%, .3) !important
}

.\!border-yellow-100\/40 {
    border-color: hsla(55, 97%, 88%, .4) !important
}

.\!border-yellow-100\/5 {
    border-color: hsla(55, 97%, 88%, .05) !important
}

.\!border-yellow-100\/50 {
    border-color: hsla(55, 97%, 88%, .5) !important
}

.\!border-yellow-100\/60 {
    border-color: hsla(55, 97%, 88%, .6) !important
}

.\!border-yellow-100\/70 {
    border-color: hsla(55, 97%, 88%, .7) !important
}

.\!border-yellow-100\/75 {
    border-color: hsla(55, 97%, 88%, .75) !important
}

.\!border-yellow-100\/80 {
    border-color: hsla(55, 97%, 88%, .8) !important
}

.\!border-yellow-100\/90 {
    border-color: hsla(55, 97%, 88%, .9) !important
}

.\!border-yellow-100\/95 {
    border-color: hsla(55, 97%, 88%, .95) !important
}

.\!border-yellow-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(254 240 138/var(--tw-border-opacity)) !important
}

.\!border-yellow-200\/0 {
    border-color: hsla(53, 98%, 77%, 0) !important
}

.\!border-yellow-200\/10 {
    border-color: hsla(53, 98%, 77%, .1) !important
}

.\!border-yellow-200\/100 {
    border-color: #fef08a !important
}

.\!border-yellow-200\/20 {
    border-color: hsla(53, 98%, 77%, .2) !important
}

.\!border-yellow-200\/25 {
    border-color: hsla(53, 98%, 77%, .25) !important
}

.\!border-yellow-200\/30 {
    border-color: hsla(53, 98%, 77%, .3) !important
}

.\!border-yellow-200\/40 {
    border-color: hsla(53, 98%, 77%, .4) !important
}

.\!border-yellow-200\/5 {
    border-color: hsla(53, 98%, 77%, .05) !important
}

.\!border-yellow-200\/50 {
    border-color: hsla(53, 98%, 77%, .5) !important
}

.\!border-yellow-200\/60 {
    border-color: hsla(53, 98%, 77%, .6) !important
}

.\!border-yellow-200\/70 {
    border-color: hsla(53, 98%, 77%, .7) !important
}

.\!border-yellow-200\/75 {
    border-color: hsla(53, 98%, 77%, .75) !important
}

.\!border-yellow-200\/80 {
    border-color: hsla(53, 98%, 77%, .8) !important
}

.\!border-yellow-200\/90 {
    border-color: hsla(53, 98%, 77%, .9) !important
}

.\!border-yellow-200\/95 {
    border-color: hsla(53, 98%, 77%, .95) !important
}

.\!border-yellow-300 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(253 224 71/var(--tw-border-opacity)) !important
}

.\!border-yellow-300\/0 {
    border-color: rgba(253, 224, 71, 0) !important
}

.\!border-yellow-300\/10 {
    border-color: rgba(253, 224, 71, .1) !important
}

.\!border-yellow-300\/100 {
    border-color: #fde047 !important
}

.\!border-yellow-300\/20 {
    border-color: rgba(253, 224, 71, .2) !important
}

.\!border-yellow-300\/25 {
    border-color: rgba(253, 224, 71, .25) !important
}

.\!border-yellow-300\/30 {
    border-color: rgba(253, 224, 71, .3) !important
}

.\!border-yellow-300\/40 {
    border-color: rgba(253, 224, 71, .4) !important
}

.\!border-yellow-300\/5 {
    border-color: rgba(253, 224, 71, .05) !important
}

.\!border-yellow-300\/50 {
    border-color: rgba(253, 224, 71, .5) !important
}

.\!border-yellow-300\/60 {
    border-color: rgba(253, 224, 71, .6) !important
}

.\!border-yellow-300\/70 {
    border-color: rgba(253, 224, 71, .7) !important
}

.\!border-yellow-300\/75 {
    border-color: rgba(253, 224, 71, .75) !important
}

.\!border-yellow-300\/80 {
    border-color: rgba(253, 224, 71, .8) !important
}

.\!border-yellow-300\/90 {
    border-color: rgba(253, 224, 71, .9) !important
}

.\!border-yellow-300\/95 {
    border-color: rgba(253, 224, 71, .95) !important
}

.\!border-yellow-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(250 204 21/var(--tw-border-opacity)) !important
}

.\!border-yellow-400\/0 {
    border-color: rgba(250, 204, 21, 0) !important
}

.\!border-yellow-400\/10 {
    border-color: rgba(250, 204, 21, .1) !important
}

.\!border-yellow-400\/100 {
    border-color: #facc15 !important
}

.\!border-yellow-400\/20 {
    border-color: rgba(250, 204, 21, .2) !important
}

.\!border-yellow-400\/25 {
    border-color: rgba(250, 204, 21, .25) !important
}

.\!border-yellow-400\/30 {
    border-color: rgba(250, 204, 21, .3) !important
}

.\!border-yellow-400\/40 {
    border-color: rgba(250, 204, 21, .4) !important
}

.\!border-yellow-400\/5 {
    border-color: rgba(250, 204, 21, .05) !important
}

.\!border-yellow-400\/50 {
    border-color: rgba(250, 204, 21, .5) !important
}

.\!border-yellow-400\/60 {
    border-color: rgba(250, 204, 21, .6) !important
}

.\!border-yellow-400\/70 {
    border-color: rgba(250, 204, 21, .7) !important
}

.\!border-yellow-400\/75 {
    border-color: rgba(250, 204, 21, .75) !important
}

.\!border-yellow-400\/80 {
    border-color: rgba(250, 204, 21, .8) !important
}

.\!border-yellow-400\/90 {
    border-color: rgba(250, 204, 21, .9) !important
}

.\!border-yellow-400\/95 {
    border-color: rgba(250, 204, 21, .95) !important
}

.\!border-yellow-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(234 179 8/var(--tw-border-opacity)) !important
}

.\!border-yellow-500\/0 {
    border-color: rgba(234, 179, 8, 0) !important
}

.\!border-yellow-500\/10 {
    border-color: rgba(234, 179, 8, .1) !important
}

.\!border-yellow-500\/100 {
    border-color: #eab308 !important
}

.\!border-yellow-500\/20 {
    border-color: rgba(234, 179, 8, .2) !important
}

.\!border-yellow-500\/25 {
    border-color: rgba(234, 179, 8, .25) !important
}

.\!border-yellow-500\/30 {
    border-color: rgba(234, 179, 8, .3) !important
}

.\!border-yellow-500\/40 {
    border-color: rgba(234, 179, 8, .4) !important
}

.\!border-yellow-500\/5 {
    border-color: rgba(234, 179, 8, .05) !important
}

.\!border-yellow-500\/50 {
    border-color: rgba(234, 179, 8, .5) !important
}

.\!border-yellow-500\/60 {
    border-color: rgba(234, 179, 8, .6) !important
}

.\!border-yellow-500\/70 {
    border-color: rgba(234, 179, 8, .7) !important
}

.\!border-yellow-500\/75 {
    border-color: rgba(234, 179, 8, .75) !important
}

.\!border-yellow-500\/80 {
    border-color: rgba(234, 179, 8, .8) !important
}

.\!border-yellow-500\/90 {
    border-color: rgba(234, 179, 8, .9) !important
}

.\!border-yellow-500\/95 {
    border-color: rgba(234, 179, 8, .95) !important
}

.\!border-yellow-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(202 138 4/var(--tw-border-opacity)) !important
}

.\!border-yellow-600\/0 {
    border-color: rgba(202, 138, 4, 0) !important
}

.\!border-yellow-600\/10 {
    border-color: rgba(202, 138, 4, .1) !important
}

.\!border-yellow-600\/100 {
    border-color: #ca8a04 !important
}

.\!border-yellow-600\/20 {
    border-color: rgba(202, 138, 4, .2) !important
}

.\!border-yellow-600\/25 {
    border-color: rgba(202, 138, 4, .25) !important
}

.\!border-yellow-600\/30 {
    border-color: rgba(202, 138, 4, .3) !important
}

.\!border-yellow-600\/40 {
    border-color: rgba(202, 138, 4, .4) !important
}

.\!border-yellow-600\/5 {
    border-color: rgba(202, 138, 4, .05) !important
}

.\!border-yellow-600\/50 {
    border-color: rgba(202, 138, 4, .5) !important
}

.\!border-yellow-600\/60 {
    border-color: rgba(202, 138, 4, .6) !important
}

.\!border-yellow-600\/70 {
    border-color: rgba(202, 138, 4, .7) !important
}

.\!border-yellow-600\/75 {
    border-color: rgba(202, 138, 4, .75) !important
}

.\!border-yellow-600\/80 {
    border-color: rgba(202, 138, 4, .8) !important
}

.\!border-yellow-600\/90 {
    border-color: rgba(202, 138, 4, .9) !important
}

.\!border-yellow-600\/95 {
    border-color: rgba(202, 138, 4, .95) !important
}

.\!border-yellow-700 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(161 98 7/var(--tw-border-opacity)) !important
}

.\!border-yellow-700\/0 {
    border-color: rgba(161, 98, 7, 0) !important
}

.\!border-yellow-700\/10 {
    border-color: rgba(161, 98, 7, .1) !important
}

.\!border-yellow-700\/100 {
    border-color: #a16207 !important
}

.\!border-yellow-700\/20 {
    border-color: rgba(161, 98, 7, .2) !important
}

.\!border-yellow-700\/25 {
    border-color: rgba(161, 98, 7, .25) !important
}

.\!border-yellow-700\/30 {
    border-color: rgba(161, 98, 7, .3) !important
}

.\!border-yellow-700\/40 {
    border-color: rgba(161, 98, 7, .4) !important
}

.\!border-yellow-700\/5 {
    border-color: rgba(161, 98, 7, .05) !important
}

.\!border-yellow-700\/50 {
    border-color: rgba(161, 98, 7, .5) !important
}

.\!border-yellow-700\/60 {
    border-color: rgba(161, 98, 7, .6) !important
}

.\!border-yellow-700\/70 {
    border-color: rgba(161, 98, 7, .7) !important
}

.\!border-yellow-700\/75 {
    border-color: rgba(161, 98, 7, .75) !important
}

.\!border-yellow-700\/80 {
    border-color: rgba(161, 98, 7, .8) !important
}

.\!border-yellow-700\/90 {
    border-color: rgba(161, 98, 7, .9) !important
}

.\!border-yellow-700\/95 {
    border-color: rgba(161, 98, 7, .95) !important
}

.\!border-yellow-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(133 77 14/var(--tw-border-opacity)) !important
}

.\!border-yellow-800\/0 {
    border-color: rgba(133, 77, 14, 0) !important
}

.\!border-yellow-800\/10 {
    border-color: rgba(133, 77, 14, .1) !important
}

.\!border-yellow-800\/100 {
    border-color: #854d0e !important
}

.\!border-yellow-800\/20 {
    border-color: rgba(133, 77, 14, .2) !important
}

.\!border-yellow-800\/25 {
    border-color: rgba(133, 77, 14, .25) !important
}

.\!border-yellow-800\/30 {
    border-color: rgba(133, 77, 14, .3) !important
}

.\!border-yellow-800\/40 {
    border-color: rgba(133, 77, 14, .4) !important
}

.\!border-yellow-800\/5 {
    border-color: rgba(133, 77, 14, .05) !important
}

.\!border-yellow-800\/50 {
    border-color: rgba(133, 77, 14, .5) !important
}

.\!border-yellow-800\/60 {
    border-color: rgba(133, 77, 14, .6) !important
}

.\!border-yellow-800\/70 {
    border-color: rgba(133, 77, 14, .7) !important
}

.\!border-yellow-800\/75 {
    border-color: rgba(133, 77, 14, .75) !important
}

.\!border-yellow-800\/80 {
    border-color: rgba(133, 77, 14, .8) !important
}

.\!border-yellow-800\/90 {
    border-color: rgba(133, 77, 14, .9) !important
}

.\!border-yellow-800\/95 {
    border-color: rgba(133, 77, 14, .95) !important
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-blue-100 {
    --tw-border-opacity: 1;
    border-color: rgb(219 234 254/var(--tw-border-opacity))
}

.border-blue-100\/0 {
    border-color: rgba(219, 234, 254, 0)
}

.border-blue-100\/10 {
    border-color: rgba(219, 234, 254, .1)
}

.border-blue-100\/100 {
    border-color: #dbeafe
}

.border-blue-100\/20 {
    border-color: rgba(219, 234, 254, .2)
}

.border-blue-100\/25 {
    border-color: rgba(219, 234, 254, .25)
}

.border-blue-100\/30 {
    border-color: rgba(219, 234, 254, .3)
}

.border-blue-100\/40 {
    border-color: rgba(219, 234, 254, .4)
}

.border-blue-100\/5 {
    border-color: rgba(219, 234, 254, .05)
}

.border-blue-100\/50 {
    border-color: rgba(219, 234, 254, .5)
}

.border-blue-100\/60 {
    border-color: rgba(219, 234, 254, .6)
}

.border-blue-100\/70 {
    border-color: rgba(219, 234, 254, .7)
}

.border-blue-100\/75 {
    border-color: rgba(219, 234, 254, .75)
}

.border-blue-100\/80 {
    border-color: rgba(219, 234, 254, .8)
}

.border-blue-100\/90 {
    border-color: rgba(219, 234, 254, .9)
}

.border-blue-100\/95 {
    border-color: rgba(219, 234, 254, .95)
}

.border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254/var(--tw-border-opacity))
}

.border-blue-200\/0 {
    border-color: rgba(191, 219, 254, 0)
}

.border-blue-200\/10 {
    border-color: rgba(191, 219, 254, .1)
}

.border-blue-200\/100 {
    border-color: #bfdbfe
}

.border-blue-200\/20 {
    border-color: rgba(191, 219, 254, .2)
}

.border-blue-200\/25 {
    border-color: rgba(191, 219, 254, .25)
}

.border-blue-200\/30 {
    border-color: rgba(191, 219, 254, .3)
}

.border-blue-200\/40 {
    border-color: rgba(191, 219, 254, .4)
}

.border-blue-200\/5 {
    border-color: rgba(191, 219, 254, .05)
}

.border-blue-200\/50 {
    border-color: rgba(191, 219, 254, .5)
}

.border-blue-200\/60 {
    border-color: rgba(191, 219, 254, .6)
}

.border-blue-200\/70 {
    border-color: rgba(191, 219, 254, .7)
}

.border-blue-200\/75 {
    border-color: rgba(191, 219, 254, .75)
}

.border-blue-200\/80 {
    border-color: rgba(191, 219, 254, .8)
}

.border-blue-200\/90 {
    border-color: rgba(191, 219, 254, .9)
}

.border-blue-200\/95 {
    border-color: rgba(191, 219, 254, .95)
}

.border-blue-300 {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253/var(--tw-border-opacity))
}

.border-blue-300\/0 {
    border-color: rgba(147, 197, 253, 0)
}

.border-blue-300\/10 {
    border-color: rgba(147, 197, 253, .1)
}

.border-blue-300\/100 {
    border-color: #93c5fd
}

.border-blue-300\/20 {
    border-color: rgba(147, 197, 253, .2)
}

.border-blue-300\/25 {
    border-color: rgba(147, 197, 253, .25)
}

.border-blue-300\/30 {
    border-color: rgba(147, 197, 253, .3)
}

.border-blue-300\/40 {
    border-color: rgba(147, 197, 253, .4)
}

.border-blue-300\/5 {
    border-color: rgba(147, 197, 253, .05)
}

.border-blue-300\/50 {
    border-color: rgba(147, 197, 253, .5)
}

.border-blue-300\/60 {
    border-color: rgba(147, 197, 253, .6)
}

.border-blue-300\/70 {
    border-color: rgba(147, 197, 253, .7)
}

.border-blue-300\/75 {
    border-color: rgba(147, 197, 253, .75)
}

.border-blue-300\/80 {
    border-color: rgba(147, 197, 253, .8)
}

.border-blue-300\/90 {
    border-color: rgba(147, 197, 253, .9)
}

.border-blue-300\/95 {
    border-color: rgba(147, 197, 253, .95)
}

.border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250/var(--tw-border-opacity))
}

.border-blue-400\/0 {
    border-color: rgba(96, 165, 250, 0)
}

.border-blue-400\/10 {
    border-color: rgba(96, 165, 250, .1)
}

.border-blue-400\/100 {
    border-color: #60a5fa
}

.border-blue-400\/20 {
    border-color: rgba(96, 165, 250, .2)
}

.border-blue-400\/25 {
    border-color: rgba(96, 165, 250, .25)
}

.border-blue-400\/30 {
    border-color: rgba(96, 165, 250, .3)
}

.border-blue-400\/40 {
    border-color: rgba(96, 165, 250, .4)
}

.border-blue-400\/5 {
    border-color: rgba(96, 165, 250, .05)
}

.border-blue-400\/50 {
    border-color: rgba(96, 165, 250, .5)
}

.border-blue-400\/60 {
    border-color: rgba(96, 165, 250, .6)
}

.border-blue-400\/70 {
    border-color: rgba(96, 165, 250, .7)
}

.border-blue-400\/75 {
    border-color: rgba(96, 165, 250, .75)
}

.border-blue-400\/80 {
    border-color: rgba(96, 165, 250, .8)
}

.border-blue-400\/90 {
    border-color: rgba(96, 165, 250, .9)
}

.border-blue-400\/95 {
    border-color: rgba(96, 165, 250, .95)
}

.border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246/var(--tw-border-opacity))
}

.border-blue-500\/0 {
    border-color: rgba(59, 130, 246, 0)
}

.border-blue-500\/10 {
    border-color: rgba(59, 130, 246, .1)
}

.border-blue-500\/100 {
    border-color: #3b82f6
}

.border-blue-500\/20 {
    border-color: rgba(59, 130, 246, .2)
}

.border-blue-500\/25 {
    border-color: rgba(59, 130, 246, .25)
}

.border-blue-500\/30 {
    border-color: rgba(59, 130, 246, .3)
}

.border-blue-500\/40 {
    border-color: rgba(59, 130, 246, .4)
}

.border-blue-500\/5 {
    border-color: rgba(59, 130, 246, .05)
}

.border-blue-500\/50 {
    border-color: rgba(59, 130, 246, .5)
}

.border-blue-500\/60 {
    border-color: rgba(59, 130, 246, .6)
}

.border-blue-500\/70 {
    border-color: rgba(59, 130, 246, .7)
}

.border-blue-500\/75 {
    border-color: rgba(59, 130, 246, .75)
}

.border-blue-500\/80 {
    border-color: rgba(59, 130, 246, .8)
}

.border-blue-500\/90 {
    border-color: rgba(59, 130, 246, .9)
}

.border-blue-500\/95 {
    border-color: rgba(59, 130, 246, .95)
}

.border-blue-600 {
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235/var(--tw-border-opacity))
}

.border-blue-600\/0 {
    border-color: rgba(37, 99, 235, 0)
}

.border-blue-600\/10 {
    border-color: rgba(37, 99, 235, .1)
}

.border-blue-600\/100 {
    border-color: #2563eb
}

.border-blue-600\/20 {
    border-color: rgba(37, 99, 235, .2)
}

.border-blue-600\/25 {
    border-color: rgba(37, 99, 235, .25)
}

.border-blue-600\/30 {
    border-color: rgba(37, 99, 235, .3)
}

.border-blue-600\/40 {
    border-color: rgba(37, 99, 235, .4)
}

.border-blue-600\/5 {
    border-color: rgba(37, 99, 235, .05)
}

.border-blue-600\/50 {
    border-color: rgba(37, 99, 235, .5)
}

.border-blue-600\/60 {
    border-color: rgba(37, 99, 235, .6)
}

.border-blue-600\/70 {
    border-color: rgba(37, 99, 235, .7)
}

.border-blue-600\/75 {
    border-color: rgba(37, 99, 235, .75)
}

.border-blue-600\/80 {
    border-color: rgba(37, 99, 235, .8)
}

.border-blue-600\/90 {
    border-color: rgba(37, 99, 235, .9)
}

.border-blue-600\/95 {
    border-color: rgba(37, 99, 235, .95)
}

.border-blue-700 {
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216/var(--tw-border-opacity))
}

.border-blue-700\/0 {
    border-color: rgba(29, 78, 216, 0)
}

.border-blue-700\/10 {
    border-color: rgba(29, 78, 216, .1)
}

.border-blue-700\/100 {
    border-color: #1d4ed8
}

.border-blue-700\/20 {
    border-color: rgba(29, 78, 216, .2)
}

.border-blue-700\/25 {
    border-color: rgba(29, 78, 216, .25)
}

.border-blue-700\/30 {
    border-color: rgba(29, 78, 216, .3)
}

.border-blue-700\/40 {
    border-color: rgba(29, 78, 216, .4)
}

.border-blue-700\/5 {
    border-color: rgba(29, 78, 216, .05)
}

.border-blue-700\/50 {
    border-color: rgba(29, 78, 216, .5)
}

.border-blue-700\/60 {
    border-color: rgba(29, 78, 216, .6)
}

.border-blue-700\/70 {
    border-color: rgba(29, 78, 216, .7)
}

.border-blue-700\/75 {
    border-color: rgba(29, 78, 216, .75)
}

.border-blue-700\/80 {
    border-color: rgba(29, 78, 216, .8)
}

.border-blue-700\/90 {
    border-color: rgba(29, 78, 216, .9)
}

.border-blue-700\/95 {
    border-color: rgba(29, 78, 216, .95)
}

.border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175/var(--tw-border-opacity))
}

.border-blue-800\/0 {
    border-color: rgba(30, 64, 175, 0)
}

.border-blue-800\/10 {
    border-color: rgba(30, 64, 175, .1)
}

.border-blue-800\/100 {
    border-color: #1e40af
}

.border-blue-800\/20 {
    border-color: rgba(30, 64, 175, .2)
}

.border-blue-800\/25 {
    border-color: rgba(30, 64, 175, .25)
}

.border-blue-800\/30 {
    border-color: rgba(30, 64, 175, .3)
}

.border-blue-800\/40 {
    border-color: rgba(30, 64, 175, .4)
}

.border-blue-800\/5 {
    border-color: rgba(30, 64, 175, .05)
}

.border-blue-800\/50 {
    border-color: rgba(30, 64, 175, .5)
}

.border-blue-800\/60 {
    border-color: rgba(30, 64, 175, .6)
}

.border-blue-800\/70 {
    border-color: rgba(30, 64, 175, .7)
}

.border-blue-800\/75 {
    border-color: rgba(30, 64, 175, .75)
}

.border-blue-800\/80 {
    border-color: rgba(30, 64, 175, .8)
}

.border-blue-800\/90 {
    border-color: rgba(30, 64, 175, .9)
}

.border-blue-800\/95 {
    border-color: rgba(30, 64, 175, .95)
}

.border-emerald-100 {
    --tw-border-opacity: 1;
    border-color: rgb(209 250 229/var(--tw-border-opacity))
}

.border-emerald-100\/0 {
    border-color: rgba(209, 250, 229, 0)
}

.border-emerald-100\/10 {
    border-color: rgba(209, 250, 229, .1)
}

.border-emerald-100\/100 {
    border-color: #d1fae5
}

.border-emerald-100\/20 {
    border-color: rgba(209, 250, 229, .2)
}

.border-emerald-100\/25 {
    border-color: rgba(209, 250, 229, .25)
}

.border-emerald-100\/30 {
    border-color: rgba(209, 250, 229, .3)
}

.border-emerald-100\/40 {
    border-color: rgba(209, 250, 229, .4)
}

.border-emerald-100\/5 {
    border-color: rgba(209, 250, 229, .05)
}

.border-emerald-100\/50 {
    border-color: rgba(209, 250, 229, .5)
}

.border-emerald-100\/60 {
    border-color: rgba(209, 250, 229, .6)
}

.border-emerald-100\/70 {
    border-color: rgba(209, 250, 229, .7)
}

.border-emerald-100\/75 {
    border-color: rgba(209, 250, 229, .75)
}

.border-emerald-100\/80 {
    border-color: rgba(209, 250, 229, .8)
}

.border-emerald-100\/90 {
    border-color: rgba(209, 250, 229, .9)
}

.border-emerald-100\/95 {
    border-color: rgba(209, 250, 229, .95)
}

.border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208/var(--tw-border-opacity))
}

.border-emerald-200\/0 {
    border-color: rgba(167, 243, 208, 0)
}

.border-emerald-200\/10 {
    border-color: rgba(167, 243, 208, .1)
}

.border-emerald-200\/100 {
    border-color: #a7f3d0
}

.border-emerald-200\/20 {
    border-color: rgba(167, 243, 208, .2)
}

.border-emerald-200\/25 {
    border-color: rgba(167, 243, 208, .25)
}

.border-emerald-200\/30 {
    border-color: rgba(167, 243, 208, .3)
}

.border-emerald-200\/40 {
    border-color: rgba(167, 243, 208, .4)
}

.border-emerald-200\/5 {
    border-color: rgba(167, 243, 208, .05)
}

.border-emerald-200\/50 {
    border-color: rgba(167, 243, 208, .5)
}

.border-emerald-200\/60 {
    border-color: rgba(167, 243, 208, .6)
}

.border-emerald-200\/70 {
    border-color: rgba(167, 243, 208, .7)
}

.border-emerald-200\/75 {
    border-color: rgba(167, 243, 208, .75)
}

.border-emerald-200\/80 {
    border-color: rgba(167, 243, 208, .8)
}

.border-emerald-200\/90 {
    border-color: rgba(167, 243, 208, .9)
}

.border-emerald-200\/95 {
    border-color: rgba(167, 243, 208, .95)
}

.border-emerald-300 {
    --tw-border-opacity: 1;
    border-color: rgb(110 231 183/var(--tw-border-opacity))
}

.border-emerald-300\/0 {
    border-color: rgba(110, 231, 183, 0)
}

.border-emerald-300\/10 {
    border-color: rgba(110, 231, 183, .1)
}

.border-emerald-300\/100 {
    border-color: #6ee7b7
}

.border-emerald-300\/20 {
    border-color: rgba(110, 231, 183, .2)
}

.border-emerald-300\/25 {
    border-color: rgba(110, 231, 183, .25)
}

.border-emerald-300\/30 {
    border-color: rgba(110, 231, 183, .3)
}

.border-emerald-300\/40 {
    border-color: rgba(110, 231, 183, .4)
}

.border-emerald-300\/5 {
    border-color: rgba(110, 231, 183, .05)
}

.border-emerald-300\/50 {
    border-color: rgba(110, 231, 183, .5)
}

.border-emerald-300\/60 {
    border-color: rgba(110, 231, 183, .6)
}

.border-emerald-300\/70 {
    border-color: rgba(110, 231, 183, .7)
}

.border-emerald-300\/75 {
    border-color: rgba(110, 231, 183, .75)
}

.border-emerald-300\/80 {
    border-color: rgba(110, 231, 183, .8)
}

.border-emerald-300\/90 {
    border-color: rgba(110, 231, 183, .9)
}

.border-emerald-300\/95 {
    border-color: rgba(110, 231, 183, .95)
}

.border-emerald-400 {
    --tw-border-opacity: 1;
    border-color: rgb(52 211 153/var(--tw-border-opacity))
}

.border-emerald-400\/0 {
    border-color: rgba(52, 211, 153, 0)
}

.border-emerald-400\/10 {
    border-color: rgba(52, 211, 153, .1)
}

.border-emerald-400\/100 {
    border-color: #34d399
}

.border-emerald-400\/20 {
    border-color: rgba(52, 211, 153, .2)
}

.border-emerald-400\/25 {
    border-color: rgba(52, 211, 153, .25)
}

.border-emerald-400\/30 {
    border-color: rgba(52, 211, 153, .3)
}

.border-emerald-400\/40 {
    border-color: rgba(52, 211, 153, .4)
}

.border-emerald-400\/5 {
    border-color: rgba(52, 211, 153, .05)
}

.border-emerald-400\/50 {
    border-color: rgba(52, 211, 153, .5)
}

.border-emerald-400\/60 {
    border-color: rgba(52, 211, 153, .6)
}

.border-emerald-400\/70 {
    border-color: rgba(52, 211, 153, .7)
}

.border-emerald-400\/75 {
    border-color: rgba(52, 211, 153, .75)
}

.border-emerald-400\/80 {
    border-color: rgba(52, 211, 153, .8)
}

.border-emerald-400\/90 {
    border-color: rgba(52, 211, 153, .9)
}

.border-emerald-400\/95 {
    border-color: rgba(52, 211, 153, .95)
}

.border-emerald-500 {
    --tw-border-opacity: 1;
    border-color: rgb(16 185 129/var(--tw-border-opacity))
}

.border-emerald-500\/0 {
    border-color: rgba(16, 185, 129, 0)
}

.border-emerald-500\/10 {
    border-color: rgba(16, 185, 129, .1)
}

.border-emerald-500\/100 {
    border-color: #10b981
}

.border-emerald-500\/20 {
    border-color: rgba(16, 185, 129, .2)
}

.border-emerald-500\/25 {
    border-color: rgba(16, 185, 129, .25)
}

.border-emerald-500\/30 {
    border-color: rgba(16, 185, 129, .3)
}

.border-emerald-500\/40 {
    border-color: rgba(16, 185, 129, .4)
}

.border-emerald-500\/5 {
    border-color: rgba(16, 185, 129, .05)
}

.border-emerald-500\/50 {
    border-color: rgba(16, 185, 129, .5)
}

.border-emerald-500\/60 {
    border-color: rgba(16, 185, 129, .6)
}

.border-emerald-500\/70 {
    border-color: rgba(16, 185, 129, .7)
}

.border-emerald-500\/75 {
    border-color: rgba(16, 185, 129, .75)
}

.border-emerald-500\/80 {
    border-color: rgba(16, 185, 129, .8)
}

.border-emerald-500\/90 {
    border-color: rgba(16, 185, 129, .9)
}

.border-emerald-500\/95 {
    border-color: rgba(16, 185, 129, .95)
}

.border-emerald-600 {
    --tw-border-opacity: 1;
    border-color: rgb(5 150 105/var(--tw-border-opacity))
}

.border-emerald-600\/0 {
    border-color: rgba(5, 150, 105, 0)
}

.border-emerald-600\/10 {
    border-color: rgba(5, 150, 105, .1)
}

.border-emerald-600\/100 {
    border-color: #059669
}

.border-emerald-600\/20 {
    border-color: rgba(5, 150, 105, .2)
}

.border-emerald-600\/25 {
    border-color: rgba(5, 150, 105, .25)
}

.border-emerald-600\/30 {
    border-color: rgba(5, 150, 105, .3)
}

.border-emerald-600\/40 {
    border-color: rgba(5, 150, 105, .4)
}

.border-emerald-600\/5 {
    border-color: rgba(5, 150, 105, .05)
}

.border-emerald-600\/50 {
    border-color: rgba(5, 150, 105, .5)
}

.border-emerald-600\/60 {
    border-color: rgba(5, 150, 105, .6)
}

.border-emerald-600\/70 {
    border-color: rgba(5, 150, 105, .7)
}

.border-emerald-600\/75 {
    border-color: rgba(5, 150, 105, .75)
}

.border-emerald-600\/80 {
    border-color: rgba(5, 150, 105, .8)
}

.border-emerald-600\/90 {
    border-color: rgba(5, 150, 105, .9)
}

.border-emerald-600\/95 {
    border-color: rgba(5, 150, 105, .95)
}

.border-emerald-700 {
    --tw-border-opacity: 1;
    border-color: rgb(4 120 87/var(--tw-border-opacity))
}

.border-emerald-700\/0 {
    border-color: rgba(4, 120, 87, 0)
}

.border-emerald-700\/10 {
    border-color: rgba(4, 120, 87, .1)
}

.border-emerald-700\/100 {
    border-color: #047857
}

.border-emerald-700\/20 {
    border-color: rgba(4, 120, 87, .2)
}

.border-emerald-700\/25 {
    border-color: rgba(4, 120, 87, .25)
}

.border-emerald-700\/30 {
    border-color: rgba(4, 120, 87, .3)
}

.border-emerald-700\/40 {
    border-color: rgba(4, 120, 87, .4)
}

.border-emerald-700\/5 {
    border-color: rgba(4, 120, 87, .05)
}

.border-emerald-700\/50 {
    border-color: rgba(4, 120, 87, .5)
}

.border-emerald-700\/60 {
    border-color: rgba(4, 120, 87, .6)
}

.border-emerald-700\/70 {
    border-color: rgba(4, 120, 87, .7)
}

.border-emerald-700\/75 {
    border-color: rgba(4, 120, 87, .75)
}

.border-emerald-700\/80 {
    border-color: rgba(4, 120, 87, .8)
}

.border-emerald-700\/90 {
    border-color: rgba(4, 120, 87, .9)
}

.border-emerald-700\/95 {
    border-color: rgba(4, 120, 87, .95)
}

.border-emerald-800 {
    --tw-border-opacity: 1;
    border-color: rgb(6 95 70/var(--tw-border-opacity))
}

.border-emerald-800\/0 {
    border-color: rgba(6, 95, 70, 0)
}

.border-emerald-800\/10 {
    border-color: rgba(6, 95, 70, .1)
}

.border-emerald-800\/100 {
    border-color: #065f46
}

.border-emerald-800\/20 {
    border-color: rgba(6, 95, 70, .2)
}

.border-emerald-800\/25 {
    border-color: rgba(6, 95, 70, .25)
}

.border-emerald-800\/30 {
    border-color: rgba(6, 95, 70, .3)
}

.border-emerald-800\/40 {
    border-color: rgba(6, 95, 70, .4)
}

.border-emerald-800\/5 {
    border-color: rgba(6, 95, 70, .05)
}

.border-emerald-800\/50 {
    border-color: rgba(6, 95, 70, .5)
}

.border-emerald-800\/60 {
    border-color: rgba(6, 95, 70, .6)
}

.border-emerald-800\/70 {
    border-color: rgba(6, 95, 70, .7)
}

.border-emerald-800\/75 {
    border-color: rgba(6, 95, 70, .75)
}

.border-emerald-800\/80 {
    border-color: rgba(6, 95, 70, .8)
}

.border-emerald-800\/90 {
    border-color: rgba(6, 95, 70, .9)
}

.border-emerald-800\/95 {
    border-color: rgba(6, 95, 70, .95)
}

.border-green-100 {
    --tw-border-opacity: 1;
    border-color: rgb(220 252 231/var(--tw-border-opacity))
}

.border-green-100\/0 {
    border-color: rgba(220, 252, 231, 0)
}

.border-green-100\/10 {
    border-color: rgba(220, 252, 231, .1)
}

.border-green-100\/100 {
    border-color: #dcfce7
}

.border-green-100\/20 {
    border-color: rgba(220, 252, 231, .2)
}

.border-green-100\/25 {
    border-color: rgba(220, 252, 231, .25)
}

.border-green-100\/30 {
    border-color: rgba(220, 252, 231, .3)
}

.border-green-100\/40 {
    border-color: rgba(220, 252, 231, .4)
}

.border-green-100\/5 {
    border-color: rgba(220, 252, 231, .05)
}

.border-green-100\/50 {
    border-color: rgba(220, 252, 231, .5)
}

.border-green-100\/60 {
    border-color: rgba(220, 252, 231, .6)
}

.border-green-100\/70 {
    border-color: rgba(220, 252, 231, .7)
}

.border-green-100\/75 {
    border-color: rgba(220, 252, 231, .75)
}

.border-green-100\/80 {
    border-color: rgba(220, 252, 231, .8)
}

.border-green-100\/90 {
    border-color: rgba(220, 252, 231, .9)
}

.border-green-100\/95 {
    border-color: rgba(220, 252, 231, .95)
}

.border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208/var(--tw-border-opacity))
}

.border-green-200\/0 {
    border-color: rgba(187, 247, 208, 0)
}

.border-green-200\/10 {
    border-color: rgba(187, 247, 208, .1)
}

.border-green-200\/100 {
    border-color: #bbf7d0
}

.border-green-200\/20 {
    border-color: rgba(187, 247, 208, .2)
}

.border-green-200\/25 {
    border-color: rgba(187, 247, 208, .25)
}

.border-green-200\/30 {
    border-color: rgba(187, 247, 208, .3)
}

.border-green-200\/40 {
    border-color: rgba(187, 247, 208, .4)
}

.border-green-200\/5 {
    border-color: rgba(187, 247, 208, .05)
}

.border-green-200\/50 {
    border-color: rgba(187, 247, 208, .5)
}

.border-green-200\/60 {
    border-color: rgba(187, 247, 208, .6)
}

.border-green-200\/70 {
    border-color: rgba(187, 247, 208, .7)
}

.border-green-200\/75 {
    border-color: rgba(187, 247, 208, .75)
}

.border-green-200\/80 {
    border-color: rgba(187, 247, 208, .8)
}

.border-green-200\/90 {
    border-color: rgba(187, 247, 208, .9)
}

.border-green-200\/95 {
    border-color: rgba(187, 247, 208, .95)
}

.border-green-300 {
    --tw-border-opacity: 1;
    border-color: rgb(134 239 172/var(--tw-border-opacity))
}

.border-green-300\/0 {
    border-color: rgba(134, 239, 172, 0)
}

.border-green-300\/10 {
    border-color: rgba(134, 239, 172, .1)
}

.border-green-300\/100 {
    border-color: #86efac
}

.border-green-300\/20 {
    border-color: rgba(134, 239, 172, .2)
}

.border-green-300\/25 {
    border-color: rgba(134, 239, 172, .25)
}

.border-green-300\/30 {
    border-color: rgba(134, 239, 172, .3)
}

.border-green-300\/40 {
    border-color: rgba(134, 239, 172, .4)
}

.border-green-300\/5 {
    border-color: rgba(134, 239, 172, .05)
}

.border-green-300\/50 {
    border-color: rgba(134, 239, 172, .5)
}

.border-green-300\/60 {
    border-color: rgba(134, 239, 172, .6)
}

.border-green-300\/70 {
    border-color: rgba(134, 239, 172, .7)
}

.border-green-300\/75 {
    border-color: rgba(134, 239, 172, .75)
}

.border-green-300\/80 {
    border-color: rgba(134, 239, 172, .8)
}

.border-green-300\/90 {
    border-color: rgba(134, 239, 172, .9)
}

.border-green-300\/95 {
    border-color: rgba(134, 239, 172, .95)
}

.border-green-400 {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128/var(--tw-border-opacity))
}

.border-green-400\/0 {
    border-color: rgba(74, 222, 128, 0)
}

.border-green-400\/10 {
    border-color: rgba(74, 222, 128, .1)
}

.border-green-400\/100 {
    border-color: #4ade80
}

.border-green-400\/20 {
    border-color: rgba(74, 222, 128, .2)
}

.border-green-400\/25 {
    border-color: rgba(74, 222, 128, .25)
}

.border-green-400\/30 {
    border-color: rgba(74, 222, 128, .3)
}

.border-green-400\/40 {
    border-color: rgba(74, 222, 128, .4)
}

.border-green-400\/5 {
    border-color: rgba(74, 222, 128, .05)
}

.border-green-400\/50 {
    border-color: rgba(74, 222, 128, .5)
}

.border-green-400\/60 {
    border-color: rgba(74, 222, 128, .6)
}

.border-green-400\/70 {
    border-color: rgba(74, 222, 128, .7)
}

.border-green-400\/75 {
    border-color: rgba(74, 222, 128, .75)
}

.border-green-400\/80 {
    border-color: rgba(74, 222, 128, .8)
}

.border-green-400\/90 {
    border-color: rgba(74, 222, 128, .9)
}

.border-green-400\/95 {
    border-color: rgba(74, 222, 128, .95)
}

.border-green-500 {
    --tw-border-opacity: 1;
    border-color: rgb(34 197 94/var(--tw-border-opacity))
}

.border-green-500\/0 {
    border-color: rgba(34, 197, 94, 0)
}

.border-green-500\/10 {
    border-color: rgba(34, 197, 94, .1)
}

.border-green-500\/100 {
    border-color: #22c55e
}

.border-green-500\/20 {
    border-color: rgba(34, 197, 94, .2)
}

.border-green-500\/25 {
    border-color: rgba(34, 197, 94, .25)
}

.border-green-500\/30 {
    border-color: rgba(34, 197, 94, .3)
}

.border-green-500\/40 {
    border-color: rgba(34, 197, 94, .4)
}

.border-green-500\/5 {
    border-color: rgba(34, 197, 94, .05)
}

.border-green-500\/50 {
    border-color: rgba(34, 197, 94, .5)
}

.border-green-500\/60 {
    border-color: rgba(34, 197, 94, .6)
}

.border-green-500\/70 {
    border-color: rgba(34, 197, 94, .7)
}

.border-green-500\/75 {
    border-color: rgba(34, 197, 94, .75)
}

.border-green-500\/80 {
    border-color: rgba(34, 197, 94, .8)
}

.border-green-500\/90 {
    border-color: rgba(34, 197, 94, .9)
}

.border-green-500\/95 {
    border-color: rgba(34, 197, 94, .95)
}

.border-green-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74/var(--tw-border-opacity))
}

.border-green-600\/0 {
    border-color: rgba(22, 163, 74, 0)
}

.border-green-600\/10 {
    border-color: rgba(22, 163, 74, .1)
}

.border-green-600\/100 {
    border-color: #16a34a
}

.border-green-600\/20 {
    border-color: rgba(22, 163, 74, .2)
}

.border-green-600\/25 {
    border-color: rgba(22, 163, 74, .25)
}

.border-green-600\/30 {
    border-color: rgba(22, 163, 74, .3)
}

.border-green-600\/40 {
    border-color: rgba(22, 163, 74, .4)
}

.border-green-600\/5 {
    border-color: rgba(22, 163, 74, .05)
}

.border-green-600\/50 {
    border-color: rgba(22, 163, 74, .5)
}

.border-green-600\/60 {
    border-color: rgba(22, 163, 74, .6)
}

.border-green-600\/70 {
    border-color: rgba(22, 163, 74, .7)
}

.border-green-600\/75 {
    border-color: rgba(22, 163, 74, .75)
}

.border-green-600\/80 {
    border-color: rgba(22, 163, 74, .8)
}

.border-green-600\/90 {
    border-color: rgba(22, 163, 74, .9)
}

.border-green-600\/95 {
    border-color: rgba(22, 163, 74, .95)
}

.border-green-700 {
    --tw-border-opacity: 1;
    border-color: rgb(21 128 61/var(--tw-border-opacity))
}

.border-green-700\/0 {
    border-color: rgba(21, 128, 61, 0)
}

.border-green-700\/10 {
    border-color: rgba(21, 128, 61, .1)
}

.border-green-700\/100 {
    border-color: #15803d
}

.border-green-700\/20 {
    border-color: rgba(21, 128, 61, .2)
}

.border-green-700\/25 {
    border-color: rgba(21, 128, 61, .25)
}

.border-green-700\/30 {
    border-color: rgba(21, 128, 61, .3)
}

.border-green-700\/40 {
    border-color: rgba(21, 128, 61, .4)
}

.border-green-700\/5 {
    border-color: rgba(21, 128, 61, .05)
}

.border-green-700\/50 {
    border-color: rgba(21, 128, 61, .5)
}

.border-green-700\/60 {
    border-color: rgba(21, 128, 61, .6)
}

.border-green-700\/70 {
    border-color: rgba(21, 128, 61, .7)
}

.border-green-700\/75 {
    border-color: rgba(21, 128, 61, .75)
}

.border-green-700\/80 {
    border-color: rgba(21, 128, 61, .8)
}

.border-green-700\/90 {
    border-color: rgba(21, 128, 61, .9)
}

.border-green-700\/95 {
    border-color: rgba(21, 128, 61, .95)
}

.border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52/var(--tw-border-opacity))
}

.border-green-800\/0 {
    border-color: rgba(22, 101, 52, 0)
}

.border-green-800\/10 {
    border-color: rgba(22, 101, 52, .1)
}

.border-green-800\/100 {
    border-color: #166534
}

.border-green-800\/20 {
    border-color: rgba(22, 101, 52, .2)
}

.border-green-800\/25 {
    border-color: rgba(22, 101, 52, .25)
}

.border-green-800\/30 {
    border-color: rgba(22, 101, 52, .3)
}

.border-green-800\/40 {
    border-color: rgba(22, 101, 52, .4)
}

.border-green-800\/5 {
    border-color: rgba(22, 101, 52, .05)
}

.border-green-800\/50 {
    border-color: rgba(22, 101, 52, .5)
}

.border-green-800\/60 {
    border-color: rgba(22, 101, 52, .6)
}

.border-green-800\/70 {
    border-color: rgba(22, 101, 52, .7)
}

.border-green-800\/75 {
    border-color: rgba(22, 101, 52, .75)
}

.border-green-800\/80 {
    border-color: rgba(22, 101, 52, .8)
}

.border-green-800\/90 {
    border-color: rgba(22, 101, 52, .9)
}

.border-green-800\/95 {
    border-color: rgba(22, 101, 52, .95)
}

.border-lime-100 {
    --tw-border-opacity: 1;
    border-color: rgb(236 252 203/var(--tw-border-opacity))
}

.border-lime-100\/0 {
    border-color: hsla(80, 89%, 89%, 0)
}

.border-lime-100\/10 {
    border-color: hsla(80, 89%, 89%, .1)
}

.border-lime-100\/100 {
    border-color: #ecfccb
}

.border-lime-100\/20 {
    border-color: hsla(80, 89%, 89%, .2)
}

.border-lime-100\/25 {
    border-color: hsla(80, 89%, 89%, .25)
}

.border-lime-100\/30 {
    border-color: hsla(80, 89%, 89%, .3)
}

.border-lime-100\/40 {
    border-color: hsla(80, 89%, 89%, .4)
}

.border-lime-100\/5 {
    border-color: hsla(80, 89%, 89%, .05)
}

.border-lime-100\/50 {
    border-color: hsla(80, 89%, 89%, .5)
}

.border-lime-100\/60 {
    border-color: hsla(80, 89%, 89%, .6)
}

.border-lime-100\/70 {
    border-color: hsla(80, 89%, 89%, .7)
}

.border-lime-100\/75 {
    border-color: hsla(80, 89%, 89%, .75)
}

.border-lime-100\/80 {
    border-color: hsla(80, 89%, 89%, .8)
}

.border-lime-100\/90 {
    border-color: hsla(80, 89%, 89%, .9)
}

.border-lime-100\/95 {
    border-color: hsla(80, 89%, 89%, .95)
}

.border-lime-200 {
    --tw-border-opacity: 1;
    border-color: rgb(217 249 157/var(--tw-border-opacity))
}

.border-lime-200\/0 {
    border-color: hsla(81, 88%, 80%, 0)
}

.border-lime-200\/10 {
    border-color: hsla(81, 88%, 80%, .1)
}

.border-lime-200\/100 {
    border-color: #d9f99d
}

.border-lime-200\/20 {
    border-color: hsla(81, 88%, 80%, .2)
}

.border-lime-200\/25 {
    border-color: hsla(81, 88%, 80%, .25)
}

.border-lime-200\/30 {
    border-color: hsla(81, 88%, 80%, .3)
}

.border-lime-200\/40 {
    border-color: hsla(81, 88%, 80%, .4)
}

.border-lime-200\/5 {
    border-color: hsla(81, 88%, 80%, .05)
}

.border-lime-200\/50 {
    border-color: hsla(81, 88%, 80%, .5)
}

.border-lime-200\/60 {
    border-color: hsla(81, 88%, 80%, .6)
}

.border-lime-200\/70 {
    border-color: hsla(81, 88%, 80%, .7)
}

.border-lime-200\/75 {
    border-color: hsla(81, 88%, 80%, .75)
}

.border-lime-200\/80 {
    border-color: hsla(81, 88%, 80%, .8)
}

.border-lime-200\/90 {
    border-color: hsla(81, 88%, 80%, .9)
}

.border-lime-200\/95 {
    border-color: hsla(81, 88%, 80%, .95)
}

.border-lime-300 {
    --tw-border-opacity: 1;
    border-color: rgb(190 242 100/var(--tw-border-opacity))
}

.border-lime-300\/0 {
    border-color: hsla(82, 85%, 67%, 0)
}

.border-lime-300\/10 {
    border-color: hsla(82, 85%, 67%, .1)
}

.border-lime-300\/100 {
    border-color: #bef264
}

.border-lime-300\/20 {
    border-color: hsla(82, 85%, 67%, .2)
}

.border-lime-300\/25 {
    border-color: hsla(82, 85%, 67%, .25)
}

.border-lime-300\/30 {
    border-color: hsla(82, 85%, 67%, .3)
}

.border-lime-300\/40 {
    border-color: hsla(82, 85%, 67%, .4)
}

.border-lime-300\/5 {
    border-color: hsla(82, 85%, 67%, .05)
}

.border-lime-300\/50 {
    border-color: hsla(82, 85%, 67%, .5)
}

.border-lime-300\/60 {
    border-color: hsla(82, 85%, 67%, .6)
}

.border-lime-300\/70 {
    border-color: hsla(82, 85%, 67%, .7)
}

.border-lime-300\/75 {
    border-color: hsla(82, 85%, 67%, .75)
}

.border-lime-300\/80 {
    border-color: hsla(82, 85%, 67%, .8)
}

.border-lime-300\/90 {
    border-color: hsla(82, 85%, 67%, .9)
}

.border-lime-300\/95 {
    border-color: hsla(82, 85%, 67%, .95)
}

.border-lime-400 {
    --tw-border-opacity: 1;
    border-color: rgb(163 230 53/var(--tw-border-opacity))
}

.border-lime-400\/0 {
    border-color: rgba(163, 230, 53, 0)
}

.border-lime-400\/10 {
    border-color: rgba(163, 230, 53, .1)
}

.border-lime-400\/100 {
    border-color: #a3e635
}

.border-lime-400\/20 {
    border-color: rgba(163, 230, 53, .2)
}

.border-lime-400\/25 {
    border-color: rgba(163, 230, 53, .25)
}

.border-lime-400\/30 {
    border-color: rgba(163, 230, 53, .3)
}

.border-lime-400\/40 {
    border-color: rgba(163, 230, 53, .4)
}

.border-lime-400\/5 {
    border-color: rgba(163, 230, 53, .05)
}

.border-lime-400\/50 {
    border-color: rgba(163, 230, 53, .5)
}

.border-lime-400\/60 {
    border-color: rgba(163, 230, 53, .6)
}

.border-lime-400\/70 {
    border-color: rgba(163, 230, 53, .7)
}

.border-lime-400\/75 {
    border-color: rgba(163, 230, 53, .75)
}

.border-lime-400\/80 {
    border-color: rgba(163, 230, 53, .8)
}

.border-lime-400\/90 {
    border-color: rgba(163, 230, 53, .9)
}

.border-lime-400\/95 {
    border-color: rgba(163, 230, 53, .95)
}

.border-lime-500 {
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22/var(--tw-border-opacity))
}

.border-lime-500\/0 {
    border-color: rgba(132, 204, 22, 0)
}

.border-lime-500\/10 {
    border-color: rgba(132, 204, 22, .1)
}

.border-lime-500\/100 {
    border-color: #84cc16
}

.border-lime-500\/20 {
    border-color: rgba(132, 204, 22, .2)
}

.border-lime-500\/25 {
    border-color: rgba(132, 204, 22, .25)
}

.border-lime-500\/30 {
    border-color: rgba(132, 204, 22, .3)
}

.border-lime-500\/40 {
    border-color: rgba(132, 204, 22, .4)
}

.border-lime-500\/5 {
    border-color: rgba(132, 204, 22, .05)
}

.border-lime-500\/50 {
    border-color: rgba(132, 204, 22, .5)
}

.border-lime-500\/60 {
    border-color: rgba(132, 204, 22, .6)
}

.border-lime-500\/70 {
    border-color: rgba(132, 204, 22, .7)
}

.border-lime-500\/75 {
    border-color: rgba(132, 204, 22, .75)
}

.border-lime-500\/80 {
    border-color: rgba(132, 204, 22, .8)
}

.border-lime-500\/90 {
    border-color: rgba(132, 204, 22, .9)
}

.border-lime-500\/95 {
    border-color: rgba(132, 204, 22, .95)
}

.border-lime-600 {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13/var(--tw-border-opacity))
}

.border-lime-600\/0 {
    border-color: rgba(101, 163, 13, 0)
}

.border-lime-600\/10 {
    border-color: rgba(101, 163, 13, .1)
}

.border-lime-600\/100 {
    border-color: #65a30d
}

.border-lime-600\/20 {
    border-color: rgba(101, 163, 13, .2)
}

.border-lime-600\/25 {
    border-color: rgba(101, 163, 13, .25)
}

.border-lime-600\/30 {
    border-color: rgba(101, 163, 13, .3)
}

.border-lime-600\/40 {
    border-color: rgba(101, 163, 13, .4)
}

.border-lime-600\/5 {
    border-color: rgba(101, 163, 13, .05)
}

.border-lime-600\/50 {
    border-color: rgba(101, 163, 13, .5)
}

.border-lime-600\/60 {
    border-color: rgba(101, 163, 13, .6)
}

.border-lime-600\/70 {
    border-color: rgba(101, 163, 13, .7)
}

.border-lime-600\/75 {
    border-color: rgba(101, 163, 13, .75)
}

.border-lime-600\/80 {
    border-color: rgba(101, 163, 13, .8)
}

.border-lime-600\/90 {
    border-color: rgba(101, 163, 13, .9)
}

.border-lime-600\/95 {
    border-color: rgba(101, 163, 13, .95)
}

.border-lime-700 {
    --tw-border-opacity: 1;
    border-color: rgb(77 124 15/var(--tw-border-opacity))
}

.border-lime-700\/0 {
    border-color: rgba(77, 124, 15, 0)
}

.border-lime-700\/10 {
    border-color: rgba(77, 124, 15, .1)
}

.border-lime-700\/100 {
    border-color: #4d7c0f
}

.border-lime-700\/20 {
    border-color: rgba(77, 124, 15, .2)
}

.border-lime-700\/25 {
    border-color: rgba(77, 124, 15, .25)
}

.border-lime-700\/30 {
    border-color: rgba(77, 124, 15, .3)
}

.border-lime-700\/40 {
    border-color: rgba(77, 124, 15, .4)
}

.border-lime-700\/5 {
    border-color: rgba(77, 124, 15, .05)
}

.border-lime-700\/50 {
    border-color: rgba(77, 124, 15, .5)
}

.border-lime-700\/60 {
    border-color: rgba(77, 124, 15, .6)
}

.border-lime-700\/70 {
    border-color: rgba(77, 124, 15, .7)
}

.border-lime-700\/75 {
    border-color: rgba(77, 124, 15, .75)
}

.border-lime-700\/80 {
    border-color: rgba(77, 124, 15, .8)
}

.border-lime-700\/90 {
    border-color: rgba(77, 124, 15, .9)
}

.border-lime-700\/95 {
    border-color: rgba(77, 124, 15, .95)
}

.border-lime-800 {
    --tw-border-opacity: 1;
    border-color: rgb(63 98 18/var(--tw-border-opacity))
}

.border-lime-800\/0 {
    border-color: rgba(63, 98, 18, 0)
}

.border-lime-800\/10 {
    border-color: rgba(63, 98, 18, .1)
}

.border-lime-800\/100 {
    border-color: #3f6212
}

.border-lime-800\/20 {
    border-color: rgba(63, 98, 18, .2)
}

.border-lime-800\/25 {
    border-color: rgba(63, 98, 18, .25)
}

.border-lime-800\/30 {
    border-color: rgba(63, 98, 18, .3)
}

.border-lime-800\/40 {
    border-color: rgba(63, 98, 18, .4)
}

.border-lime-800\/5 {
    border-color: rgba(63, 98, 18, .05)
}

.border-lime-800\/50 {
    border-color: rgba(63, 98, 18, .5)
}

.border-lime-800\/60 {
    border-color: rgba(63, 98, 18, .6)
}

.border-lime-800\/70 {
    border-color: rgba(63, 98, 18, .7)
}

.border-lime-800\/75 {
    border-color: rgba(63, 98, 18, .75)
}

.border-lime-800\/80 {
    border-color: rgba(63, 98, 18, .8)
}

.border-lime-800\/90 {
    border-color: rgba(63, 98, 18, .9)
}

.border-lime-800\/95 {
    border-color: rgba(63, 98, 18, .95)
}

.border-orange-100 {
    --tw-border-opacity: 1;
    border-color: rgb(255 237 213/var(--tw-border-opacity))
}

.border-orange-100\/0 {
    border-color: rgba(255, 237, 213, 0)
}

.border-orange-100\/10 {
    border-color: rgba(255, 237, 213, .1)
}

.border-orange-100\/100 {
    border-color: #ffedd5
}

.border-orange-100\/20 {
    border-color: rgba(255, 237, 213, .2)
}

.border-orange-100\/25 {
    border-color: rgba(255, 237, 213, .25)
}

.border-orange-100\/30 {
    border-color: rgba(255, 237, 213, .3)
}

.border-orange-100\/40 {
    border-color: rgba(255, 237, 213, .4)
}

.border-orange-100\/5 {
    border-color: rgba(255, 237, 213, .05)
}

.border-orange-100\/50 {
    border-color: rgba(255, 237, 213, .5)
}

.border-orange-100\/60 {
    border-color: rgba(255, 237, 213, .6)
}

.border-orange-100\/70 {
    border-color: rgba(255, 237, 213, .7)
}

.border-orange-100\/75 {
    border-color: rgba(255, 237, 213, .75)
}

.border-orange-100\/80 {
    border-color: rgba(255, 237, 213, .8)
}

.border-orange-100\/90 {
    border-color: rgba(255, 237, 213, .9)
}

.border-orange-100\/95 {
    border-color: rgba(255, 237, 213, .95)
}

.border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170/var(--tw-border-opacity))
}

.border-orange-200\/0 {
    border-color: hsla(32, 98%, 83%, 0)
}

.border-orange-200\/10 {
    border-color: hsla(32, 98%, 83%, .1)
}

.border-orange-200\/100 {
    border-color: #fed7aa
}

.border-orange-200\/20 {
    border-color: hsla(32, 98%, 83%, .2)
}

.border-orange-200\/25 {
    border-color: hsla(32, 98%, 83%, .25)
}

.border-orange-200\/30 {
    border-color: hsla(32, 98%, 83%, .3)
}

.border-orange-200\/40 {
    border-color: hsla(32, 98%, 83%, .4)
}

.border-orange-200\/5 {
    border-color: hsla(32, 98%, 83%, .05)
}

.border-orange-200\/50 {
    border-color: hsla(32, 98%, 83%, .5)
}

.border-orange-200\/60 {
    border-color: hsla(32, 98%, 83%, .6)
}

.border-orange-200\/70 {
    border-color: hsla(32, 98%, 83%, .7)
}

.border-orange-200\/75 {
    border-color: hsla(32, 98%, 83%, .75)
}

.border-orange-200\/80 {
    border-color: hsla(32, 98%, 83%, .8)
}

.border-orange-200\/90 {
    border-color: hsla(32, 98%, 83%, .9)
}

.border-orange-200\/95 {
    border-color: hsla(32, 98%, 83%, .95)
}

.border-orange-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116/var(--tw-border-opacity))
}

.border-orange-300\/0 {
    border-color: hsla(31, 97%, 72%, 0)
}

.border-orange-300\/10 {
    border-color: hsla(31, 97%, 72%, .1)
}

.border-orange-300\/100 {
    border-color: #fdba74
}

.border-orange-300\/20 {
    border-color: hsla(31, 97%, 72%, .2)
}

.border-orange-300\/25 {
    border-color: hsla(31, 97%, 72%, .25)
}

.border-orange-300\/30 {
    border-color: hsla(31, 97%, 72%, .3)
}

.border-orange-300\/40 {
    border-color: hsla(31, 97%, 72%, .4)
}

.border-orange-300\/5 {
    border-color: hsla(31, 97%, 72%, .05)
}

.border-orange-300\/50 {
    border-color: hsla(31, 97%, 72%, .5)
}

.border-orange-300\/60 {
    border-color: hsla(31, 97%, 72%, .6)
}

.border-orange-300\/70 {
    border-color: hsla(31, 97%, 72%, .7)
}

.border-orange-300\/75 {
    border-color: hsla(31, 97%, 72%, .75)
}

.border-orange-300\/80 {
    border-color: hsla(31, 97%, 72%, .8)
}

.border-orange-300\/90 {
    border-color: hsla(31, 97%, 72%, .9)
}

.border-orange-300\/95 {
    border-color: hsla(31, 97%, 72%, .95)
}

.border-orange-400 {
    --tw-border-opacity: 1;
    border-color: rgb(251 146 60/var(--tw-border-opacity))
}

.border-orange-400\/0 {
    border-color: rgba(251, 146, 60, 0)
}

.border-orange-400\/10 {
    border-color: rgba(251, 146, 60, .1)
}

.border-orange-400\/100 {
    border-color: #fb923c
}

.border-orange-400\/20 {
    border-color: rgba(251, 146, 60, .2)
}

.border-orange-400\/25 {
    border-color: rgba(251, 146, 60, .25)
}

.border-orange-400\/30 {
    border-color: rgba(251, 146, 60, .3)
}

.border-orange-400\/40 {
    border-color: rgba(251, 146, 60, .4)
}

.border-orange-400\/5 {
    border-color: rgba(251, 146, 60, .05)
}

.border-orange-400\/50 {
    border-color: rgba(251, 146, 60, .5)
}

.border-orange-400\/60 {
    border-color: rgba(251, 146, 60, .6)
}

.border-orange-400\/70 {
    border-color: rgba(251, 146, 60, .7)
}

.border-orange-400\/75 {
    border-color: rgba(251, 146, 60, .75)
}

.border-orange-400\/80 {
    border-color: rgba(251, 146, 60, .8)
}

.border-orange-400\/90 {
    border-color: rgba(251, 146, 60, .9)
}

.border-orange-400\/95 {
    border-color: rgba(251, 146, 60, .95)
}

.border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22/var(--tw-border-opacity))
}

.border-orange-500\/0 {
    border-color: rgba(249, 115, 22, 0)
}

.border-orange-500\/10 {
    border-color: rgba(249, 115, 22, .1)
}

.border-orange-500\/100 {
    border-color: #f97316
}

.border-orange-500\/20 {
    border-color: rgba(249, 115, 22, .2)
}

.border-orange-500\/25 {
    border-color: rgba(249, 115, 22, .25)
}

.border-orange-500\/30 {
    border-color: rgba(249, 115, 22, .3)
}

.border-orange-500\/40 {
    border-color: rgba(249, 115, 22, .4)
}

.border-orange-500\/5 {
    border-color: rgba(249, 115, 22, .05)
}

.border-orange-500\/50 {
    border-color: rgba(249, 115, 22, .5)
}

.border-orange-500\/60 {
    border-color: rgba(249, 115, 22, .6)
}

.border-orange-500\/70 {
    border-color: rgba(249, 115, 22, .7)
}

.border-orange-500\/75 {
    border-color: rgba(249, 115, 22, .75)
}

.border-orange-500\/80 {
    border-color: rgba(249, 115, 22, .8)
}

.border-orange-500\/90 {
    border-color: rgba(249, 115, 22, .9)
}

.border-orange-500\/95 {
    border-color: rgba(249, 115, 22, .95)
}

.border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12/var(--tw-border-opacity))
}

.border-orange-600\/0 {
    border-color: rgba(234, 88, 12, 0)
}

.border-orange-600\/10 {
    border-color: rgba(234, 88, 12, .1)
}

.border-orange-600\/100 {
    border-color: #ea580c
}

.border-orange-600\/20 {
    border-color: rgba(234, 88, 12, .2)
}

.border-orange-600\/25 {
    border-color: rgba(234, 88, 12, .25)
}

.border-orange-600\/30 {
    border-color: rgba(234, 88, 12, .3)
}

.border-orange-600\/40 {
    border-color: rgba(234, 88, 12, .4)
}

.border-orange-600\/5 {
    border-color: rgba(234, 88, 12, .05)
}

.border-orange-600\/50 {
    border-color: rgba(234, 88, 12, .5)
}

.border-orange-600\/60 {
    border-color: rgba(234, 88, 12, .6)
}

.border-orange-600\/70 {
    border-color: rgba(234, 88, 12, .7)
}

.border-orange-600\/75 {
    border-color: rgba(234, 88, 12, .75)
}

.border-orange-600\/80 {
    border-color: rgba(234, 88, 12, .8)
}

.border-orange-600\/90 {
    border-color: rgba(234, 88, 12, .9)
}

.border-orange-600\/95 {
    border-color: rgba(234, 88, 12, .95)
}

.border-orange-700 {
    --tw-border-opacity: 1;
    border-color: rgb(194 65 12/var(--tw-border-opacity))
}

.border-orange-700\/0 {
    border-color: rgba(194, 65, 12, 0)
}

.border-orange-700\/10 {
    border-color: rgba(194, 65, 12, .1)
}

.border-orange-700\/100 {
    border-color: #c2410c
}

.border-orange-700\/20 {
    border-color: rgba(194, 65, 12, .2)
}

.border-orange-700\/25 {
    border-color: rgba(194, 65, 12, .25)
}

.border-orange-700\/30 {
    border-color: rgba(194, 65, 12, .3)
}

.border-orange-700\/40 {
    border-color: rgba(194, 65, 12, .4)
}

.border-orange-700\/5 {
    border-color: rgba(194, 65, 12, .05)
}

.border-orange-700\/50 {
    border-color: rgba(194, 65, 12, .5)
}

.border-orange-700\/60 {
    border-color: rgba(194, 65, 12, .6)
}

.border-orange-700\/70 {
    border-color: rgba(194, 65, 12, .7)
}

.border-orange-700\/75 {
    border-color: rgba(194, 65, 12, .75)
}

.border-orange-700\/80 {
    border-color: rgba(194, 65, 12, .8)
}

.border-orange-700\/90 {
    border-color: rgba(194, 65, 12, .9)
}

.border-orange-700\/95 {
    border-color: rgba(194, 65, 12, .95)
}

.border-orange-800 {
    --tw-border-opacity: 1;
    border-color: rgb(154 52 18/var(--tw-border-opacity))
}

.border-orange-800\/0 {
    border-color: rgba(154, 52, 18, 0)
}

.border-orange-800\/10 {
    border-color: rgba(154, 52, 18, .1)
}

.border-orange-800\/100 {
    border-color: #9a3412
}

.border-orange-800\/20 {
    border-color: rgba(154, 52, 18, .2)
}

.border-orange-800\/25 {
    border-color: rgba(154, 52, 18, .25)
}

.border-orange-800\/30 {
    border-color: rgba(154, 52, 18, .3)
}

.border-orange-800\/40 {
    border-color: rgba(154, 52, 18, .4)
}

.border-orange-800\/5 {
    border-color: rgba(154, 52, 18, .05)
}

.border-orange-800\/50 {
    border-color: rgba(154, 52, 18, .5)
}

.border-orange-800\/60 {
    border-color: rgba(154, 52, 18, .6)
}

.border-orange-800\/70 {
    border-color: rgba(154, 52, 18, .7)
}

.border-orange-800\/75 {
    border-color: rgba(154, 52, 18, .75)
}

.border-orange-800\/80 {
    border-color: rgba(154, 52, 18, .8)
}

.border-orange-800\/90 {
    border-color: rgba(154, 52, 18, .9)
}

.border-orange-800\/95 {
    border-color: rgba(154, 52, 18, .95)
}

.border-purple-700 {
    --tw-border-opacity: 1;
    border-color: rgb(126 34 206/var(--tw-border-opacity))
}

.border-red-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226/var(--tw-border-opacity))
}

.border-red-100\/0 {
    border-color: hsla(0, 93%, 94%, 0)
}

.border-red-100\/10 {
    border-color: hsla(0, 93%, 94%, .1)
}

.border-red-100\/100 {
    border-color: #fee2e2
}

.border-red-100\/20 {
    border-color: hsla(0, 93%, 94%, .2)
}

.border-red-100\/25 {
    border-color: hsla(0, 93%, 94%, .25)
}

.border-red-100\/30 {
    border-color: hsla(0, 93%, 94%, .3)
}

.border-red-100\/40 {
    border-color: hsla(0, 93%, 94%, .4)
}

.border-red-100\/5 {
    border-color: hsla(0, 93%, 94%, .05)
}

.border-red-100\/50 {
    border-color: hsla(0, 93%, 94%, .5)
}

.border-red-100\/60 {
    border-color: hsla(0, 93%, 94%, .6)
}

.border-red-100\/70 {
    border-color: hsla(0, 93%, 94%, .7)
}

.border-red-100\/75 {
    border-color: hsla(0, 93%, 94%, .75)
}

.border-red-100\/80 {
    border-color: hsla(0, 93%, 94%, .8)
}

.border-red-100\/90 {
    border-color: hsla(0, 93%, 94%, .9)
}

.border-red-100\/95 {
    border-color: hsla(0, 93%, 94%, .95)
}

.border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202/var(--tw-border-opacity))
}

.border-red-200\/0 {
    border-color: hsla(0, 96%, 89%, 0)
}

.border-red-200\/10 {
    border-color: hsla(0, 96%, 89%, .1)
}

.border-red-200\/100 {
    border-color: #fecaca
}

.border-red-200\/20 {
    border-color: hsla(0, 96%, 89%, .2)
}

.border-red-200\/25 {
    border-color: hsla(0, 96%, 89%, .25)
}

.border-red-200\/30 {
    border-color: hsla(0, 96%, 89%, .3)
}

.border-red-200\/40 {
    border-color: hsla(0, 96%, 89%, .4)
}

.border-red-200\/5 {
    border-color: hsla(0, 96%, 89%, .05)
}

.border-red-200\/50 {
    border-color: hsla(0, 96%, 89%, .5)
}

.border-red-200\/60 {
    border-color: hsla(0, 96%, 89%, .6)
}

.border-red-200\/70 {
    border-color: hsla(0, 96%, 89%, .7)
}

.border-red-200\/75 {
    border-color: hsla(0, 96%, 89%, .75)
}

.border-red-200\/80 {
    border-color: hsla(0, 96%, 89%, .8)
}

.border-red-200\/90 {
    border-color: hsla(0, 96%, 89%, .9)
}

.border-red-200\/95 {
    border-color: hsla(0, 96%, 89%, .95)
}

.border-red-300 {
    --tw-border-opacity: 1;
    border-color: rgb(252 165 165/var(--tw-border-opacity))
}

.border-red-300\/0 {
    border-color: hsla(0, 94%, 82%, 0)
}

.border-red-300\/10 {
    border-color: hsla(0, 94%, 82%, .1)
}

.border-red-300\/100 {
    border-color: #fca5a5
}

.border-red-300\/20 {
    border-color: hsla(0, 94%, 82%, .2)
}

.border-red-300\/25 {
    border-color: hsla(0, 94%, 82%, .25)
}

.border-red-300\/30 {
    border-color: hsla(0, 94%, 82%, .3)
}

.border-red-300\/40 {
    border-color: hsla(0, 94%, 82%, .4)
}

.border-red-300\/5 {
    border-color: hsla(0, 94%, 82%, .05)
}

.border-red-300\/50 {
    border-color: hsla(0, 94%, 82%, .5)
}

.border-red-300\/60 {
    border-color: hsla(0, 94%, 82%, .6)
}

.border-red-300\/70 {
    border-color: hsla(0, 94%, 82%, .7)
}

.border-red-300\/75 {
    border-color: hsla(0, 94%, 82%, .75)
}

.border-red-300\/80 {
    border-color: hsla(0, 94%, 82%, .8)
}

.border-red-300\/90 {
    border-color: hsla(0, 94%, 82%, .9)
}

.border-red-300\/95 {
    border-color: hsla(0, 94%, 82%, .95)
}

.border-red-400 {
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113/var(--tw-border-opacity))
}

.border-red-400\/0 {
    border-color: hsla(0, 91%, 71%, 0)
}

.border-red-400\/10 {
    border-color: hsla(0, 91%, 71%, .1)
}

.border-red-400\/100 {
    border-color: #f87171
}

.border-red-400\/20 {
    border-color: hsla(0, 91%, 71%, .2)
}

.border-red-400\/25 {
    border-color: hsla(0, 91%, 71%, .25)
}

.border-red-400\/30 {
    border-color: hsla(0, 91%, 71%, .3)
}

.border-red-400\/40 {
    border-color: hsla(0, 91%, 71%, .4)
}

.border-red-400\/5 {
    border-color: hsla(0, 91%, 71%, .05)
}

.border-red-400\/50 {
    border-color: hsla(0, 91%, 71%, .5)
}

.border-red-400\/60 {
    border-color: hsla(0, 91%, 71%, .6)
}

.border-red-400\/70 {
    border-color: hsla(0, 91%, 71%, .7)
}

.border-red-400\/75 {
    border-color: hsla(0, 91%, 71%, .75)
}

.border-red-400\/80 {
    border-color: hsla(0, 91%, 71%, .8)
}

.border-red-400\/90 {
    border-color: hsla(0, 91%, 71%, .9)
}

.border-red-400\/95 {
    border-color: hsla(0, 91%, 71%, .95)
}

.border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68/var(--tw-border-opacity))
}

.border-red-500\/0 {
    border-color: rgba(239, 68, 68, 0)
}

.border-red-500\/10 {
    border-color: rgba(239, 68, 68, .1)
}

.border-red-500\/100 {
    border-color: #ef4444
}

.border-red-500\/20 {
    border-color: rgba(239, 68, 68, .2)
}

.border-red-500\/25 {
    border-color: rgba(239, 68, 68, .25)
}

.border-red-500\/30 {
    border-color: rgba(239, 68, 68, .3)
}

.border-red-500\/40 {
    border-color: rgba(239, 68, 68, .4)
}

.border-red-500\/5 {
    border-color: rgba(239, 68, 68, .05)
}

.border-red-500\/50 {
    border-color: rgba(239, 68, 68, .5)
}

.border-red-500\/60 {
    border-color: rgba(239, 68, 68, .6)
}

.border-red-500\/70 {
    border-color: rgba(239, 68, 68, .7)
}

.border-red-500\/75 {
    border-color: rgba(239, 68, 68, .75)
}

.border-red-500\/80 {
    border-color: rgba(239, 68, 68, .8)
}

.border-red-500\/90 {
    border-color: rgba(239, 68, 68, .9)
}

.border-red-500\/95 {
    border-color: rgba(239, 68, 68, .95)
}

.border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38/var(--tw-border-opacity))
}

.border-red-600\/0 {
    border-color: rgba(220, 38, 38, 0)
}

.border-red-600\/10 {
    border-color: rgba(220, 38, 38, .1)
}

.border-red-600\/100 {
    border-color: #dc2626
}

.border-red-600\/20 {
    border-color: rgba(220, 38, 38, .2)
}

.border-red-600\/25 {
    border-color: rgba(220, 38, 38, .25)
}

.border-red-600\/30 {
    border-color: rgba(220, 38, 38, .3)
}

.border-red-600\/40 {
    border-color: rgba(220, 38, 38, .4)
}

.border-red-600\/5 {
    border-color: rgba(220, 38, 38, .05)
}

.border-red-600\/50 {
    border-color: rgba(220, 38, 38, .5)
}

.border-red-600\/60 {
    border-color: rgba(220, 38, 38, .6)
}

.border-red-600\/70 {
    border-color: rgba(220, 38, 38, .7)
}

.border-red-600\/75 {
    border-color: rgba(220, 38, 38, .75)
}

.border-red-600\/80 {
    border-color: rgba(220, 38, 38, .8)
}

.border-red-600\/90 {
    border-color: rgba(220, 38, 38, .9)
}

.border-red-600\/95 {
    border-color: rgba(220, 38, 38, .95)
}

.border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28/var(--tw-border-opacity))
}

.border-red-700\/0 {
    border-color: rgba(185, 28, 28, 0)
}

.border-red-700\/10 {
    border-color: rgba(185, 28, 28, .1)
}

.border-red-700\/100 {
    border-color: #b91c1c
}

.border-red-700\/20 {
    border-color: rgba(185, 28, 28, .2)
}

.border-red-700\/25 {
    border-color: rgba(185, 28, 28, .25)
}

.border-red-700\/30 {
    border-color: rgba(185, 28, 28, .3)
}

.border-red-700\/40 {
    border-color: rgba(185, 28, 28, .4)
}

.border-red-700\/5 {
    border-color: rgba(185, 28, 28, .05)
}

.border-red-700\/50 {
    border-color: rgba(185, 28, 28, .5)
}

.border-red-700\/60 {
    border-color: rgba(185, 28, 28, .6)
}

.border-red-700\/70 {
    border-color: rgba(185, 28, 28, .7)
}

.border-red-700\/75 {
    border-color: rgba(185, 28, 28, .75)
}

.border-red-700\/80 {
    border-color: rgba(185, 28, 28, .8)
}

.border-red-700\/90 {
    border-color: rgba(185, 28, 28, .9)
}

.border-red-700\/95 {
    border-color: rgba(185, 28, 28, .95)
}

.border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27/var(--tw-border-opacity))
}

.border-red-800\/0 {
    border-color: rgba(153, 27, 27, 0)
}

.border-red-800\/10 {
    border-color: rgba(153, 27, 27, .1)
}

.border-red-800\/100 {
    border-color: #991b1b
}

.border-red-800\/20 {
    border-color: rgba(153, 27, 27, .2)
}

.border-red-800\/25 {
    border-color: rgba(153, 27, 27, .25)
}

.border-red-800\/30 {
    border-color: rgba(153, 27, 27, .3)
}

.border-red-800\/40 {
    border-color: rgba(153, 27, 27, .4)
}

.border-red-800\/5 {
    border-color: rgba(153, 27, 27, .05)
}

.border-red-800\/50 {
    border-color: rgba(153, 27, 27, .5)
}

.border-red-800\/60 {
    border-color: rgba(153, 27, 27, .6)
}

.border-red-800\/70 {
    border-color: rgba(153, 27, 27, .7)
}

.border-red-800\/75 {
    border-color: rgba(153, 27, 27, .75)
}

.border-red-800\/80 {
    border-color: rgba(153, 27, 27, .8)
}

.border-red-800\/90 {
    border-color: rgba(153, 27, 27, .9)
}

.border-red-800\/95 {
    border-color: rgba(153, 27, 27, .95)
}

.border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249/var(--tw-border-opacity))
}

.border-slate-100\/0 {
    border-color: rgba(241, 245, 249, 0)
}

.border-slate-100\/10 {
    border-color: rgba(241, 245, 249, .1)
}

.border-slate-100\/100 {
    border-color: #f1f5f9
}

.border-slate-100\/20 {
    border-color: rgba(241, 245, 249, .2)
}

.border-slate-100\/25 {
    border-color: rgba(241, 245, 249, .25)
}

.border-slate-100\/30 {
    border-color: rgba(241, 245, 249, .3)
}

.border-slate-100\/40 {
    border-color: rgba(241, 245, 249, .4)
}

.border-slate-100\/5 {
    border-color: rgba(241, 245, 249, .05)
}

.border-slate-100\/50 {
    border-color: rgba(241, 245, 249, .5)
}

.border-slate-100\/60 {
    border-color: rgba(241, 245, 249, .6)
}

.border-slate-100\/70 {
    border-color: rgba(241, 245, 249, .7)
}

.border-slate-100\/75 {
    border-color: rgba(241, 245, 249, .75)
}

.border-slate-100\/80 {
    border-color: rgba(241, 245, 249, .8)
}

.border-slate-100\/90 {
    border-color: rgba(241, 245, 249, .9)
}

.border-slate-100\/95 {
    border-color: rgba(241, 245, 249, .95)
}

.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240/var(--tw-border-opacity))
}

.border-slate-200\/0 {
    border-color: rgba(226, 232, 240, 0)
}

.border-slate-200\/10 {
    border-color: rgba(226, 232, 240, .1)
}

.border-slate-200\/100 {
    border-color: #e2e8f0
}

.border-slate-200\/20 {
    border-color: rgba(226, 232, 240, .2)
}

.border-slate-200\/25 {
    border-color: rgba(226, 232, 240, .25)
}

.border-slate-200\/30 {
    border-color: rgba(226, 232, 240, .3)
}

.border-slate-200\/40 {
    border-color: rgba(226, 232, 240, .4)
}

.border-slate-200\/5 {
    border-color: rgba(226, 232, 240, .05)
}

.border-slate-200\/50 {
    border-color: rgba(226, 232, 240, .5)
}

.border-slate-200\/60 {
    border-color: rgba(226, 232, 240, .6)
}

.border-slate-200\/70 {
    border-color: rgba(226, 232, 240, .7)
}

.border-slate-200\/75 {
    border-color: rgba(226, 232, 240, .75)
}

.border-slate-200\/80 {
    border-color: rgba(226, 232, 240, .8)
}

.border-slate-200\/90 {
    border-color: rgba(226, 232, 240, .9)
}

.border-slate-200\/95 {
    border-color: rgba(226, 232, 240, .95)
}

.border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225/var(--tw-border-opacity))
}

.border-slate-300\/0 {
    border-color: rgba(203, 213, 225, 0)
}

.border-slate-300\/10 {
    border-color: rgba(203, 213, 225, .1)
}

.border-slate-300\/100 {
    border-color: #cbd5e1
}

.border-slate-300\/20 {
    border-color: rgba(203, 213, 225, .2)
}

.border-slate-300\/25 {
    border-color: rgba(203, 213, 225, .25)
}

.border-slate-300\/30 {
    border-color: rgba(203, 213, 225, .3)
}

.border-slate-300\/40 {
    border-color: rgba(203, 213, 225, .4)
}

.border-slate-300\/5 {
    border-color: rgba(203, 213, 225, .05)
}

.border-slate-300\/50 {
    border-color: rgba(203, 213, 225, .5)
}

.border-slate-300\/60 {
    border-color: rgba(203, 213, 225, .6)
}

.border-slate-300\/70 {
    border-color: rgba(203, 213, 225, .7)
}

.border-slate-300\/75 {
    border-color: rgba(203, 213, 225, .75)
}

.border-slate-300\/80 {
    border-color: rgba(203, 213, 225, .8)
}

.border-slate-300\/90 {
    border-color: rgba(203, 213, 225, .9)
}

.border-slate-300\/95 {
    border-color: rgba(203, 213, 225, .95)
}

.border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184/var(--tw-border-opacity))
}

.border-slate-400\/0 {
    border-color: rgba(148, 163, 184, 0)
}

.border-slate-400\/10 {
    border-color: rgba(148, 163, 184, .1)
}

.border-slate-400\/100 {
    border-color: #94a3b8
}

.border-slate-400\/20 {
    border-color: rgba(148, 163, 184, .2)
}

.border-slate-400\/25 {
    border-color: rgba(148, 163, 184, .25)
}

.border-slate-400\/30 {
    border-color: rgba(148, 163, 184, .3)
}

.border-slate-400\/40 {
    border-color: rgba(148, 163, 184, .4)
}

.border-slate-400\/5 {
    border-color: rgba(148, 163, 184, .05)
}

.border-slate-400\/50 {
    border-color: rgba(148, 163, 184, .5)
}

.border-slate-400\/60 {
    border-color: rgba(148, 163, 184, .6)
}

.border-slate-400\/70 {
    border-color: rgba(148, 163, 184, .7)
}

.border-slate-400\/75 {
    border-color: rgba(148, 163, 184, .75)
}

.border-slate-400\/80 {
    border-color: rgba(148, 163, 184, .8)
}

.border-slate-400\/90 {
    border-color: rgba(148, 163, 184, .9)
}

.border-slate-400\/95 {
    border-color: rgba(148, 163, 184, .95)
}

.border-slate-500 {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139/var(--tw-border-opacity))
}

.border-slate-500\/0 {
    border-color: rgba(100, 116, 139, 0)
}

.border-slate-500\/10 {
    border-color: rgba(100, 116, 139, .1)
}

.border-slate-500\/100 {
    border-color: #64748b
}

.border-slate-500\/20 {
    border-color: rgba(100, 116, 139, .2)
}

.border-slate-500\/25 {
    border-color: rgba(100, 116, 139, .25)
}

.border-slate-500\/30 {
    border-color: rgba(100, 116, 139, .3)
}

.border-slate-500\/40 {
    border-color: rgba(100, 116, 139, .4)
}

.border-slate-500\/5 {
    border-color: rgba(100, 116, 139, .05)
}

.border-slate-500\/50 {
    border-color: rgba(100, 116, 139, .5)
}

.border-slate-500\/60 {
    border-color: rgba(100, 116, 139, .6)
}

.border-slate-500\/70 {
    border-color: rgba(100, 116, 139, .7)
}

.border-slate-500\/75 {
    border-color: rgba(100, 116, 139, .75)
}

.border-slate-500\/80 {
    border-color: rgba(100, 116, 139, .8)
}

.border-slate-500\/90 {
    border-color: rgba(100, 116, 139, .9)
}

.border-slate-500\/95 {
    border-color: rgba(100, 116, 139, .95)
}

.border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105/var(--tw-border-opacity))
}

.border-slate-600\/0 {
    border-color: rgba(71, 85, 105, 0)
}

.border-slate-600\/10 {
    border-color: rgba(71, 85, 105, .1)
}

.border-slate-600\/100 {
    border-color: #475569
}

.border-slate-600\/20 {
    border-color: rgba(71, 85, 105, .2)
}

.border-slate-600\/25 {
    border-color: rgba(71, 85, 105, .25)
}

.border-slate-600\/30 {
    border-color: rgba(71, 85, 105, .3)
}

.border-slate-600\/40 {
    border-color: rgba(71, 85, 105, .4)
}

.border-slate-600\/5 {
    border-color: rgba(71, 85, 105, .05)
}

.border-slate-600\/50 {
    border-color: rgba(71, 85, 105, .5)
}

.border-slate-600\/60 {
    border-color: rgba(71, 85, 105, .6)
}

.border-slate-600\/70 {
    border-color: rgba(71, 85, 105, .7)
}

.border-slate-600\/75 {
    border-color: rgba(71, 85, 105, .75)
}

.border-slate-600\/80 {
    border-color: rgba(71, 85, 105, .8)
}

.border-slate-600\/90 {
    border-color: rgba(71, 85, 105, .9)
}

.border-slate-600\/95 {
    border-color: rgba(71, 85, 105, .95)
}

.border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85/var(--tw-border-opacity))
}

.border-slate-700\/0 {
    border-color: rgba(51, 65, 85, 0)
}

.border-slate-700\/10 {
    border-color: rgba(51, 65, 85, .1)
}

.border-slate-700\/100 {
    border-color: #334155
}

.border-slate-700\/20 {
    border-color: rgba(51, 65, 85, .2)
}

.border-slate-700\/25 {
    border-color: rgba(51, 65, 85, .25)
}

.border-slate-700\/30 {
    border-color: rgba(51, 65, 85, .3)
}

.border-slate-700\/40 {
    border-color: rgba(51, 65, 85, .4)
}

.border-slate-700\/5 {
    border-color: rgba(51, 65, 85, .05)
}

.border-slate-700\/50 {
    border-color: rgba(51, 65, 85, .5)
}

.border-slate-700\/60 {
    border-color: rgba(51, 65, 85, .6)
}

.border-slate-700\/70 {
    border-color: rgba(51, 65, 85, .7)
}

.border-slate-700\/75 {
    border-color: rgba(51, 65, 85, .75)
}

.border-slate-700\/80 {
    border-color: rgba(51, 65, 85, .8)
}

.border-slate-700\/90 {
    border-color: rgba(51, 65, 85, .9)
}

.border-slate-700\/95 {
    border-color: rgba(51, 65, 85, .95)
}

.border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59/var(--tw-border-opacity))
}

.border-slate-800\/0 {
    border-color: rgba(30, 41, 59, 0)
}

.border-slate-800\/10 {
    border-color: rgba(30, 41, 59, .1)
}

.border-slate-800\/100 {
    border-color: #1e293b
}

.border-slate-800\/20 {
    border-color: rgba(30, 41, 59, .2)
}

.border-slate-800\/25 {
    border-color: rgba(30, 41, 59, .25)
}

.border-slate-800\/30 {
    border-color: rgba(30, 41, 59, .3)
}

.border-slate-800\/40 {
    border-color: rgba(30, 41, 59, .4)
}

.border-slate-800\/5 {
    border-color: rgba(30, 41, 59, .05)
}

.border-slate-800\/50 {
    border-color: rgba(30, 41, 59, .5)
}

.border-slate-800\/60 {
    border-color: rgba(30, 41, 59, .6)
}

.border-slate-800\/70 {
    border-color: rgba(30, 41, 59, .7)
}

.border-slate-800\/75 {
    border-color: rgba(30, 41, 59, .75)
}

.border-slate-800\/80 {
    border-color: rgba(30, 41, 59, .8)
}

.border-slate-800\/90 {
    border-color: rgba(30, 41, 59, .9)
}

.border-slate-800\/95 {
    border-color: rgba(30, 41, 59, .95)
}

.border-transparent {
    border-color: transparent
}

.border-violet-100 {
    --tw-border-opacity: 1;
    border-color: rgb(237 233 254/var(--tw-border-opacity))
}

.border-violet-100\/0 {
    border-color: rgba(237, 233, 254, 0)
}

.border-violet-100\/10 {
    border-color: rgba(237, 233, 254, .1)
}

.border-violet-100\/100 {
    border-color: #ede9fe
}

.border-violet-100\/20 {
    border-color: rgba(237, 233, 254, .2)
}

.border-violet-100\/25 {
    border-color: rgba(237, 233, 254, .25)
}

.border-violet-100\/30 {
    border-color: rgba(237, 233, 254, .3)
}

.border-violet-100\/40 {
    border-color: rgba(237, 233, 254, .4)
}

.border-violet-100\/5 {
    border-color: rgba(237, 233, 254, .05)
}

.border-violet-100\/50 {
    border-color: rgba(237, 233, 254, .5)
}

.border-violet-100\/60 {
    border-color: rgba(237, 233, 254, .6)
}

.border-violet-100\/70 {
    border-color: rgba(237, 233, 254, .7)
}

.border-violet-100\/75 {
    border-color: rgba(237, 233, 254, .75)
}

.border-violet-100\/80 {
    border-color: rgba(237, 233, 254, .8)
}

.border-violet-100\/90 {
    border-color: rgba(237, 233, 254, .9)
}

.border-violet-100\/95 {
    border-color: rgba(237, 233, 254, .95)
}

.border-violet-200 {
    --tw-border-opacity: 1;
    border-color: rgb(221 214 254/var(--tw-border-opacity))
}

.border-violet-200\/0 {
    border-color: rgba(221, 214, 254, 0)
}

.border-violet-200\/10 {
    border-color: rgba(221, 214, 254, .1)
}

.border-violet-200\/100 {
    border-color: #ddd6fe
}

.border-violet-200\/20 {
    border-color: rgba(221, 214, 254, .2)
}

.border-violet-200\/25 {
    border-color: rgba(221, 214, 254, .25)
}

.border-violet-200\/30 {
    border-color: rgba(221, 214, 254, .3)
}

.border-violet-200\/40 {
    border-color: rgba(221, 214, 254, .4)
}

.border-violet-200\/5 {
    border-color: rgba(221, 214, 254, .05)
}

.border-violet-200\/50 {
    border-color: rgba(221, 214, 254, .5)
}

.border-violet-200\/60 {
    border-color: rgba(221, 214, 254, .6)
}

.border-violet-200\/70 {
    border-color: rgba(221, 214, 254, .7)
}

.border-violet-200\/75 {
    border-color: rgba(221, 214, 254, .75)
}

.border-violet-200\/80 {
    border-color: rgba(221, 214, 254, .8)
}

.border-violet-200\/90 {
    border-color: rgba(221, 214, 254, .9)
}

.border-violet-200\/95 {
    border-color: rgba(221, 214, 254, .95)
}

.border-violet-300 {
    --tw-border-opacity: 1;
    border-color: rgb(196 181 253/var(--tw-border-opacity))
}

.border-violet-300\/0 {
    border-color: rgba(196, 181, 253, 0)
}

.border-violet-300\/10 {
    border-color: rgba(196, 181, 253, .1)
}

.border-violet-300\/100 {
    border-color: #c4b5fd
}

.border-violet-300\/20 {
    border-color: rgba(196, 181, 253, .2)
}

.border-violet-300\/25 {
    border-color: rgba(196, 181, 253, .25)
}

.border-violet-300\/30 {
    border-color: rgba(196, 181, 253, .3)
}

.border-violet-300\/40 {
    border-color: rgba(196, 181, 253, .4)
}

.border-violet-300\/5 {
    border-color: rgba(196, 181, 253, .05)
}

.border-violet-300\/50 {
    border-color: rgba(196, 181, 253, .5)
}

.border-violet-300\/60 {
    border-color: rgba(196, 181, 253, .6)
}

.border-violet-300\/70 {
    border-color: rgba(196, 181, 253, .7)
}

.border-violet-300\/75 {
    border-color: rgba(196, 181, 253, .75)
}

.border-violet-300\/80 {
    border-color: rgba(196, 181, 253, .8)
}

.border-violet-300\/90 {
    border-color: rgba(196, 181, 253, .9)
}

.border-violet-300\/95 {
    border-color: rgba(196, 181, 253, .95)
}

.border-violet-400 {
    --tw-border-opacity: 1;
    border-color: rgb(167 139 250/var(--tw-border-opacity))
}

.border-violet-400\/0 {
    border-color: rgba(167, 139, 250, 0)
}

.border-violet-400\/10 {
    border-color: rgba(167, 139, 250, .1)
}

.border-violet-400\/100 {
    border-color: #a78bfa
}

.border-violet-400\/20 {
    border-color: rgba(167, 139, 250, .2)
}

.border-violet-400\/25 {
    border-color: rgba(167, 139, 250, .25)
}

.border-violet-400\/30 {
    border-color: rgba(167, 139, 250, .3)
}

.border-violet-400\/40 {
    border-color: rgba(167, 139, 250, .4)
}

.border-violet-400\/5 {
    border-color: rgba(167, 139, 250, .05)
}

.border-violet-400\/50 {
    border-color: rgba(167, 139, 250, .5)
}

.border-violet-400\/60 {
    border-color: rgba(167, 139, 250, .6)
}

.border-violet-400\/70 {
    border-color: rgba(167, 139, 250, .7)
}

.border-violet-400\/75 {
    border-color: rgba(167, 139, 250, .75)
}

.border-violet-400\/80 {
    border-color: rgba(167, 139, 250, .8)
}

.border-violet-400\/90 {
    border-color: rgba(167, 139, 250, .9)
}

.border-violet-400\/95 {
    border-color: rgba(167, 139, 250, .95)
}

.border-violet-500 {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246/var(--tw-border-opacity))
}

.border-violet-500\/0 {
    border-color: rgba(139, 92, 246, 0)
}

.border-violet-500\/10 {
    border-color: rgba(139, 92, 246, .1)
}

.border-violet-500\/100 {
    border-color: #8b5cf6
}

.border-violet-500\/20 {
    border-color: rgba(139, 92, 246, .2)
}

.border-violet-500\/25 {
    border-color: rgba(139, 92, 246, .25)
}

.border-violet-500\/30 {
    border-color: rgba(139, 92, 246, .3)
}

.border-violet-500\/40 {
    border-color: rgba(139, 92, 246, .4)
}

.border-violet-500\/5 {
    border-color: rgba(139, 92, 246, .05)
}

.border-violet-500\/50 {
    border-color: rgba(139, 92, 246, .5)
}

.border-violet-500\/60 {
    border-color: rgba(139, 92, 246, .6)
}

.border-violet-500\/70 {
    border-color: rgba(139, 92, 246, .7)
}

.border-violet-500\/75 {
    border-color: rgba(139, 92, 246, .75)
}

.border-violet-500\/80 {
    border-color: rgba(139, 92, 246, .8)
}

.border-violet-500\/90 {
    border-color: rgba(139, 92, 246, .9)
}

.border-violet-500\/95 {
    border-color: rgba(139, 92, 246, .95)
}

.border-violet-600 {
    --tw-border-opacity: 1;
    border-color: rgb(124 58 237/var(--tw-border-opacity))
}

.border-violet-600\/0 {
    border-color: rgba(124, 58, 237, 0)
}

.border-violet-600\/10 {
    border-color: rgba(124, 58, 237, .1)
}

.border-violet-600\/100 {
    border-color: #7c3aed
}

.border-violet-600\/20 {
    border-color: rgba(124, 58, 237, .2)
}

.border-violet-600\/25 {
    border-color: rgba(124, 58, 237, .25)
}

.border-violet-600\/30 {
    border-color: rgba(124, 58, 237, .3)
}

.border-violet-600\/40 {
    border-color: rgba(124, 58, 237, .4)
}

.border-violet-600\/5 {
    border-color: rgba(124, 58, 237, .05)
}

.border-violet-600\/50 {
    border-color: rgba(124, 58, 237, .5)
}

.border-violet-600\/60 {
    border-color: rgba(124, 58, 237, .6)
}

.border-violet-600\/70 {
    border-color: rgba(124, 58, 237, .7)
}

.border-violet-600\/75 {
    border-color: rgba(124, 58, 237, .75)
}

.border-violet-600\/80 {
    border-color: rgba(124, 58, 237, .8)
}

.border-violet-600\/90 {
    border-color: rgba(124, 58, 237, .9)
}

.border-violet-600\/95 {
    border-color: rgba(124, 58, 237, .95)
}

.border-violet-700 {
    --tw-border-opacity: 1;
    border-color: rgb(109 40 217/var(--tw-border-opacity))
}

.border-violet-700\/0 {
    border-color: rgba(109, 40, 217, 0)
}

.border-violet-700\/10 {
    border-color: rgba(109, 40, 217, .1)
}

.border-violet-700\/100 {
    border-color: #6d28d9
}

.border-violet-700\/20 {
    border-color: rgba(109, 40, 217, .2)
}

.border-violet-700\/25 {
    border-color: rgba(109, 40, 217, .25)
}

.border-violet-700\/30 {
    border-color: rgba(109, 40, 217, .3)
}

.border-violet-700\/40 {
    border-color: rgba(109, 40, 217, .4)
}

.border-violet-700\/5 {
    border-color: rgba(109, 40, 217, .05)
}

.border-violet-700\/50 {
    border-color: rgba(109, 40, 217, .5)
}

.border-violet-700\/60 {
    border-color: rgba(109, 40, 217, .6)
}

.border-violet-700\/70 {
    border-color: rgba(109, 40, 217, .7)
}

.border-violet-700\/75 {
    border-color: rgba(109, 40, 217, .75)
}

.border-violet-700\/80 {
    border-color: rgba(109, 40, 217, .8)
}

.border-violet-700\/90 {
    border-color: rgba(109, 40, 217, .9)
}

.border-violet-700\/95 {
    border-color: rgba(109, 40, 217, .95)
}

.border-violet-800 {
    --tw-border-opacity: 1;
    border-color: rgb(91 33 182/var(--tw-border-opacity))
}

.border-violet-800\/0 {
    border-color: rgba(91, 33, 182, 0)
}

.border-violet-800\/10 {
    border-color: rgba(91, 33, 182, .1)
}

.border-violet-800\/100 {
    border-color: #5b21b6
}

.border-violet-800\/20 {
    border-color: rgba(91, 33, 182, .2)
}

.border-violet-800\/25 {
    border-color: rgba(91, 33, 182, .25)
}

.border-violet-800\/30 {
    border-color: rgba(91, 33, 182, .3)
}

.border-violet-800\/40 {
    border-color: rgba(91, 33, 182, .4)
}

.border-violet-800\/5 {
    border-color: rgba(91, 33, 182, .05)
}

.border-violet-800\/50 {
    border-color: rgba(91, 33, 182, .5)
}

.border-violet-800\/60 {
    border-color: rgba(91, 33, 182, .6)
}

.border-violet-800\/70 {
    border-color: rgba(91, 33, 182, .7)
}

.border-violet-800\/75 {
    border-color: rgba(91, 33, 182, .75)
}

.border-violet-800\/80 {
    border-color: rgba(91, 33, 182, .8)
}

.border-violet-800\/90 {
    border-color: rgba(91, 33, 182, .9)
}

.border-violet-800\/95 {
    border-color: rgba(91, 33, 182, .95)
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.border-white\/10 {
    border-color: hsla(0, 0%, 100%, .1)
}

.border-white\/20 {
    border-color: hsla(0, 0%, 100%, .2)
}

.border-white\/25 {
    border-color: hsla(0, 0%, 100%, .25)
}

.border-white\/30 {
    border-color: hsla(0, 0%, 100%, .3)
}

.border-white\/40 {
    border-color: hsla(0, 0%, 100%, .4)
}

.border-white\/5 {
    border-color: hsla(0, 0%, 100%, .05)
}

.border-white\/70 {
    border-color: hsla(0, 0%, 100%, .7)
}

.border-yellow-100 {
    --tw-border-opacity: 1;
    border-color: rgb(254 249 195/var(--tw-border-opacity))
}

.border-yellow-100\/0 {
    border-color: hsla(55, 97%, 88%, 0)
}

.border-yellow-100\/10 {
    border-color: hsla(55, 97%, 88%, .1)
}

.border-yellow-100\/100 {
    border-color: #fef9c3
}

.border-yellow-100\/20 {
    border-color: hsla(55, 97%, 88%, .2)
}

.border-yellow-100\/25 {
    border-color: hsla(55, 97%, 88%, .25)
}

.border-yellow-100\/30 {
    border-color: hsla(55, 97%, 88%, .3)
}

.border-yellow-100\/40 {
    border-color: hsla(55, 97%, 88%, .4)
}

.border-yellow-100\/5 {
    border-color: hsla(55, 97%, 88%, .05)
}

.border-yellow-100\/50 {
    border-color: hsla(55, 97%, 88%, .5)
}

.border-yellow-100\/60 {
    border-color: hsla(55, 97%, 88%, .6)
}

.border-yellow-100\/70 {
    border-color: hsla(55, 97%, 88%, .7)
}

.border-yellow-100\/75 {
    border-color: hsla(55, 97%, 88%, .75)
}

.border-yellow-100\/80 {
    border-color: hsla(55, 97%, 88%, .8)
}

.border-yellow-100\/90 {
    border-color: hsla(55, 97%, 88%, .9)
}

.border-yellow-100\/95 {
    border-color: hsla(55, 97%, 88%, .95)
}

.border-yellow-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138/var(--tw-border-opacity))
}

.border-yellow-200\/0 {
    border-color: hsla(53, 98%, 77%, 0)
}

.border-yellow-200\/10 {
    border-color: hsla(53, 98%, 77%, .1)
}

.border-yellow-200\/100 {
    border-color: #fef08a
}

.border-yellow-200\/20 {
    border-color: hsla(53, 98%, 77%, .2)
}

.border-yellow-200\/25 {
    border-color: hsla(53, 98%, 77%, .25)
}

.border-yellow-200\/30 {
    border-color: hsla(53, 98%, 77%, .3)
}

.border-yellow-200\/40 {
    border-color: hsla(53, 98%, 77%, .4)
}

.border-yellow-200\/5 {
    border-color: hsla(53, 98%, 77%, .05)
}

.border-yellow-200\/50 {
    border-color: hsla(53, 98%, 77%, .5)
}

.border-yellow-200\/60 {
    border-color: hsla(53, 98%, 77%, .6)
}

.border-yellow-200\/70 {
    border-color: hsla(53, 98%, 77%, .7)
}

.border-yellow-200\/75 {
    border-color: hsla(53, 98%, 77%, .75)
}

.border-yellow-200\/80 {
    border-color: hsla(53, 98%, 77%, .8)
}

.border-yellow-200\/90 {
    border-color: hsla(53, 98%, 77%, .9)
}

.border-yellow-200\/95 {
    border-color: hsla(53, 98%, 77%, .95)
}

.border-yellow-300 {
    --tw-border-opacity: 1;
    border-color: rgb(253 224 71/var(--tw-border-opacity))
}

.border-yellow-300\/0 {
    border-color: rgba(253, 224, 71, 0)
}

.border-yellow-300\/10 {
    border-color: rgba(253, 224, 71, .1)
}

.border-yellow-300\/100 {
    border-color: #fde047
}

.border-yellow-300\/20 {
    border-color: rgba(253, 224, 71, .2)
}

.border-yellow-300\/25 {
    border-color: rgba(253, 224, 71, .25)
}

.border-yellow-300\/30 {
    border-color: rgba(253, 224, 71, .3)
}

.border-yellow-300\/40 {
    border-color: rgba(253, 224, 71, .4)
}

.border-yellow-300\/5 {
    border-color: rgba(253, 224, 71, .05)
}

.border-yellow-300\/50 {
    border-color: rgba(253, 224, 71, .5)
}

.border-yellow-300\/60 {
    border-color: rgba(253, 224, 71, .6)
}

.border-yellow-300\/70 {
    border-color: rgba(253, 224, 71, .7)
}

.border-yellow-300\/75 {
    border-color: rgba(253, 224, 71, .75)
}

.border-yellow-300\/80 {
    border-color: rgba(253, 224, 71, .8)
}

.border-yellow-300\/90 {
    border-color: rgba(253, 224, 71, .9)
}

.border-yellow-300\/95 {
    border-color: rgba(253, 224, 71, .95)
}

.border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgb(250 204 21/var(--tw-border-opacity))
}

.border-yellow-400\/0 {
    border-color: rgba(250, 204, 21, 0)
}

.border-yellow-400\/10 {
    border-color: rgba(250, 204, 21, .1)
}

.border-yellow-400\/100 {
    border-color: #facc15
}

.border-yellow-400\/20 {
    border-color: rgba(250, 204, 21, .2)
}

.border-yellow-400\/25 {
    border-color: rgba(250, 204, 21, .25)
}

.border-yellow-400\/30 {
    border-color: rgba(250, 204, 21, .3)
}

.border-yellow-400\/40 {
    border-color: rgba(250, 204, 21, .4)
}

.border-yellow-400\/5 {
    border-color: rgba(250, 204, 21, .05)
}

.border-yellow-400\/50 {
    border-color: rgba(250, 204, 21, .5)
}

.border-yellow-400\/60 {
    border-color: rgba(250, 204, 21, .6)
}

.border-yellow-400\/70 {
    border-color: rgba(250, 204, 21, .7)
}

.border-yellow-400\/75 {
    border-color: rgba(250, 204, 21, .75)
}

.border-yellow-400\/80 {
    border-color: rgba(250, 204, 21, .8)
}

.border-yellow-400\/90 {
    border-color: rgba(250, 204, 21, .9)
}

.border-yellow-400\/95 {
    border-color: rgba(250, 204, 21, .95)
}

.border-yellow-500 {
    --tw-border-opacity: 1;
    border-color: rgb(234 179 8/var(--tw-border-opacity))
}

.border-yellow-500\/0 {
    border-color: rgba(234, 179, 8, 0)
}

.border-yellow-500\/10 {
    border-color: rgba(234, 179, 8, .1)
}

.border-yellow-500\/100 {
    border-color: #eab308
}

.border-yellow-500\/20 {
    border-color: rgba(234, 179, 8, .2)
}

.border-yellow-500\/25 {
    border-color: rgba(234, 179, 8, .25)
}

.border-yellow-500\/30 {
    border-color: rgba(234, 179, 8, .3)
}

.border-yellow-500\/40 {
    border-color: rgba(234, 179, 8, .4)
}

.border-yellow-500\/5 {
    border-color: rgba(234, 179, 8, .05)
}

.border-yellow-500\/50 {
    border-color: rgba(234, 179, 8, .5)
}

.border-yellow-500\/60 {
    border-color: rgba(234, 179, 8, .6)
}

.border-yellow-500\/70 {
    border-color: rgba(234, 179, 8, .7)
}

.border-yellow-500\/75 {
    border-color: rgba(234, 179, 8, .75)
}

.border-yellow-500\/80 {
    border-color: rgba(234, 179, 8, .8)
}

.border-yellow-500\/90 {
    border-color: rgba(234, 179, 8, .9)
}

.border-yellow-500\/95 {
    border-color: rgba(234, 179, 8, .95)
}

.border-yellow-600 {
    --tw-border-opacity: 1;
    border-color: rgb(202 138 4/var(--tw-border-opacity))
}

.border-yellow-600\/0 {
    border-color: rgba(202, 138, 4, 0)
}

.border-yellow-600\/10 {
    border-color: rgba(202, 138, 4, .1)
}

.border-yellow-600\/100 {
    border-color: #ca8a04
}

.border-yellow-600\/20 {
    border-color: rgba(202, 138, 4, .2)
}

.border-yellow-600\/25 {
    border-color: rgba(202, 138, 4, .25)
}

.border-yellow-600\/30 {
    border-color: rgba(202, 138, 4, .3)
}

.border-yellow-600\/40 {
    border-color: rgba(202, 138, 4, .4)
}

.border-yellow-600\/5 {
    border-color: rgba(202, 138, 4, .05)
}

.border-yellow-600\/50 {
    border-color: rgba(202, 138, 4, .5)
}

.border-yellow-600\/60 {
    border-color: rgba(202, 138, 4, .6)
}

.border-yellow-600\/70 {
    border-color: rgba(202, 138, 4, .7)
}

.border-yellow-600\/75 {
    border-color: rgba(202, 138, 4, .75)
}

.border-yellow-600\/80 {
    border-color: rgba(202, 138, 4, .8)
}

.border-yellow-600\/90 {
    border-color: rgba(202, 138, 4, .9)
}

.border-yellow-600\/95 {
    border-color: rgba(202, 138, 4, .95)
}

.border-yellow-700 {
    --tw-border-opacity: 1;
    border-color: rgb(161 98 7/var(--tw-border-opacity))
}

.border-yellow-700\/0 {
    border-color: rgba(161, 98, 7, 0)
}

.border-yellow-700\/10 {
    border-color: rgba(161, 98, 7, .1)
}

.border-yellow-700\/100 {
    border-color: #a16207
}

.border-yellow-700\/20 {
    border-color: rgba(161, 98, 7, .2)
}

.border-yellow-700\/25 {
    border-color: rgba(161, 98, 7, .25)
}

.border-yellow-700\/30 {
    border-color: rgba(161, 98, 7, .3)
}

.border-yellow-700\/40 {
    border-color: rgba(161, 98, 7, .4)
}

.border-yellow-700\/5 {
    border-color: rgba(161, 98, 7, .05)
}

.border-yellow-700\/50 {
    border-color: rgba(161, 98, 7, .5)
}

.border-yellow-700\/60 {
    border-color: rgba(161, 98, 7, .6)
}

.border-yellow-700\/70 {
    border-color: rgba(161, 98, 7, .7)
}

.border-yellow-700\/75 {
    border-color: rgba(161, 98, 7, .75)
}

.border-yellow-700\/80 {
    border-color: rgba(161, 98, 7, .8)
}

.border-yellow-700\/90 {
    border-color: rgba(161, 98, 7, .9)
}

.border-yellow-700\/95 {
    border-color: rgba(161, 98, 7, .95)
}

.border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14/var(--tw-border-opacity))
}

.border-yellow-800\/0 {
    border-color: rgba(133, 77, 14, 0)
}

.border-yellow-800\/10 {
    border-color: rgba(133, 77, 14, .1)
}

.border-yellow-800\/100 {
    border-color: #854d0e
}

.border-yellow-800\/20 {
    border-color: rgba(133, 77, 14, .2)
}

.border-yellow-800\/25 {
    border-color: rgba(133, 77, 14, .25)
}

.border-yellow-800\/30 {
    border-color: rgba(133, 77, 14, .3)
}

.border-yellow-800\/40 {
    border-color: rgba(133, 77, 14, .4)
}

.border-yellow-800\/5 {
    border-color: rgba(133, 77, 14, .05)
}

.border-yellow-800\/50 {
    border-color: rgba(133, 77, 14, .5)
}

.border-yellow-800\/60 {
    border-color: rgba(133, 77, 14, .6)
}

.border-yellow-800\/70 {
    border-color: rgba(133, 77, 14, .7)
}

.border-yellow-800\/75 {
    border-color: rgba(133, 77, 14, .75)
}

.border-yellow-800\/80 {
    border-color: rgba(133, 77, 14, .8)
}

.border-yellow-800\/90 {
    border-color: rgba(133, 77, 14, .9)
}

.border-yellow-800\/95 {
    border-color: rgba(133, 77, 14, .95)
}

.\!border-r-blue-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(219 234 254/var(--tw-border-opacity)) !important
}

.\!border-r-blue-100\/0 {
    border-right-color: rgba(219, 234, 254, 0) !important
}

.\!border-r-blue-100\/10 {
    border-right-color: rgba(219, 234, 254, .1) !important
}

.\!border-r-blue-100\/100 {
    border-right-color: #dbeafe !important
}

.\!border-r-blue-100\/20 {
    border-right-color: rgba(219, 234, 254, .2) !important
}

.\!border-r-blue-100\/25 {
    border-right-color: rgba(219, 234, 254, .25) !important
}

.\!border-r-blue-100\/30 {
    border-right-color: rgba(219, 234, 254, .3) !important
}

.\!border-r-blue-100\/40 {
    border-right-color: rgba(219, 234, 254, .4) !important
}

.\!border-r-blue-100\/5 {
    border-right-color: rgba(219, 234, 254, .05) !important
}

.\!border-r-blue-100\/50 {
    border-right-color: rgba(219, 234, 254, .5) !important
}

.\!border-r-blue-100\/60 {
    border-right-color: rgba(219, 234, 254, .6) !important
}

.\!border-r-blue-100\/70 {
    border-right-color: rgba(219, 234, 254, .7) !important
}

.\!border-r-blue-100\/75 {
    border-right-color: rgba(219, 234, 254, .75) !important
}

.\!border-r-blue-100\/80 {
    border-right-color: rgba(219, 234, 254, .8) !important
}

.\!border-r-blue-100\/90 {
    border-right-color: rgba(219, 234, 254, .9) !important
}

.\!border-r-blue-100\/95 {
    border-right-color: rgba(219, 234, 254, .95) !important
}

.\!border-r-blue-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(191 219 254/var(--tw-border-opacity)) !important
}

.\!border-r-blue-200\/0 {
    border-right-color: rgba(191, 219, 254, 0) !important
}

.\!border-r-blue-200\/10 {
    border-right-color: rgba(191, 219, 254, .1) !important
}

.\!border-r-blue-200\/100 {
    border-right-color: #bfdbfe !important
}

.\!border-r-blue-200\/20 {
    border-right-color: rgba(191, 219, 254, .2) !important
}

.\!border-r-blue-200\/25 {
    border-right-color: rgba(191, 219, 254, .25) !important
}

.\!border-r-blue-200\/30 {
    border-right-color: rgba(191, 219, 254, .3) !important
}

.\!border-r-blue-200\/40 {
    border-right-color: rgba(191, 219, 254, .4) !important
}

.\!border-r-blue-200\/5 {
    border-right-color: rgba(191, 219, 254, .05) !important
}

.\!border-r-blue-200\/50 {
    border-right-color: rgba(191, 219, 254, .5) !important
}

.\!border-r-blue-200\/60 {
    border-right-color: rgba(191, 219, 254, .6) !important
}

.\!border-r-blue-200\/70 {
    border-right-color: rgba(191, 219, 254, .7) !important
}

.\!border-r-blue-200\/75 {
    border-right-color: rgba(191, 219, 254, .75) !important
}

.\!border-r-blue-200\/80 {
    border-right-color: rgba(191, 219, 254, .8) !important
}

.\!border-r-blue-200\/90 {
    border-right-color: rgba(191, 219, 254, .9) !important
}

.\!border-r-blue-200\/95 {
    border-right-color: rgba(191, 219, 254, .95) !important
}

.\!border-r-blue-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(147 197 253/var(--tw-border-opacity)) !important
}

.\!border-r-blue-300\/0 {
    border-right-color: rgba(147, 197, 253, 0) !important
}

.\!border-r-blue-300\/10 {
    border-right-color: rgba(147, 197, 253, .1) !important
}

.\!border-r-blue-300\/100 {
    border-right-color: #93c5fd !important
}

.\!border-r-blue-300\/20 {
    border-right-color: rgba(147, 197, 253, .2) !important
}

.\!border-r-blue-300\/25 {
    border-right-color: rgba(147, 197, 253, .25) !important
}

.\!border-r-blue-300\/30 {
    border-right-color: rgba(147, 197, 253, .3) !important
}

.\!border-r-blue-300\/40 {
    border-right-color: rgba(147, 197, 253, .4) !important
}

.\!border-r-blue-300\/5 {
    border-right-color: rgba(147, 197, 253, .05) !important
}

.\!border-r-blue-300\/50 {
    border-right-color: rgba(147, 197, 253, .5) !important
}

.\!border-r-blue-300\/60 {
    border-right-color: rgba(147, 197, 253, .6) !important
}

.\!border-r-blue-300\/70 {
    border-right-color: rgba(147, 197, 253, .7) !important
}

.\!border-r-blue-300\/75 {
    border-right-color: rgba(147, 197, 253, .75) !important
}

.\!border-r-blue-300\/80 {
    border-right-color: rgba(147, 197, 253, .8) !important
}

.\!border-r-blue-300\/90 {
    border-right-color: rgba(147, 197, 253, .9) !important
}

.\!border-r-blue-300\/95 {
    border-right-color: rgba(147, 197, 253, .95) !important
}

.\!border-r-blue-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(96 165 250/var(--tw-border-opacity)) !important
}

.\!border-r-blue-400\/0 {
    border-right-color: rgba(96, 165, 250, 0) !important
}

.\!border-r-blue-400\/10 {
    border-right-color: rgba(96, 165, 250, .1) !important
}

.\!border-r-blue-400\/100 {
    border-right-color: #60a5fa !important
}

.\!border-r-blue-400\/20 {
    border-right-color: rgba(96, 165, 250, .2) !important
}

.\!border-r-blue-400\/25 {
    border-right-color: rgba(96, 165, 250, .25) !important
}

.\!border-r-blue-400\/30 {
    border-right-color: rgba(96, 165, 250, .3) !important
}

.\!border-r-blue-400\/40 {
    border-right-color: rgba(96, 165, 250, .4) !important
}

.\!border-r-blue-400\/5 {
    border-right-color: rgba(96, 165, 250, .05) !important
}

.\!border-r-blue-400\/50 {
    border-right-color: rgba(96, 165, 250, .5) !important
}

.\!border-r-blue-400\/60 {
    border-right-color: rgba(96, 165, 250, .6) !important
}

.\!border-r-blue-400\/70 {
    border-right-color: rgba(96, 165, 250, .7) !important
}

.\!border-r-blue-400\/75 {
    border-right-color: rgba(96, 165, 250, .75) !important
}

.\!border-r-blue-400\/80 {
    border-right-color: rgba(96, 165, 250, .8) !important
}

.\!border-r-blue-400\/90 {
    border-right-color: rgba(96, 165, 250, .9) !important
}

.\!border-r-blue-400\/95 {
    border-right-color: rgba(96, 165, 250, .95) !important
}

.\!border-r-blue-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(59 130 246/var(--tw-border-opacity)) !important
}

.\!border-r-blue-500\/0 {
    border-right-color: rgba(59, 130, 246, 0) !important
}

.\!border-r-blue-500\/10 {
    border-right-color: rgba(59, 130, 246, .1) !important
}

.\!border-r-blue-500\/100 {
    border-right-color: #3b82f6 !important
}

.\!border-r-blue-500\/20 {
    border-right-color: rgba(59, 130, 246, .2) !important
}

.\!border-r-blue-500\/25 {
    border-right-color: rgba(59, 130, 246, .25) !important
}

.\!border-r-blue-500\/30 {
    border-right-color: rgba(59, 130, 246, .3) !important
}

.\!border-r-blue-500\/40 {
    border-right-color: rgba(59, 130, 246, .4) !important
}

.\!border-r-blue-500\/5 {
    border-right-color: rgba(59, 130, 246, .05) !important
}

.\!border-r-blue-500\/50 {
    border-right-color: rgba(59, 130, 246, .5) !important
}

.\!border-r-blue-500\/60 {
    border-right-color: rgba(59, 130, 246, .6) !important
}

.\!border-r-blue-500\/70 {
    border-right-color: rgba(59, 130, 246, .7) !important
}

.\!border-r-blue-500\/75 {
    border-right-color: rgba(59, 130, 246, .75) !important
}

.\!border-r-blue-500\/80 {
    border-right-color: rgba(59, 130, 246, .8) !important
}

.\!border-r-blue-500\/90 {
    border-right-color: rgba(59, 130, 246, .9) !important
}

.\!border-r-blue-500\/95 {
    border-right-color: rgba(59, 130, 246, .95) !important
}

.\!border-r-blue-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(37 99 235/var(--tw-border-opacity)) !important
}

.\!border-r-blue-600\/0 {
    border-right-color: rgba(37, 99, 235, 0) !important
}

.\!border-r-blue-600\/10 {
    border-right-color: rgba(37, 99, 235, .1) !important
}

.\!border-r-blue-600\/100 {
    border-right-color: #2563eb !important
}

.\!border-r-blue-600\/20 {
    border-right-color: rgba(37, 99, 235, .2) !important
}

.\!border-r-blue-600\/25 {
    border-right-color: rgba(37, 99, 235, .25) !important
}

.\!border-r-blue-600\/30 {
    border-right-color: rgba(37, 99, 235, .3) !important
}

.\!border-r-blue-600\/40 {
    border-right-color: rgba(37, 99, 235, .4) !important
}

.\!border-r-blue-600\/5 {
    border-right-color: rgba(37, 99, 235, .05) !important
}

.\!border-r-blue-600\/50 {
    border-right-color: rgba(37, 99, 235, .5) !important
}

.\!border-r-blue-600\/60 {
    border-right-color: rgba(37, 99, 235, .6) !important
}

.\!border-r-blue-600\/70 {
    border-right-color: rgba(37, 99, 235, .7) !important
}

.\!border-r-blue-600\/75 {
    border-right-color: rgba(37, 99, 235, .75) !important
}

.\!border-r-blue-600\/80 {
    border-right-color: rgba(37, 99, 235, .8) !important
}

.\!border-r-blue-600\/90 {
    border-right-color: rgba(37, 99, 235, .9) !important
}

.\!border-r-blue-600\/95 {
    border-right-color: rgba(37, 99, 235, .95) !important
}

.\!border-r-blue-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(29 78 216/var(--tw-border-opacity)) !important
}

.\!border-r-blue-700\/0 {
    border-right-color: rgba(29, 78, 216, 0) !important
}

.\!border-r-blue-700\/10 {
    border-right-color: rgba(29, 78, 216, .1) !important
}

.\!border-r-blue-700\/100 {
    border-right-color: #1d4ed8 !important
}

.\!border-r-blue-700\/20 {
    border-right-color: rgba(29, 78, 216, .2) !important
}

.\!border-r-blue-700\/25 {
    border-right-color: rgba(29, 78, 216, .25) !important
}

.\!border-r-blue-700\/30 {
    border-right-color: rgba(29, 78, 216, .3) !important
}

.\!border-r-blue-700\/40 {
    border-right-color: rgba(29, 78, 216, .4) !important
}

.\!border-r-blue-700\/5 {
    border-right-color: rgba(29, 78, 216, .05) !important
}

.\!border-r-blue-700\/50 {
    border-right-color: rgba(29, 78, 216, .5) !important
}

.\!border-r-blue-700\/60 {
    border-right-color: rgba(29, 78, 216, .6) !important
}

.\!border-r-blue-700\/70 {
    border-right-color: rgba(29, 78, 216, .7) !important
}

.\!border-r-blue-700\/75 {
    border-right-color: rgba(29, 78, 216, .75) !important
}

.\!border-r-blue-700\/80 {
    border-right-color: rgba(29, 78, 216, .8) !important
}

.\!border-r-blue-700\/90 {
    border-right-color: rgba(29, 78, 216, .9) !important
}

.\!border-r-blue-700\/95 {
    border-right-color: rgba(29, 78, 216, .95) !important
}

.\!border-r-blue-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(30 64 175/var(--tw-border-opacity)) !important
}

.\!border-r-blue-800\/0 {
    border-right-color: rgba(30, 64, 175, 0) !important
}

.\!border-r-blue-800\/10 {
    border-right-color: rgba(30, 64, 175, .1) !important
}

.\!border-r-blue-800\/100 {
    border-right-color: #1e40af !important
}

.\!border-r-blue-800\/20 {
    border-right-color: rgba(30, 64, 175, .2) !important
}

.\!border-r-blue-800\/25 {
    border-right-color: rgba(30, 64, 175, .25) !important
}

.\!border-r-blue-800\/30 {
    border-right-color: rgba(30, 64, 175, .3) !important
}

.\!border-r-blue-800\/40 {
    border-right-color: rgba(30, 64, 175, .4) !important
}

.\!border-r-blue-800\/5 {
    border-right-color: rgba(30, 64, 175, .05) !important
}

.\!border-r-blue-800\/50 {
    border-right-color: rgba(30, 64, 175, .5) !important
}

.\!border-r-blue-800\/60 {
    border-right-color: rgba(30, 64, 175, .6) !important
}

.\!border-r-blue-800\/70 {
    border-right-color: rgba(30, 64, 175, .7) !important
}

.\!border-r-blue-800\/75 {
    border-right-color: rgba(30, 64, 175, .75) !important
}

.\!border-r-blue-800\/80 {
    border-right-color: rgba(30, 64, 175, .8) !important
}

.\!border-r-blue-800\/90 {
    border-right-color: rgba(30, 64, 175, .9) !important
}

.\!border-r-blue-800\/95 {
    border-right-color: rgba(30, 64, 175, .95) !important
}

.\!border-r-emerald-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(209 250 229/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-100\/0 {
    border-right-color: rgba(209, 250, 229, 0) !important
}

.\!border-r-emerald-100\/10 {
    border-right-color: rgba(209, 250, 229, .1) !important
}

.\!border-r-emerald-100\/100 {
    border-right-color: #d1fae5 !important
}

.\!border-r-emerald-100\/20 {
    border-right-color: rgba(209, 250, 229, .2) !important
}

.\!border-r-emerald-100\/25 {
    border-right-color: rgba(209, 250, 229, .25) !important
}

.\!border-r-emerald-100\/30 {
    border-right-color: rgba(209, 250, 229, .3) !important
}

.\!border-r-emerald-100\/40 {
    border-right-color: rgba(209, 250, 229, .4) !important
}

.\!border-r-emerald-100\/5 {
    border-right-color: rgba(209, 250, 229, .05) !important
}

.\!border-r-emerald-100\/50 {
    border-right-color: rgba(209, 250, 229, .5) !important
}

.\!border-r-emerald-100\/60 {
    border-right-color: rgba(209, 250, 229, .6) !important
}

.\!border-r-emerald-100\/70 {
    border-right-color: rgba(209, 250, 229, .7) !important
}

.\!border-r-emerald-100\/75 {
    border-right-color: rgba(209, 250, 229, .75) !important
}

.\!border-r-emerald-100\/80 {
    border-right-color: rgba(209, 250, 229, .8) !important
}

.\!border-r-emerald-100\/90 {
    border-right-color: rgba(209, 250, 229, .9) !important
}

.\!border-r-emerald-100\/95 {
    border-right-color: rgba(209, 250, 229, .95) !important
}

.\!border-r-emerald-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(167 243 208/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-200\/0 {
    border-right-color: rgba(167, 243, 208, 0) !important
}

.\!border-r-emerald-200\/10 {
    border-right-color: rgba(167, 243, 208, .1) !important
}

.\!border-r-emerald-200\/100 {
    border-right-color: #a7f3d0 !important
}

.\!border-r-emerald-200\/20 {
    border-right-color: rgba(167, 243, 208, .2) !important
}

.\!border-r-emerald-200\/25 {
    border-right-color: rgba(167, 243, 208, .25) !important
}

.\!border-r-emerald-200\/30 {
    border-right-color: rgba(167, 243, 208, .3) !important
}

.\!border-r-emerald-200\/40 {
    border-right-color: rgba(167, 243, 208, .4) !important
}

.\!border-r-emerald-200\/5 {
    border-right-color: rgba(167, 243, 208, .05) !important
}

.\!border-r-emerald-200\/50 {
    border-right-color: rgba(167, 243, 208, .5) !important
}

.\!border-r-emerald-200\/60 {
    border-right-color: rgba(167, 243, 208, .6) !important
}

.\!border-r-emerald-200\/70 {
    border-right-color: rgba(167, 243, 208, .7) !important
}

.\!border-r-emerald-200\/75 {
    border-right-color: rgba(167, 243, 208, .75) !important
}

.\!border-r-emerald-200\/80 {
    border-right-color: rgba(167, 243, 208, .8) !important
}

.\!border-r-emerald-200\/90 {
    border-right-color: rgba(167, 243, 208, .9) !important
}

.\!border-r-emerald-200\/95 {
    border-right-color: rgba(167, 243, 208, .95) !important
}

.\!border-r-emerald-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(110 231 183/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-300\/0 {
    border-right-color: rgba(110, 231, 183, 0) !important
}

.\!border-r-emerald-300\/10 {
    border-right-color: rgba(110, 231, 183, .1) !important
}

.\!border-r-emerald-300\/100 {
    border-right-color: #6ee7b7 !important
}

.\!border-r-emerald-300\/20 {
    border-right-color: rgba(110, 231, 183, .2) !important
}

.\!border-r-emerald-300\/25 {
    border-right-color: rgba(110, 231, 183, .25) !important
}

.\!border-r-emerald-300\/30 {
    border-right-color: rgba(110, 231, 183, .3) !important
}

.\!border-r-emerald-300\/40 {
    border-right-color: rgba(110, 231, 183, .4) !important
}

.\!border-r-emerald-300\/5 {
    border-right-color: rgba(110, 231, 183, .05) !important
}

.\!border-r-emerald-300\/50 {
    border-right-color: rgba(110, 231, 183, .5) !important
}

.\!border-r-emerald-300\/60 {
    border-right-color: rgba(110, 231, 183, .6) !important
}

.\!border-r-emerald-300\/70 {
    border-right-color: rgba(110, 231, 183, .7) !important
}

.\!border-r-emerald-300\/75 {
    border-right-color: rgba(110, 231, 183, .75) !important
}

.\!border-r-emerald-300\/80 {
    border-right-color: rgba(110, 231, 183, .8) !important
}

.\!border-r-emerald-300\/90 {
    border-right-color: rgba(110, 231, 183, .9) !important
}

.\!border-r-emerald-300\/95 {
    border-right-color: rgba(110, 231, 183, .95) !important
}

.\!border-r-emerald-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(52 211 153/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-400\/0 {
    border-right-color: rgba(52, 211, 153, 0) !important
}

.\!border-r-emerald-400\/10 {
    border-right-color: rgba(52, 211, 153, .1) !important
}

.\!border-r-emerald-400\/100 {
    border-right-color: #34d399 !important
}

.\!border-r-emerald-400\/20 {
    border-right-color: rgba(52, 211, 153, .2) !important
}

.\!border-r-emerald-400\/25 {
    border-right-color: rgba(52, 211, 153, .25) !important
}

.\!border-r-emerald-400\/30 {
    border-right-color: rgba(52, 211, 153, .3) !important
}

.\!border-r-emerald-400\/40 {
    border-right-color: rgba(52, 211, 153, .4) !important
}

.\!border-r-emerald-400\/5 {
    border-right-color: rgba(52, 211, 153, .05) !important
}

.\!border-r-emerald-400\/50 {
    border-right-color: rgba(52, 211, 153, .5) !important
}

.\!border-r-emerald-400\/60 {
    border-right-color: rgba(52, 211, 153, .6) !important
}

.\!border-r-emerald-400\/70 {
    border-right-color: rgba(52, 211, 153, .7) !important
}

.\!border-r-emerald-400\/75 {
    border-right-color: rgba(52, 211, 153, .75) !important
}

.\!border-r-emerald-400\/80 {
    border-right-color: rgba(52, 211, 153, .8) !important
}

.\!border-r-emerald-400\/90 {
    border-right-color: rgba(52, 211, 153, .9) !important
}

.\!border-r-emerald-400\/95 {
    border-right-color: rgba(52, 211, 153, .95) !important
}

.\!border-r-emerald-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(16 185 129/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-500\/0 {
    border-right-color: rgba(16, 185, 129, 0) !important
}

.\!border-r-emerald-500\/10 {
    border-right-color: rgba(16, 185, 129, .1) !important
}

.\!border-r-emerald-500\/100 {
    border-right-color: #10b981 !important
}

.\!border-r-emerald-500\/20 {
    border-right-color: rgba(16, 185, 129, .2) !important
}

.\!border-r-emerald-500\/25 {
    border-right-color: rgba(16, 185, 129, .25) !important
}

.\!border-r-emerald-500\/30 {
    border-right-color: rgba(16, 185, 129, .3) !important
}

.\!border-r-emerald-500\/40 {
    border-right-color: rgba(16, 185, 129, .4) !important
}

.\!border-r-emerald-500\/5 {
    border-right-color: rgba(16, 185, 129, .05) !important
}

.\!border-r-emerald-500\/50 {
    border-right-color: rgba(16, 185, 129, .5) !important
}

.\!border-r-emerald-500\/60 {
    border-right-color: rgba(16, 185, 129, .6) !important
}

.\!border-r-emerald-500\/70 {
    border-right-color: rgba(16, 185, 129, .7) !important
}

.\!border-r-emerald-500\/75 {
    border-right-color: rgba(16, 185, 129, .75) !important
}

.\!border-r-emerald-500\/80 {
    border-right-color: rgba(16, 185, 129, .8) !important
}

.\!border-r-emerald-500\/90 {
    border-right-color: rgba(16, 185, 129, .9) !important
}

.\!border-r-emerald-500\/95 {
    border-right-color: rgba(16, 185, 129, .95) !important
}

.\!border-r-emerald-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(5 150 105/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-600\/0 {
    border-right-color: rgba(5, 150, 105, 0) !important
}

.\!border-r-emerald-600\/10 {
    border-right-color: rgba(5, 150, 105, .1) !important
}

.\!border-r-emerald-600\/100 {
    border-right-color: #059669 !important
}

.\!border-r-emerald-600\/20 {
    border-right-color: rgba(5, 150, 105, .2) !important
}

.\!border-r-emerald-600\/25 {
    border-right-color: rgba(5, 150, 105, .25) !important
}

.\!border-r-emerald-600\/30 {
    border-right-color: rgba(5, 150, 105, .3) !important
}

.\!border-r-emerald-600\/40 {
    border-right-color: rgba(5, 150, 105, .4) !important
}

.\!border-r-emerald-600\/5 {
    border-right-color: rgba(5, 150, 105, .05) !important
}

.\!border-r-emerald-600\/50 {
    border-right-color: rgba(5, 150, 105, .5) !important
}

.\!border-r-emerald-600\/60 {
    border-right-color: rgba(5, 150, 105, .6) !important
}

.\!border-r-emerald-600\/70 {
    border-right-color: rgba(5, 150, 105, .7) !important
}

.\!border-r-emerald-600\/75 {
    border-right-color: rgba(5, 150, 105, .75) !important
}

.\!border-r-emerald-600\/80 {
    border-right-color: rgba(5, 150, 105, .8) !important
}

.\!border-r-emerald-600\/90 {
    border-right-color: rgba(5, 150, 105, .9) !important
}

.\!border-r-emerald-600\/95 {
    border-right-color: rgba(5, 150, 105, .95) !important
}

.\!border-r-emerald-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(4 120 87/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-700\/0 {
    border-right-color: rgba(4, 120, 87, 0) !important
}

.\!border-r-emerald-700\/10 {
    border-right-color: rgba(4, 120, 87, .1) !important
}

.\!border-r-emerald-700\/100 {
    border-right-color: #047857 !important
}

.\!border-r-emerald-700\/20 {
    border-right-color: rgba(4, 120, 87, .2) !important
}

.\!border-r-emerald-700\/25 {
    border-right-color: rgba(4, 120, 87, .25) !important
}

.\!border-r-emerald-700\/30 {
    border-right-color: rgba(4, 120, 87, .3) !important
}

.\!border-r-emerald-700\/40 {
    border-right-color: rgba(4, 120, 87, .4) !important
}

.\!border-r-emerald-700\/5 {
    border-right-color: rgba(4, 120, 87, .05) !important
}

.\!border-r-emerald-700\/50 {
    border-right-color: rgba(4, 120, 87, .5) !important
}

.\!border-r-emerald-700\/60 {
    border-right-color: rgba(4, 120, 87, .6) !important
}

.\!border-r-emerald-700\/70 {
    border-right-color: rgba(4, 120, 87, .7) !important
}

.\!border-r-emerald-700\/75 {
    border-right-color: rgba(4, 120, 87, .75) !important
}

.\!border-r-emerald-700\/80 {
    border-right-color: rgba(4, 120, 87, .8) !important
}

.\!border-r-emerald-700\/90 {
    border-right-color: rgba(4, 120, 87, .9) !important
}

.\!border-r-emerald-700\/95 {
    border-right-color: rgba(4, 120, 87, .95) !important
}

.\!border-r-emerald-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(6 95 70/var(--tw-border-opacity)) !important
}

.\!border-r-emerald-800\/0 {
    border-right-color: rgba(6, 95, 70, 0) !important
}

.\!border-r-emerald-800\/10 {
    border-right-color: rgba(6, 95, 70, .1) !important
}

.\!border-r-emerald-800\/100 {
    border-right-color: #065f46 !important
}

.\!border-r-emerald-800\/20 {
    border-right-color: rgba(6, 95, 70, .2) !important
}

.\!border-r-emerald-800\/25 {
    border-right-color: rgba(6, 95, 70, .25) !important
}

.\!border-r-emerald-800\/30 {
    border-right-color: rgba(6, 95, 70, .3) !important
}

.\!border-r-emerald-800\/40 {
    border-right-color: rgba(6, 95, 70, .4) !important
}

.\!border-r-emerald-800\/5 {
    border-right-color: rgba(6, 95, 70, .05) !important
}

.\!border-r-emerald-800\/50 {
    border-right-color: rgba(6, 95, 70, .5) !important
}

.\!border-r-emerald-800\/60 {
    border-right-color: rgba(6, 95, 70, .6) !important
}

.\!border-r-emerald-800\/70 {
    border-right-color: rgba(6, 95, 70, .7) !important
}

.\!border-r-emerald-800\/75 {
    border-right-color: rgba(6, 95, 70, .75) !important
}

.\!border-r-emerald-800\/80 {
    border-right-color: rgba(6, 95, 70, .8) !important
}

.\!border-r-emerald-800\/90 {
    border-right-color: rgba(6, 95, 70, .9) !important
}

.\!border-r-emerald-800\/95 {
    border-right-color: rgba(6, 95, 70, .95) !important
}

.\!border-r-green-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(220 252 231/var(--tw-border-opacity)) !important
}

.\!border-r-green-100\/0 {
    border-right-color: rgba(220, 252, 231, 0) !important
}

.\!border-r-green-100\/10 {
    border-right-color: rgba(220, 252, 231, .1) !important
}

.\!border-r-green-100\/100 {
    border-right-color: #dcfce7 !important
}

.\!border-r-green-100\/20 {
    border-right-color: rgba(220, 252, 231, .2) !important
}

.\!border-r-green-100\/25 {
    border-right-color: rgba(220, 252, 231, .25) !important
}

.\!border-r-green-100\/30 {
    border-right-color: rgba(220, 252, 231, .3) !important
}

.\!border-r-green-100\/40 {
    border-right-color: rgba(220, 252, 231, .4) !important
}

.\!border-r-green-100\/5 {
    border-right-color: rgba(220, 252, 231, .05) !important
}

.\!border-r-green-100\/50 {
    border-right-color: rgba(220, 252, 231, .5) !important
}

.\!border-r-green-100\/60 {
    border-right-color: rgba(220, 252, 231, .6) !important
}

.\!border-r-green-100\/70 {
    border-right-color: rgba(220, 252, 231, .7) !important
}

.\!border-r-green-100\/75 {
    border-right-color: rgba(220, 252, 231, .75) !important
}

.\!border-r-green-100\/80 {
    border-right-color: rgba(220, 252, 231, .8) !important
}

.\!border-r-green-100\/90 {
    border-right-color: rgba(220, 252, 231, .9) !important
}

.\!border-r-green-100\/95 {
    border-right-color: rgba(220, 252, 231, .95) !important
}

.\!border-r-green-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(187 247 208/var(--tw-border-opacity)) !important
}

.\!border-r-green-200\/0 {
    border-right-color: rgba(187, 247, 208, 0) !important
}

.\!border-r-green-200\/10 {
    border-right-color: rgba(187, 247, 208, .1) !important
}

.\!border-r-green-200\/100 {
    border-right-color: #bbf7d0 !important
}

.\!border-r-green-200\/20 {
    border-right-color: rgba(187, 247, 208, .2) !important
}

.\!border-r-green-200\/25 {
    border-right-color: rgba(187, 247, 208, .25) !important
}

.\!border-r-green-200\/30 {
    border-right-color: rgba(187, 247, 208, .3) !important
}

.\!border-r-green-200\/40 {
    border-right-color: rgba(187, 247, 208, .4) !important
}

.\!border-r-green-200\/5 {
    border-right-color: rgba(187, 247, 208, .05) !important
}

.\!border-r-green-200\/50 {
    border-right-color: rgba(187, 247, 208, .5) !important
}

.\!border-r-green-200\/60 {
    border-right-color: rgba(187, 247, 208, .6) !important
}

.\!border-r-green-200\/70 {
    border-right-color: rgba(187, 247, 208, .7) !important
}

.\!border-r-green-200\/75 {
    border-right-color: rgba(187, 247, 208, .75) !important
}

.\!border-r-green-200\/80 {
    border-right-color: rgba(187, 247, 208, .8) !important
}

.\!border-r-green-200\/90 {
    border-right-color: rgba(187, 247, 208, .9) !important
}

.\!border-r-green-200\/95 {
    border-right-color: rgba(187, 247, 208, .95) !important
}

.\!border-r-green-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(134 239 172/var(--tw-border-opacity)) !important
}

.\!border-r-green-300\/0 {
    border-right-color: rgba(134, 239, 172, 0) !important
}

.\!border-r-green-300\/10 {
    border-right-color: rgba(134, 239, 172, .1) !important
}

.\!border-r-green-300\/100 {
    border-right-color: #86efac !important
}

.\!border-r-green-300\/20 {
    border-right-color: rgba(134, 239, 172, .2) !important
}

.\!border-r-green-300\/25 {
    border-right-color: rgba(134, 239, 172, .25) !important
}

.\!border-r-green-300\/30 {
    border-right-color: rgba(134, 239, 172, .3) !important
}

.\!border-r-green-300\/40 {
    border-right-color: rgba(134, 239, 172, .4) !important
}

.\!border-r-green-300\/5 {
    border-right-color: rgba(134, 239, 172, .05) !important
}

.\!border-r-green-300\/50 {
    border-right-color: rgba(134, 239, 172, .5) !important
}

.\!border-r-green-300\/60 {
    border-right-color: rgba(134, 239, 172, .6) !important
}

.\!border-r-green-300\/70 {
    border-right-color: rgba(134, 239, 172, .7) !important
}

.\!border-r-green-300\/75 {
    border-right-color: rgba(134, 239, 172, .75) !important
}

.\!border-r-green-300\/80 {
    border-right-color: rgba(134, 239, 172, .8) !important
}

.\!border-r-green-300\/90 {
    border-right-color: rgba(134, 239, 172, .9) !important
}

.\!border-r-green-300\/95 {
    border-right-color: rgba(134, 239, 172, .95) !important
}

.\!border-r-green-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(74 222 128/var(--tw-border-opacity)) !important
}

.\!border-r-green-400\/0 {
    border-right-color: rgba(74, 222, 128, 0) !important
}

.\!border-r-green-400\/10 {
    border-right-color: rgba(74, 222, 128, .1) !important
}

.\!border-r-green-400\/100 {
    border-right-color: #4ade80 !important
}

.\!border-r-green-400\/20 {
    border-right-color: rgba(74, 222, 128, .2) !important
}

.\!border-r-green-400\/25 {
    border-right-color: rgba(74, 222, 128, .25) !important
}

.\!border-r-green-400\/30 {
    border-right-color: rgba(74, 222, 128, .3) !important
}

.\!border-r-green-400\/40 {
    border-right-color: rgba(74, 222, 128, .4) !important
}

.\!border-r-green-400\/5 {
    border-right-color: rgba(74, 222, 128, .05) !important
}

.\!border-r-green-400\/50 {
    border-right-color: rgba(74, 222, 128, .5) !important
}

.\!border-r-green-400\/60 {
    border-right-color: rgba(74, 222, 128, .6) !important
}

.\!border-r-green-400\/70 {
    border-right-color: rgba(74, 222, 128, .7) !important
}

.\!border-r-green-400\/75 {
    border-right-color: rgba(74, 222, 128, .75) !important
}

.\!border-r-green-400\/80 {
    border-right-color: rgba(74, 222, 128, .8) !important
}

.\!border-r-green-400\/90 {
    border-right-color: rgba(74, 222, 128, .9) !important
}

.\!border-r-green-400\/95 {
    border-right-color: rgba(74, 222, 128, .95) !important
}

.\!border-r-green-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(34 197 94/var(--tw-border-opacity)) !important
}

.\!border-r-green-500\/0 {
    border-right-color: rgba(34, 197, 94, 0) !important
}

.\!border-r-green-500\/10 {
    border-right-color: rgba(34, 197, 94, .1) !important
}

.\!border-r-green-500\/100 {
    border-right-color: #22c55e !important
}

.\!border-r-green-500\/20 {
    border-right-color: rgba(34, 197, 94, .2) !important
}

.\!border-r-green-500\/25 {
    border-right-color: rgba(34, 197, 94, .25) !important
}

.\!border-r-green-500\/30 {
    border-right-color: rgba(34, 197, 94, .3) !important
}

.\!border-r-green-500\/40 {
    border-right-color: rgba(34, 197, 94, .4) !important
}

.\!border-r-green-500\/5 {
    border-right-color: rgba(34, 197, 94, .05) !important
}

.\!border-r-green-500\/50 {
    border-right-color: rgba(34, 197, 94, .5) !important
}

.\!border-r-green-500\/60 {
    border-right-color: rgba(34, 197, 94, .6) !important
}

.\!border-r-green-500\/70 {
    border-right-color: rgba(34, 197, 94, .7) !important
}

.\!border-r-green-500\/75 {
    border-right-color: rgba(34, 197, 94, .75) !important
}

.\!border-r-green-500\/80 {
    border-right-color: rgba(34, 197, 94, .8) !important
}

.\!border-r-green-500\/90 {
    border-right-color: rgba(34, 197, 94, .9) !important
}

.\!border-r-green-500\/95 {
    border-right-color: rgba(34, 197, 94, .95) !important
}

.\!border-r-green-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(22 163 74/var(--tw-border-opacity)) !important
}

.\!border-r-green-600\/0 {
    border-right-color: rgba(22, 163, 74, 0) !important
}

.\!border-r-green-600\/10 {
    border-right-color: rgba(22, 163, 74, .1) !important
}

.\!border-r-green-600\/100 {
    border-right-color: #16a34a !important
}

.\!border-r-green-600\/20 {
    border-right-color: rgba(22, 163, 74, .2) !important
}

.\!border-r-green-600\/25 {
    border-right-color: rgba(22, 163, 74, .25) !important
}

.\!border-r-green-600\/30 {
    border-right-color: rgba(22, 163, 74, .3) !important
}

.\!border-r-green-600\/40 {
    border-right-color: rgba(22, 163, 74, .4) !important
}

.\!border-r-green-600\/5 {
    border-right-color: rgba(22, 163, 74, .05) !important
}

.\!border-r-green-600\/50 {
    border-right-color: rgba(22, 163, 74, .5) !important
}

.\!border-r-green-600\/60 {
    border-right-color: rgba(22, 163, 74, .6) !important
}

.\!border-r-green-600\/70 {
    border-right-color: rgba(22, 163, 74, .7) !important
}

.\!border-r-green-600\/75 {
    border-right-color: rgba(22, 163, 74, .75) !important
}

.\!border-r-green-600\/80 {
    border-right-color: rgba(22, 163, 74, .8) !important
}

.\!border-r-green-600\/90 {
    border-right-color: rgba(22, 163, 74, .9) !important
}

.\!border-r-green-600\/95 {
    border-right-color: rgba(22, 163, 74, .95) !important
}

.\!border-r-green-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(21 128 61/var(--tw-border-opacity)) !important
}

.\!border-r-green-700\/0 {
    border-right-color: rgba(21, 128, 61, 0) !important
}

.\!border-r-green-700\/10 {
    border-right-color: rgba(21, 128, 61, .1) !important
}

.\!border-r-green-700\/100 {
    border-right-color: #15803d !important
}

.\!border-r-green-700\/20 {
    border-right-color: rgba(21, 128, 61, .2) !important
}

.\!border-r-green-700\/25 {
    border-right-color: rgba(21, 128, 61, .25) !important
}

.\!border-r-green-700\/30 {
    border-right-color: rgba(21, 128, 61, .3) !important
}

.\!border-r-green-700\/40 {
    border-right-color: rgba(21, 128, 61, .4) !important
}

.\!border-r-green-700\/5 {
    border-right-color: rgba(21, 128, 61, .05) !important
}

.\!border-r-green-700\/50 {
    border-right-color: rgba(21, 128, 61, .5) !important
}

.\!border-r-green-700\/60 {
    border-right-color: rgba(21, 128, 61, .6) !important
}

.\!border-r-green-700\/70 {
    border-right-color: rgba(21, 128, 61, .7) !important
}

.\!border-r-green-700\/75 {
    border-right-color: rgba(21, 128, 61, .75) !important
}

.\!border-r-green-700\/80 {
    border-right-color: rgba(21, 128, 61, .8) !important
}

.\!border-r-green-700\/90 {
    border-right-color: rgba(21, 128, 61, .9) !important
}

.\!border-r-green-700\/95 {
    border-right-color: rgba(21, 128, 61, .95) !important
}

.\!border-r-green-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(22 101 52/var(--tw-border-opacity)) !important
}

.\!border-r-green-800\/0 {
    border-right-color: rgba(22, 101, 52, 0) !important
}

.\!border-r-green-800\/10 {
    border-right-color: rgba(22, 101, 52, .1) !important
}

.\!border-r-green-800\/100 {
    border-right-color: #166534 !important
}

.\!border-r-green-800\/20 {
    border-right-color: rgba(22, 101, 52, .2) !important
}

.\!border-r-green-800\/25 {
    border-right-color: rgba(22, 101, 52, .25) !important
}

.\!border-r-green-800\/30 {
    border-right-color: rgba(22, 101, 52, .3) !important
}

.\!border-r-green-800\/40 {
    border-right-color: rgba(22, 101, 52, .4) !important
}

.\!border-r-green-800\/5 {
    border-right-color: rgba(22, 101, 52, .05) !important
}

.\!border-r-green-800\/50 {
    border-right-color: rgba(22, 101, 52, .5) !important
}

.\!border-r-green-800\/60 {
    border-right-color: rgba(22, 101, 52, .6) !important
}

.\!border-r-green-800\/70 {
    border-right-color: rgba(22, 101, 52, .7) !important
}

.\!border-r-green-800\/75 {
    border-right-color: rgba(22, 101, 52, .75) !important
}

.\!border-r-green-800\/80 {
    border-right-color: rgba(22, 101, 52, .8) !important
}

.\!border-r-green-800\/90 {
    border-right-color: rgba(22, 101, 52, .9) !important
}

.\!border-r-green-800\/95 {
    border-right-color: rgba(22, 101, 52, .95) !important
}

.\!border-r-lime-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(236 252 203/var(--tw-border-opacity)) !important
}

.\!border-r-lime-100\/0 {
    border-right-color: hsla(80, 89%, 89%, 0) !important
}

.\!border-r-lime-100\/10 {
    border-right-color: hsla(80, 89%, 89%, .1) !important
}

.\!border-r-lime-100\/100 {
    border-right-color: #ecfccb !important
}

.\!border-r-lime-100\/20 {
    border-right-color: hsla(80, 89%, 89%, .2) !important
}

.\!border-r-lime-100\/25 {
    border-right-color: hsla(80, 89%, 89%, .25) !important
}

.\!border-r-lime-100\/30 {
    border-right-color: hsla(80, 89%, 89%, .3) !important
}

.\!border-r-lime-100\/40 {
    border-right-color: hsla(80, 89%, 89%, .4) !important
}

.\!border-r-lime-100\/5 {
    border-right-color: hsla(80, 89%, 89%, .05) !important
}

.\!border-r-lime-100\/50 {
    border-right-color: hsla(80, 89%, 89%, .5) !important
}

.\!border-r-lime-100\/60 {
    border-right-color: hsla(80, 89%, 89%, .6) !important
}

.\!border-r-lime-100\/70 {
    border-right-color: hsla(80, 89%, 89%, .7) !important
}

.\!border-r-lime-100\/75 {
    border-right-color: hsla(80, 89%, 89%, .75) !important
}

.\!border-r-lime-100\/80 {
    border-right-color: hsla(80, 89%, 89%, .8) !important
}

.\!border-r-lime-100\/90 {
    border-right-color: hsla(80, 89%, 89%, .9) !important
}

.\!border-r-lime-100\/95 {
    border-right-color: hsla(80, 89%, 89%, .95) !important
}

.\!border-r-lime-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(217 249 157/var(--tw-border-opacity)) !important
}

.\!border-r-lime-200\/0 {
    border-right-color: hsla(81, 88%, 80%, 0) !important
}

.\!border-r-lime-200\/10 {
    border-right-color: hsla(81, 88%, 80%, .1) !important
}

.\!border-r-lime-200\/100 {
    border-right-color: #d9f99d !important
}

.\!border-r-lime-200\/20 {
    border-right-color: hsla(81, 88%, 80%, .2) !important
}

.\!border-r-lime-200\/25 {
    border-right-color: hsla(81, 88%, 80%, .25) !important
}

.\!border-r-lime-200\/30 {
    border-right-color: hsla(81, 88%, 80%, .3) !important
}

.\!border-r-lime-200\/40 {
    border-right-color: hsla(81, 88%, 80%, .4) !important
}

.\!border-r-lime-200\/5 {
    border-right-color: hsla(81, 88%, 80%, .05) !important
}

.\!border-r-lime-200\/50 {
    border-right-color: hsla(81, 88%, 80%, .5) !important
}

.\!border-r-lime-200\/60 {
    border-right-color: hsla(81, 88%, 80%, .6) !important
}

.\!border-r-lime-200\/70 {
    border-right-color: hsla(81, 88%, 80%, .7) !important
}

.\!border-r-lime-200\/75 {
    border-right-color: hsla(81, 88%, 80%, .75) !important
}

.\!border-r-lime-200\/80 {
    border-right-color: hsla(81, 88%, 80%, .8) !important
}

.\!border-r-lime-200\/90 {
    border-right-color: hsla(81, 88%, 80%, .9) !important
}

.\!border-r-lime-200\/95 {
    border-right-color: hsla(81, 88%, 80%, .95) !important
}

.\!border-r-lime-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(190 242 100/var(--tw-border-opacity)) !important
}

.\!border-r-lime-300\/0 {
    border-right-color: hsla(82, 85%, 67%, 0) !important
}

.\!border-r-lime-300\/10 {
    border-right-color: hsla(82, 85%, 67%, .1) !important
}

.\!border-r-lime-300\/100 {
    border-right-color: #bef264 !important
}

.\!border-r-lime-300\/20 {
    border-right-color: hsla(82, 85%, 67%, .2) !important
}

.\!border-r-lime-300\/25 {
    border-right-color: hsla(82, 85%, 67%, .25) !important
}

.\!border-r-lime-300\/30 {
    border-right-color: hsla(82, 85%, 67%, .3) !important
}

.\!border-r-lime-300\/40 {
    border-right-color: hsla(82, 85%, 67%, .4) !important
}

.\!border-r-lime-300\/5 {
    border-right-color: hsla(82, 85%, 67%, .05) !important
}

.\!border-r-lime-300\/50 {
    border-right-color: hsla(82, 85%, 67%, .5) !important
}

.\!border-r-lime-300\/60 {
    border-right-color: hsla(82, 85%, 67%, .6) !important
}

.\!border-r-lime-300\/70 {
    border-right-color: hsla(82, 85%, 67%, .7) !important
}

.\!border-r-lime-300\/75 {
    border-right-color: hsla(82, 85%, 67%, .75) !important
}

.\!border-r-lime-300\/80 {
    border-right-color: hsla(82, 85%, 67%, .8) !important
}

.\!border-r-lime-300\/90 {
    border-right-color: hsla(82, 85%, 67%, .9) !important
}

.\!border-r-lime-300\/95 {
    border-right-color: hsla(82, 85%, 67%, .95) !important
}

.\!border-r-lime-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(163 230 53/var(--tw-border-opacity)) !important
}

.\!border-r-lime-400\/0 {
    border-right-color: rgba(163, 230, 53, 0) !important
}

.\!border-r-lime-400\/10 {
    border-right-color: rgba(163, 230, 53, .1) !important
}

.\!border-r-lime-400\/100 {
    border-right-color: #a3e635 !important
}

.\!border-r-lime-400\/20 {
    border-right-color: rgba(163, 230, 53, .2) !important
}

.\!border-r-lime-400\/25 {
    border-right-color: rgba(163, 230, 53, .25) !important
}

.\!border-r-lime-400\/30 {
    border-right-color: rgba(163, 230, 53, .3) !important
}

.\!border-r-lime-400\/40 {
    border-right-color: rgba(163, 230, 53, .4) !important
}

.\!border-r-lime-400\/5 {
    border-right-color: rgba(163, 230, 53, .05) !important
}

.\!border-r-lime-400\/50 {
    border-right-color: rgba(163, 230, 53, .5) !important
}

.\!border-r-lime-400\/60 {
    border-right-color: rgba(163, 230, 53, .6) !important
}

.\!border-r-lime-400\/70 {
    border-right-color: rgba(163, 230, 53, .7) !important
}

.\!border-r-lime-400\/75 {
    border-right-color: rgba(163, 230, 53, .75) !important
}

.\!border-r-lime-400\/80 {
    border-right-color: rgba(163, 230, 53, .8) !important
}

.\!border-r-lime-400\/90 {
    border-right-color: rgba(163, 230, 53, .9) !important
}

.\!border-r-lime-400\/95 {
    border-right-color: rgba(163, 230, 53, .95) !important
}

.\!border-r-lime-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(132 204 22/var(--tw-border-opacity)) !important
}

.\!border-r-lime-500\/0 {
    border-right-color: rgba(132, 204, 22, 0) !important
}

.\!border-r-lime-500\/10 {
    border-right-color: rgba(132, 204, 22, .1) !important
}

.\!border-r-lime-500\/100 {
    border-right-color: #84cc16 !important
}

.\!border-r-lime-500\/20 {
    border-right-color: rgba(132, 204, 22, .2) !important
}

.\!border-r-lime-500\/25 {
    border-right-color: rgba(132, 204, 22, .25) !important
}

.\!border-r-lime-500\/30 {
    border-right-color: rgba(132, 204, 22, .3) !important
}

.\!border-r-lime-500\/40 {
    border-right-color: rgba(132, 204, 22, .4) !important
}

.\!border-r-lime-500\/5 {
    border-right-color: rgba(132, 204, 22, .05) !important
}

.\!border-r-lime-500\/50 {
    border-right-color: rgba(132, 204, 22, .5) !important
}

.\!border-r-lime-500\/60 {
    border-right-color: rgba(132, 204, 22, .6) !important
}

.\!border-r-lime-500\/70 {
    border-right-color: rgba(132, 204, 22, .7) !important
}

.\!border-r-lime-500\/75 {
    border-right-color: rgba(132, 204, 22, .75) !important
}

.\!border-r-lime-500\/80 {
    border-right-color: rgba(132, 204, 22, .8) !important
}

.\!border-r-lime-500\/90 {
    border-right-color: rgba(132, 204, 22, .9) !important
}

.\!border-r-lime-500\/95 {
    border-right-color: rgba(132, 204, 22, .95) !important
}

.\!border-r-lime-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(101 163 13/var(--tw-border-opacity)) !important
}

.\!border-r-lime-600\/0 {
    border-right-color: rgba(101, 163, 13, 0) !important
}

.\!border-r-lime-600\/10 {
    border-right-color: rgba(101, 163, 13, .1) !important
}

.\!border-r-lime-600\/100 {
    border-right-color: #65a30d !important
}

.\!border-r-lime-600\/20 {
    border-right-color: rgba(101, 163, 13, .2) !important
}

.\!border-r-lime-600\/25 {
    border-right-color: rgba(101, 163, 13, .25) !important
}

.\!border-r-lime-600\/30 {
    border-right-color: rgba(101, 163, 13, .3) !important
}

.\!border-r-lime-600\/40 {
    border-right-color: rgba(101, 163, 13, .4) !important
}

.\!border-r-lime-600\/5 {
    border-right-color: rgba(101, 163, 13, .05) !important
}

.\!border-r-lime-600\/50 {
    border-right-color: rgba(101, 163, 13, .5) !important
}

.\!border-r-lime-600\/60 {
    border-right-color: rgba(101, 163, 13, .6) !important
}

.\!border-r-lime-600\/70 {
    border-right-color: rgba(101, 163, 13, .7) !important
}

.\!border-r-lime-600\/75 {
    border-right-color: rgba(101, 163, 13, .75) !important
}

.\!border-r-lime-600\/80 {
    border-right-color: rgba(101, 163, 13, .8) !important
}

.\!border-r-lime-600\/90 {
    border-right-color: rgba(101, 163, 13, .9) !important
}

.\!border-r-lime-600\/95 {
    border-right-color: rgba(101, 163, 13, .95) !important
}

.\!border-r-lime-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(77 124 15/var(--tw-border-opacity)) !important
}

.\!border-r-lime-700\/0 {
    border-right-color: rgba(77, 124, 15, 0) !important
}

.\!border-r-lime-700\/10 {
    border-right-color: rgba(77, 124, 15, .1) !important
}

.\!border-r-lime-700\/100 {
    border-right-color: #4d7c0f !important
}

.\!border-r-lime-700\/20 {
    border-right-color: rgba(77, 124, 15, .2) !important
}

.\!border-r-lime-700\/25 {
    border-right-color: rgba(77, 124, 15, .25) !important
}

.\!border-r-lime-700\/30 {
    border-right-color: rgba(77, 124, 15, .3) !important
}

.\!border-r-lime-700\/40 {
    border-right-color: rgba(77, 124, 15, .4) !important
}

.\!border-r-lime-700\/5 {
    border-right-color: rgba(77, 124, 15, .05) !important
}

.\!border-r-lime-700\/50 {
    border-right-color: rgba(77, 124, 15, .5) !important
}

.\!border-r-lime-700\/60 {
    border-right-color: rgba(77, 124, 15, .6) !important
}

.\!border-r-lime-700\/70 {
    border-right-color: rgba(77, 124, 15, .7) !important
}

.\!border-r-lime-700\/75 {
    border-right-color: rgba(77, 124, 15, .75) !important
}

.\!border-r-lime-700\/80 {
    border-right-color: rgba(77, 124, 15, .8) !important
}

.\!border-r-lime-700\/90 {
    border-right-color: rgba(77, 124, 15, .9) !important
}

.\!border-r-lime-700\/95 {
    border-right-color: rgba(77, 124, 15, .95) !important
}

.\!border-r-lime-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(63 98 18/var(--tw-border-opacity)) !important
}

.\!border-r-lime-800\/0 {
    border-right-color: rgba(63, 98, 18, 0) !important
}

.\!border-r-lime-800\/10 {
    border-right-color: rgba(63, 98, 18, .1) !important
}

.\!border-r-lime-800\/100 {
    border-right-color: #3f6212 !important
}

.\!border-r-lime-800\/20 {
    border-right-color: rgba(63, 98, 18, .2) !important
}

.\!border-r-lime-800\/25 {
    border-right-color: rgba(63, 98, 18, .25) !important
}

.\!border-r-lime-800\/30 {
    border-right-color: rgba(63, 98, 18, .3) !important
}

.\!border-r-lime-800\/40 {
    border-right-color: rgba(63, 98, 18, .4) !important
}

.\!border-r-lime-800\/5 {
    border-right-color: rgba(63, 98, 18, .05) !important
}

.\!border-r-lime-800\/50 {
    border-right-color: rgba(63, 98, 18, .5) !important
}

.\!border-r-lime-800\/60 {
    border-right-color: rgba(63, 98, 18, .6) !important
}

.\!border-r-lime-800\/70 {
    border-right-color: rgba(63, 98, 18, .7) !important
}

.\!border-r-lime-800\/75 {
    border-right-color: rgba(63, 98, 18, .75) !important
}

.\!border-r-lime-800\/80 {
    border-right-color: rgba(63, 98, 18, .8) !important
}

.\!border-r-lime-800\/90 {
    border-right-color: rgba(63, 98, 18, .9) !important
}

.\!border-r-lime-800\/95 {
    border-right-color: rgba(63, 98, 18, .95) !important
}

.\!border-r-orange-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(255 237 213/var(--tw-border-opacity)) !important
}

.\!border-r-orange-100\/0 {
    border-right-color: rgba(255, 237, 213, 0) !important
}

.\!border-r-orange-100\/10 {
    border-right-color: rgba(255, 237, 213, .1) !important
}

.\!border-r-orange-100\/100 {
    border-right-color: #ffedd5 !important
}

.\!border-r-orange-100\/20 {
    border-right-color: rgba(255, 237, 213, .2) !important
}

.\!border-r-orange-100\/25 {
    border-right-color: rgba(255, 237, 213, .25) !important
}

.\!border-r-orange-100\/30 {
    border-right-color: rgba(255, 237, 213, .3) !important
}

.\!border-r-orange-100\/40 {
    border-right-color: rgba(255, 237, 213, .4) !important
}

.\!border-r-orange-100\/5 {
    border-right-color: rgba(255, 237, 213, .05) !important
}

.\!border-r-orange-100\/50 {
    border-right-color: rgba(255, 237, 213, .5) !important
}

.\!border-r-orange-100\/60 {
    border-right-color: rgba(255, 237, 213, .6) !important
}

.\!border-r-orange-100\/70 {
    border-right-color: rgba(255, 237, 213, .7) !important
}

.\!border-r-orange-100\/75 {
    border-right-color: rgba(255, 237, 213, .75) !important
}

.\!border-r-orange-100\/80 {
    border-right-color: rgba(255, 237, 213, .8) !important
}

.\!border-r-orange-100\/90 {
    border-right-color: rgba(255, 237, 213, .9) !important
}

.\!border-r-orange-100\/95 {
    border-right-color: rgba(255, 237, 213, .95) !important
}

.\!border-r-orange-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(254 215 170/var(--tw-border-opacity)) !important
}

.\!border-r-orange-200\/0 {
    border-right-color: hsla(32, 98%, 83%, 0) !important
}

.\!border-r-orange-200\/10 {
    border-right-color: hsla(32, 98%, 83%, .1) !important
}

.\!border-r-orange-200\/100 {
    border-right-color: #fed7aa !important
}

.\!border-r-orange-200\/20 {
    border-right-color: hsla(32, 98%, 83%, .2) !important
}

.\!border-r-orange-200\/25 {
    border-right-color: hsla(32, 98%, 83%, .25) !important
}

.\!border-r-orange-200\/30 {
    border-right-color: hsla(32, 98%, 83%, .3) !important
}

.\!border-r-orange-200\/40 {
    border-right-color: hsla(32, 98%, 83%, .4) !important
}

.\!border-r-orange-200\/5 {
    border-right-color: hsla(32, 98%, 83%, .05) !important
}

.\!border-r-orange-200\/50 {
    border-right-color: hsla(32, 98%, 83%, .5) !important
}

.\!border-r-orange-200\/60 {
    border-right-color: hsla(32, 98%, 83%, .6) !important
}

.\!border-r-orange-200\/70 {
    border-right-color: hsla(32, 98%, 83%, .7) !important
}

.\!border-r-orange-200\/75 {
    border-right-color: hsla(32, 98%, 83%, .75) !important
}

.\!border-r-orange-200\/80 {
    border-right-color: hsla(32, 98%, 83%, .8) !important
}

.\!border-r-orange-200\/90 {
    border-right-color: hsla(32, 98%, 83%, .9) !important
}

.\!border-r-orange-200\/95 {
    border-right-color: hsla(32, 98%, 83%, .95) !important
}

.\!border-r-orange-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(253 186 116/var(--tw-border-opacity)) !important
}

.\!border-r-orange-300\/0 {
    border-right-color: hsla(31, 97%, 72%, 0) !important
}

.\!border-r-orange-300\/10 {
    border-right-color: hsla(31, 97%, 72%, .1) !important
}

.\!border-r-orange-300\/100 {
    border-right-color: #fdba74 !important
}

.\!border-r-orange-300\/20 {
    border-right-color: hsla(31, 97%, 72%, .2) !important
}

.\!border-r-orange-300\/25 {
    border-right-color: hsla(31, 97%, 72%, .25) !important
}

.\!border-r-orange-300\/30 {
    border-right-color: hsla(31, 97%, 72%, .3) !important
}

.\!border-r-orange-300\/40 {
    border-right-color: hsla(31, 97%, 72%, .4) !important
}

.\!border-r-orange-300\/5 {
    border-right-color: hsla(31, 97%, 72%, .05) !important
}

.\!border-r-orange-300\/50 {
    border-right-color: hsla(31, 97%, 72%, .5) !important
}

.\!border-r-orange-300\/60 {
    border-right-color: hsla(31, 97%, 72%, .6) !important
}

.\!border-r-orange-300\/70 {
    border-right-color: hsla(31, 97%, 72%, .7) !important
}

.\!border-r-orange-300\/75 {
    border-right-color: hsla(31, 97%, 72%, .75) !important
}

.\!border-r-orange-300\/80 {
    border-right-color: hsla(31, 97%, 72%, .8) !important
}

.\!border-r-orange-300\/90 {
    border-right-color: hsla(31, 97%, 72%, .9) !important
}

.\!border-r-orange-300\/95 {
    border-right-color: hsla(31, 97%, 72%, .95) !important
}

.\!border-r-orange-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(251 146 60/var(--tw-border-opacity)) !important
}

.\!border-r-orange-400\/0 {
    border-right-color: rgba(251, 146, 60, 0) !important
}

.\!border-r-orange-400\/10 {
    border-right-color: rgba(251, 146, 60, .1) !important
}

.\!border-r-orange-400\/100 {
    border-right-color: #fb923c !important
}

.\!border-r-orange-400\/20 {
    border-right-color: rgba(251, 146, 60, .2) !important
}

.\!border-r-orange-400\/25 {
    border-right-color: rgba(251, 146, 60, .25) !important
}

.\!border-r-orange-400\/30 {
    border-right-color: rgba(251, 146, 60, .3) !important
}

.\!border-r-orange-400\/40 {
    border-right-color: rgba(251, 146, 60, .4) !important
}

.\!border-r-orange-400\/5 {
    border-right-color: rgba(251, 146, 60, .05) !important
}

.\!border-r-orange-400\/50 {
    border-right-color: rgba(251, 146, 60, .5) !important
}

.\!border-r-orange-400\/60 {
    border-right-color: rgba(251, 146, 60, .6) !important
}

.\!border-r-orange-400\/70 {
    border-right-color: rgba(251, 146, 60, .7) !important
}

.\!border-r-orange-400\/75 {
    border-right-color: rgba(251, 146, 60, .75) !important
}

.\!border-r-orange-400\/80 {
    border-right-color: rgba(251, 146, 60, .8) !important
}

.\!border-r-orange-400\/90 {
    border-right-color: rgba(251, 146, 60, .9) !important
}

.\!border-r-orange-400\/95 {
    border-right-color: rgba(251, 146, 60, .95) !important
}

.\!border-r-orange-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(249 115 22/var(--tw-border-opacity)) !important
}

.\!border-r-orange-500\/0 {
    border-right-color: rgba(249, 115, 22, 0) !important
}

.\!border-r-orange-500\/10 {
    border-right-color: rgba(249, 115, 22, .1) !important
}

.\!border-r-orange-500\/100 {
    border-right-color: #f97316 !important
}

.\!border-r-orange-500\/20 {
    border-right-color: rgba(249, 115, 22, .2) !important
}

.\!border-r-orange-500\/25 {
    border-right-color: rgba(249, 115, 22, .25) !important
}

.\!border-r-orange-500\/30 {
    border-right-color: rgba(249, 115, 22, .3) !important
}

.\!border-r-orange-500\/40 {
    border-right-color: rgba(249, 115, 22, .4) !important
}

.\!border-r-orange-500\/5 {
    border-right-color: rgba(249, 115, 22, .05) !important
}

.\!border-r-orange-500\/50 {
    border-right-color: rgba(249, 115, 22, .5) !important
}

.\!border-r-orange-500\/60 {
    border-right-color: rgba(249, 115, 22, .6) !important
}

.\!border-r-orange-500\/70 {
    border-right-color: rgba(249, 115, 22, .7) !important
}

.\!border-r-orange-500\/75 {
    border-right-color: rgba(249, 115, 22, .75) !important
}

.\!border-r-orange-500\/80 {
    border-right-color: rgba(249, 115, 22, .8) !important
}

.\!border-r-orange-500\/90 {
    border-right-color: rgba(249, 115, 22, .9) !important
}

.\!border-r-orange-500\/95 {
    border-right-color: rgba(249, 115, 22, .95) !important
}

.\!border-r-orange-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(234 88 12/var(--tw-border-opacity)) !important
}

.\!border-r-orange-600\/0 {
    border-right-color: rgba(234, 88, 12, 0) !important
}

.\!border-r-orange-600\/10 {
    border-right-color: rgba(234, 88, 12, .1) !important
}

.\!border-r-orange-600\/100 {
    border-right-color: #ea580c !important
}

.\!border-r-orange-600\/20 {
    border-right-color: rgba(234, 88, 12, .2) !important
}

.\!border-r-orange-600\/25 {
    border-right-color: rgba(234, 88, 12, .25) !important
}

.\!border-r-orange-600\/30 {
    border-right-color: rgba(234, 88, 12, .3) !important
}

.\!border-r-orange-600\/40 {
    border-right-color: rgba(234, 88, 12, .4) !important
}

.\!border-r-orange-600\/5 {
    border-right-color: rgba(234, 88, 12, .05) !important
}

.\!border-r-orange-600\/50 {
    border-right-color: rgba(234, 88, 12, .5) !important
}

.\!border-r-orange-600\/60 {
    border-right-color: rgba(234, 88, 12, .6) !important
}

.\!border-r-orange-600\/70 {
    border-right-color: rgba(234, 88, 12, .7) !important
}

.\!border-r-orange-600\/75 {
    border-right-color: rgba(234, 88, 12, .75) !important
}

.\!border-r-orange-600\/80 {
    border-right-color: rgba(234, 88, 12, .8) !important
}

.\!border-r-orange-600\/90 {
    border-right-color: rgba(234, 88, 12, .9) !important
}

.\!border-r-orange-600\/95 {
    border-right-color: rgba(234, 88, 12, .95) !important
}

.\!border-r-orange-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(194 65 12/var(--tw-border-opacity)) !important
}

.\!border-r-orange-700\/0 {
    border-right-color: rgba(194, 65, 12, 0) !important
}

.\!border-r-orange-700\/10 {
    border-right-color: rgba(194, 65, 12, .1) !important
}

.\!border-r-orange-700\/100 {
    border-right-color: #c2410c !important
}

.\!border-r-orange-700\/20 {
    border-right-color: rgba(194, 65, 12, .2) !important
}

.\!border-r-orange-700\/25 {
    border-right-color: rgba(194, 65, 12, .25) !important
}

.\!border-r-orange-700\/30 {
    border-right-color: rgba(194, 65, 12, .3) !important
}

.\!border-r-orange-700\/40 {
    border-right-color: rgba(194, 65, 12, .4) !important
}

.\!border-r-orange-700\/5 {
    border-right-color: rgba(194, 65, 12, .05) !important
}

.\!border-r-orange-700\/50 {
    border-right-color: rgba(194, 65, 12, .5) !important
}

.\!border-r-orange-700\/60 {
    border-right-color: rgba(194, 65, 12, .6) !important
}

.\!border-r-orange-700\/70 {
    border-right-color: rgba(194, 65, 12, .7) !important
}

.\!border-r-orange-700\/75 {
    border-right-color: rgba(194, 65, 12, .75) !important
}

.\!border-r-orange-700\/80 {
    border-right-color: rgba(194, 65, 12, .8) !important
}

.\!border-r-orange-700\/90 {
    border-right-color: rgba(194, 65, 12, .9) !important
}

.\!border-r-orange-700\/95 {
    border-right-color: rgba(194, 65, 12, .95) !important
}

.\!border-r-orange-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(154 52 18/var(--tw-border-opacity)) !important
}

.\!border-r-orange-800\/0 {
    border-right-color: rgba(154, 52, 18, 0) !important
}

.\!border-r-orange-800\/10 {
    border-right-color: rgba(154, 52, 18, .1) !important
}

.\!border-r-orange-800\/100 {
    border-right-color: #9a3412 !important
}

.\!border-r-orange-800\/20 {
    border-right-color: rgba(154, 52, 18, .2) !important
}

.\!border-r-orange-800\/25 {
    border-right-color: rgba(154, 52, 18, .25) !important
}

.\!border-r-orange-800\/30 {
    border-right-color: rgba(154, 52, 18, .3) !important
}

.\!border-r-orange-800\/40 {
    border-right-color: rgba(154, 52, 18, .4) !important
}

.\!border-r-orange-800\/5 {
    border-right-color: rgba(154, 52, 18, .05) !important
}

.\!border-r-orange-800\/50 {
    border-right-color: rgba(154, 52, 18, .5) !important
}

.\!border-r-orange-800\/60 {
    border-right-color: rgba(154, 52, 18, .6) !important
}

.\!border-r-orange-800\/70 {
    border-right-color: rgba(154, 52, 18, .7) !important
}

.\!border-r-orange-800\/75 {
    border-right-color: rgba(154, 52, 18, .75) !important
}

.\!border-r-orange-800\/80 {
    border-right-color: rgba(154, 52, 18, .8) !important
}

.\!border-r-orange-800\/90 {
    border-right-color: rgba(154, 52, 18, .9) !important
}

.\!border-r-orange-800\/95 {
    border-right-color: rgba(154, 52, 18, .95) !important
}

.\!border-r-red-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(254 226 226/var(--tw-border-opacity)) !important
}

.\!border-r-red-100\/0 {
    border-right-color: hsla(0, 93%, 94%, 0) !important
}

.\!border-r-red-100\/10 {
    border-right-color: hsla(0, 93%, 94%, .1) !important
}

.\!border-r-red-100\/100 {
    border-right-color: #fee2e2 !important
}

.\!border-r-red-100\/20 {
    border-right-color: hsla(0, 93%, 94%, .2) !important
}

.\!border-r-red-100\/25 {
    border-right-color: hsla(0, 93%, 94%, .25) !important
}

.\!border-r-red-100\/30 {
    border-right-color: hsla(0, 93%, 94%, .3) !important
}

.\!border-r-red-100\/40 {
    border-right-color: hsla(0, 93%, 94%, .4) !important
}

.\!border-r-red-100\/5 {
    border-right-color: hsla(0, 93%, 94%, .05) !important
}

.\!border-r-red-100\/50 {
    border-right-color: hsla(0, 93%, 94%, .5) !important
}

.\!border-r-red-100\/60 {
    border-right-color: hsla(0, 93%, 94%, .6) !important
}

.\!border-r-red-100\/70 {
    border-right-color: hsla(0, 93%, 94%, .7) !important
}

.\!border-r-red-100\/75 {
    border-right-color: hsla(0, 93%, 94%, .75) !important
}

.\!border-r-red-100\/80 {
    border-right-color: hsla(0, 93%, 94%, .8) !important
}

.\!border-r-red-100\/90 {
    border-right-color: hsla(0, 93%, 94%, .9) !important
}

.\!border-r-red-100\/95 {
    border-right-color: hsla(0, 93%, 94%, .95) !important
}

.\!border-r-red-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(254 202 202/var(--tw-border-opacity)) !important
}

.\!border-r-red-200\/0 {
    border-right-color: hsla(0, 96%, 89%, 0) !important
}

.\!border-r-red-200\/10 {
    border-right-color: hsla(0, 96%, 89%, .1) !important
}

.\!border-r-red-200\/100 {
    border-right-color: #fecaca !important
}

.\!border-r-red-200\/20 {
    border-right-color: hsla(0, 96%, 89%, .2) !important
}

.\!border-r-red-200\/25 {
    border-right-color: hsla(0, 96%, 89%, .25) !important
}

.\!border-r-red-200\/30 {
    border-right-color: hsla(0, 96%, 89%, .3) !important
}

.\!border-r-red-200\/40 {
    border-right-color: hsla(0, 96%, 89%, .4) !important
}

.\!border-r-red-200\/5 {
    border-right-color: hsla(0, 96%, 89%, .05) !important
}

.\!border-r-red-200\/50 {
    border-right-color: hsla(0, 96%, 89%, .5) !important
}

.\!border-r-red-200\/60 {
    border-right-color: hsla(0, 96%, 89%, .6) !important
}

.\!border-r-red-200\/70 {
    border-right-color: hsla(0, 96%, 89%, .7) !important
}

.\!border-r-red-200\/75 {
    border-right-color: hsla(0, 96%, 89%, .75) !important
}

.\!border-r-red-200\/80 {
    border-right-color: hsla(0, 96%, 89%, .8) !important
}

.\!border-r-red-200\/90 {
    border-right-color: hsla(0, 96%, 89%, .9) !important
}

.\!border-r-red-200\/95 {
    border-right-color: hsla(0, 96%, 89%, .95) !important
}

.\!border-r-red-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(252 165 165/var(--tw-border-opacity)) !important
}

.\!border-r-red-300\/0 {
    border-right-color: hsla(0, 94%, 82%, 0) !important
}

.\!border-r-red-300\/10 {
    border-right-color: hsla(0, 94%, 82%, .1) !important
}

.\!border-r-red-300\/100 {
    border-right-color: #fca5a5 !important
}

.\!border-r-red-300\/20 {
    border-right-color: hsla(0, 94%, 82%, .2) !important
}

.\!border-r-red-300\/25 {
    border-right-color: hsla(0, 94%, 82%, .25) !important
}

.\!border-r-red-300\/30 {
    border-right-color: hsla(0, 94%, 82%, .3) !important
}

.\!border-r-red-300\/40 {
    border-right-color: hsla(0, 94%, 82%, .4) !important
}

.\!border-r-red-300\/5 {
    border-right-color: hsla(0, 94%, 82%, .05) !important
}

.\!border-r-red-300\/50 {
    border-right-color: hsla(0, 94%, 82%, .5) !important
}

.\!border-r-red-300\/60 {
    border-right-color: hsla(0, 94%, 82%, .6) !important
}

.\!border-r-red-300\/70 {
    border-right-color: hsla(0, 94%, 82%, .7) !important
}

.\!border-r-red-300\/75 {
    border-right-color: hsla(0, 94%, 82%, .75) !important
}

.\!border-r-red-300\/80 {
    border-right-color: hsla(0, 94%, 82%, .8) !important
}

.\!border-r-red-300\/90 {
    border-right-color: hsla(0, 94%, 82%, .9) !important
}

.\!border-r-red-300\/95 {
    border-right-color: hsla(0, 94%, 82%, .95) !important
}

.\!border-r-red-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(248 113 113/var(--tw-border-opacity)) !important
}

.\!border-r-red-400\/0 {
    border-right-color: hsla(0, 91%, 71%, 0) !important
}

.\!border-r-red-400\/10 {
    border-right-color: hsla(0, 91%, 71%, .1) !important
}

.\!border-r-red-400\/100 {
    border-right-color: #f87171 !important
}

.\!border-r-red-400\/20 {
    border-right-color: hsla(0, 91%, 71%, .2) !important
}

.\!border-r-red-400\/25 {
    border-right-color: hsla(0, 91%, 71%, .25) !important
}

.\!border-r-red-400\/30 {
    border-right-color: hsla(0, 91%, 71%, .3) !important
}

.\!border-r-red-400\/40 {
    border-right-color: hsla(0, 91%, 71%, .4) !important
}

.\!border-r-red-400\/5 {
    border-right-color: hsla(0, 91%, 71%, .05) !important
}

.\!border-r-red-400\/50 {
    border-right-color: hsla(0, 91%, 71%, .5) !important
}

.\!border-r-red-400\/60 {
    border-right-color: hsla(0, 91%, 71%, .6) !important
}

.\!border-r-red-400\/70 {
    border-right-color: hsla(0, 91%, 71%, .7) !important
}

.\!border-r-red-400\/75 {
    border-right-color: hsla(0, 91%, 71%, .75) !important
}

.\!border-r-red-400\/80 {
    border-right-color: hsla(0, 91%, 71%, .8) !important
}

.\!border-r-red-400\/90 {
    border-right-color: hsla(0, 91%, 71%, .9) !important
}

.\!border-r-red-400\/95 {
    border-right-color: hsla(0, 91%, 71%, .95) !important
}

.\!border-r-red-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(239 68 68/var(--tw-border-opacity)) !important
}

.\!border-r-red-500\/0 {
    border-right-color: rgba(239, 68, 68, 0) !important
}

.\!border-r-red-500\/10 {
    border-right-color: rgba(239, 68, 68, .1) !important
}

.\!border-r-red-500\/100 {
    border-right-color: #ef4444 !important
}

.\!border-r-red-500\/20 {
    border-right-color: rgba(239, 68, 68, .2) !important
}

.\!border-r-red-500\/25 {
    border-right-color: rgba(239, 68, 68, .25) !important
}

.\!border-r-red-500\/30 {
    border-right-color: rgba(239, 68, 68, .3) !important
}

.\!border-r-red-500\/40 {
    border-right-color: rgba(239, 68, 68, .4) !important
}

.\!border-r-red-500\/5 {
    border-right-color: rgba(239, 68, 68, .05) !important
}

.\!border-r-red-500\/50 {
    border-right-color: rgba(239, 68, 68, .5) !important
}

.\!border-r-red-500\/60 {
    border-right-color: rgba(239, 68, 68, .6) !important
}

.\!border-r-red-500\/70 {
    border-right-color: rgba(239, 68, 68, .7) !important
}

.\!border-r-red-500\/75 {
    border-right-color: rgba(239, 68, 68, .75) !important
}

.\!border-r-red-500\/80 {
    border-right-color: rgba(239, 68, 68, .8) !important
}

.\!border-r-red-500\/90 {
    border-right-color: rgba(239, 68, 68, .9) !important
}

.\!border-r-red-500\/95 {
    border-right-color: rgba(239, 68, 68, .95) !important
}

.\!border-r-red-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(220 38 38/var(--tw-border-opacity)) !important
}

.\!border-r-red-600\/0 {
    border-right-color: rgba(220, 38, 38, 0) !important
}

.\!border-r-red-600\/10 {
    border-right-color: rgba(220, 38, 38, .1) !important
}

.\!border-r-red-600\/100 {
    border-right-color: #dc2626 !important
}

.\!border-r-red-600\/20 {
    border-right-color: rgba(220, 38, 38, .2) !important
}

.\!border-r-red-600\/25 {
    border-right-color: rgba(220, 38, 38, .25) !important
}

.\!border-r-red-600\/30 {
    border-right-color: rgba(220, 38, 38, .3) !important
}

.\!border-r-red-600\/40 {
    border-right-color: rgba(220, 38, 38, .4) !important
}

.\!border-r-red-600\/5 {
    border-right-color: rgba(220, 38, 38, .05) !important
}

.\!border-r-red-600\/50 {
    border-right-color: rgba(220, 38, 38, .5) !important
}

.\!border-r-red-600\/60 {
    border-right-color: rgba(220, 38, 38, .6) !important
}

.\!border-r-red-600\/70 {
    border-right-color: rgba(220, 38, 38, .7) !important
}

.\!border-r-red-600\/75 {
    border-right-color: rgba(220, 38, 38, .75) !important
}

.\!border-r-red-600\/80 {
    border-right-color: rgba(220, 38, 38, .8) !important
}

.\!border-r-red-600\/90 {
    border-right-color: rgba(220, 38, 38, .9) !important
}

.\!border-r-red-600\/95 {
    border-right-color: rgba(220, 38, 38, .95) !important
}

.\!border-r-red-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(185 28 28/var(--tw-border-opacity)) !important
}

.\!border-r-red-700\/0 {
    border-right-color: rgba(185, 28, 28, 0) !important
}

.\!border-r-red-700\/10 {
    border-right-color: rgba(185, 28, 28, .1) !important
}

.\!border-r-red-700\/100 {
    border-right-color: #b91c1c !important
}

.\!border-r-red-700\/20 {
    border-right-color: rgba(185, 28, 28, .2) !important
}

.\!border-r-red-700\/25 {
    border-right-color: rgba(185, 28, 28, .25) !important
}

.\!border-r-red-700\/30 {
    border-right-color: rgba(185, 28, 28, .3) !important
}

.\!border-r-red-700\/40 {
    border-right-color: rgba(185, 28, 28, .4) !important
}

.\!border-r-red-700\/5 {
    border-right-color: rgba(185, 28, 28, .05) !important
}

.\!border-r-red-700\/50 {
    border-right-color: rgba(185, 28, 28, .5) !important
}

.\!border-r-red-700\/60 {
    border-right-color: rgba(185, 28, 28, .6) !important
}

.\!border-r-red-700\/70 {
    border-right-color: rgba(185, 28, 28, .7) !important
}

.\!border-r-red-700\/75 {
    border-right-color: rgba(185, 28, 28, .75) !important
}

.\!border-r-red-700\/80 {
    border-right-color: rgba(185, 28, 28, .8) !important
}

.\!border-r-red-700\/90 {
    border-right-color: rgba(185, 28, 28, .9) !important
}

.\!border-r-red-700\/95 {
    border-right-color: rgba(185, 28, 28, .95) !important
}

.\!border-r-red-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(153 27 27/var(--tw-border-opacity)) !important
}

.\!border-r-red-800\/0 {
    border-right-color: rgba(153, 27, 27, 0) !important
}

.\!border-r-red-800\/10 {
    border-right-color: rgba(153, 27, 27, .1) !important
}

.\!border-r-red-800\/100 {
    border-right-color: #991b1b !important
}

.\!border-r-red-800\/20 {
    border-right-color: rgba(153, 27, 27, .2) !important
}

.\!border-r-red-800\/25 {
    border-right-color: rgba(153, 27, 27, .25) !important
}

.\!border-r-red-800\/30 {
    border-right-color: rgba(153, 27, 27, .3) !important
}

.\!border-r-red-800\/40 {
    border-right-color: rgba(153, 27, 27, .4) !important
}

.\!border-r-red-800\/5 {
    border-right-color: rgba(153, 27, 27, .05) !important
}

.\!border-r-red-800\/50 {
    border-right-color: rgba(153, 27, 27, .5) !important
}

.\!border-r-red-800\/60 {
    border-right-color: rgba(153, 27, 27, .6) !important
}

.\!border-r-red-800\/70 {
    border-right-color: rgba(153, 27, 27, .7) !important
}

.\!border-r-red-800\/75 {
    border-right-color: rgba(153, 27, 27, .75) !important
}

.\!border-r-red-800\/80 {
    border-right-color: rgba(153, 27, 27, .8) !important
}

.\!border-r-red-800\/90 {
    border-right-color: rgba(153, 27, 27, .9) !important
}

.\!border-r-red-800\/95 {
    border-right-color: rgba(153, 27, 27, .95) !important
}

.\!border-r-slate-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(241 245 249/var(--tw-border-opacity)) !important
}

.\!border-r-slate-100\/0 {
    border-right-color: rgba(241, 245, 249, 0) !important
}

.\!border-r-slate-100\/10 {
    border-right-color: rgba(241, 245, 249, .1) !important
}

.\!border-r-slate-100\/100 {
    border-right-color: #f1f5f9 !important
}

.\!border-r-slate-100\/20 {
    border-right-color: rgba(241, 245, 249, .2) !important
}

.\!border-r-slate-100\/25 {
    border-right-color: rgba(241, 245, 249, .25) !important
}

.\!border-r-slate-100\/30 {
    border-right-color: rgba(241, 245, 249, .3) !important
}

.\!border-r-slate-100\/40 {
    border-right-color: rgba(241, 245, 249, .4) !important
}

.\!border-r-slate-100\/5 {
    border-right-color: rgba(241, 245, 249, .05) !important
}

.\!border-r-slate-100\/50 {
    border-right-color: rgba(241, 245, 249, .5) !important
}

.\!border-r-slate-100\/60 {
    border-right-color: rgba(241, 245, 249, .6) !important
}

.\!border-r-slate-100\/70 {
    border-right-color: rgba(241, 245, 249, .7) !important
}

.\!border-r-slate-100\/75 {
    border-right-color: rgba(241, 245, 249, .75) !important
}

.\!border-r-slate-100\/80 {
    border-right-color: rgba(241, 245, 249, .8) !important
}

.\!border-r-slate-100\/90 {
    border-right-color: rgba(241, 245, 249, .9) !important
}

.\!border-r-slate-100\/95 {
    border-right-color: rgba(241, 245, 249, .95) !important
}

.\!border-r-slate-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(226 232 240/var(--tw-border-opacity)) !important
}

.\!border-r-slate-200\/0 {
    border-right-color: rgba(226, 232, 240, 0) !important
}

.\!border-r-slate-200\/10 {
    border-right-color: rgba(226, 232, 240, .1) !important
}

.\!border-r-slate-200\/100 {
    border-right-color: #e2e8f0 !important
}

.\!border-r-slate-200\/20 {
    border-right-color: rgba(226, 232, 240, .2) !important
}

.\!border-r-slate-200\/25 {
    border-right-color: rgba(226, 232, 240, .25) !important
}

.\!border-r-slate-200\/30 {
    border-right-color: rgba(226, 232, 240, .3) !important
}

.\!border-r-slate-200\/40 {
    border-right-color: rgba(226, 232, 240, .4) !important
}

.\!border-r-slate-200\/5 {
    border-right-color: rgba(226, 232, 240, .05) !important
}

.\!border-r-slate-200\/50 {
    border-right-color: rgba(226, 232, 240, .5) !important
}

.\!border-r-slate-200\/60 {
    border-right-color: rgba(226, 232, 240, .6) !important
}

.\!border-r-slate-200\/70 {
    border-right-color: rgba(226, 232, 240, .7) !important
}

.\!border-r-slate-200\/75 {
    border-right-color: rgba(226, 232, 240, .75) !important
}

.\!border-r-slate-200\/80 {
    border-right-color: rgba(226, 232, 240, .8) !important
}

.\!border-r-slate-200\/90 {
    border-right-color: rgba(226, 232, 240, .9) !important
}

.\!border-r-slate-200\/95 {
    border-right-color: rgba(226, 232, 240, .95) !important
}

.\!border-r-slate-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(203 213 225/var(--tw-border-opacity)) !important
}

.\!border-r-slate-300\/0 {
    border-right-color: rgba(203, 213, 225, 0) !important
}

.\!border-r-slate-300\/10 {
    border-right-color: rgba(203, 213, 225, .1) !important
}

.\!border-r-slate-300\/100 {
    border-right-color: #cbd5e1 !important
}

.\!border-r-slate-300\/20 {
    border-right-color: rgba(203, 213, 225, .2) !important
}

.\!border-r-slate-300\/25 {
    border-right-color: rgba(203, 213, 225, .25) !important
}

.\!border-r-slate-300\/30 {
    border-right-color: rgba(203, 213, 225, .3) !important
}

.\!border-r-slate-300\/40 {
    border-right-color: rgba(203, 213, 225, .4) !important
}

.\!border-r-slate-300\/5 {
    border-right-color: rgba(203, 213, 225, .05) !important
}

.\!border-r-slate-300\/50 {
    border-right-color: rgba(203, 213, 225, .5) !important
}

.\!border-r-slate-300\/60 {
    border-right-color: rgba(203, 213, 225, .6) !important
}

.\!border-r-slate-300\/70 {
    border-right-color: rgba(203, 213, 225, .7) !important
}

.\!border-r-slate-300\/75 {
    border-right-color: rgba(203, 213, 225, .75) !important
}

.\!border-r-slate-300\/80 {
    border-right-color: rgba(203, 213, 225, .8) !important
}

.\!border-r-slate-300\/90 {
    border-right-color: rgba(203, 213, 225, .9) !important
}

.\!border-r-slate-300\/95 {
    border-right-color: rgba(203, 213, 225, .95) !important
}

.\!border-r-slate-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(148 163 184/var(--tw-border-opacity)) !important
}

.\!border-r-slate-400\/0 {
    border-right-color: rgba(148, 163, 184, 0) !important
}

.\!border-r-slate-400\/10 {
    border-right-color: rgba(148, 163, 184, .1) !important
}

.\!border-r-slate-400\/100 {
    border-right-color: #94a3b8 !important
}

.\!border-r-slate-400\/20 {
    border-right-color: rgba(148, 163, 184, .2) !important
}

.\!border-r-slate-400\/25 {
    border-right-color: rgba(148, 163, 184, .25) !important
}

.\!border-r-slate-400\/30 {
    border-right-color: rgba(148, 163, 184, .3) !important
}

.\!border-r-slate-400\/40 {
    border-right-color: rgba(148, 163, 184, .4) !important
}

.\!border-r-slate-400\/5 {
    border-right-color: rgba(148, 163, 184, .05) !important
}

.\!border-r-slate-400\/50 {
    border-right-color: rgba(148, 163, 184, .5) !important
}

.\!border-r-slate-400\/60 {
    border-right-color: rgba(148, 163, 184, .6) !important
}

.\!border-r-slate-400\/70 {
    border-right-color: rgba(148, 163, 184, .7) !important
}

.\!border-r-slate-400\/75 {
    border-right-color: rgba(148, 163, 184, .75) !important
}

.\!border-r-slate-400\/80 {
    border-right-color: rgba(148, 163, 184, .8) !important
}

.\!border-r-slate-400\/90 {
    border-right-color: rgba(148, 163, 184, .9) !important
}

.\!border-r-slate-400\/95 {
    border-right-color: rgba(148, 163, 184, .95) !important
}

.\!border-r-slate-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(100 116 139/var(--tw-border-opacity)) !important
}

.\!border-r-slate-500\/0 {
    border-right-color: rgba(100, 116, 139, 0) !important
}

.\!border-r-slate-500\/10 {
    border-right-color: rgba(100, 116, 139, .1) !important
}

.\!border-r-slate-500\/100 {
    border-right-color: #64748b !important
}

.\!border-r-slate-500\/20 {
    border-right-color: rgba(100, 116, 139, .2) !important
}

.\!border-r-slate-500\/25 {
    border-right-color: rgba(100, 116, 139, .25) !important
}

.\!border-r-slate-500\/30 {
    border-right-color: rgba(100, 116, 139, .3) !important
}

.\!border-r-slate-500\/40 {
    border-right-color: rgba(100, 116, 139, .4) !important
}

.\!border-r-slate-500\/5 {
    border-right-color: rgba(100, 116, 139, .05) !important
}

.\!border-r-slate-500\/50 {
    border-right-color: rgba(100, 116, 139, .5) !important
}

.\!border-r-slate-500\/60 {
    border-right-color: rgba(100, 116, 139, .6) !important
}

.\!border-r-slate-500\/70 {
    border-right-color: rgba(100, 116, 139, .7) !important
}

.\!border-r-slate-500\/75 {
    border-right-color: rgba(100, 116, 139, .75) !important
}

.\!border-r-slate-500\/80 {
    border-right-color: rgba(100, 116, 139, .8) !important
}

.\!border-r-slate-500\/90 {
    border-right-color: rgba(100, 116, 139, .9) !important
}

.\!border-r-slate-500\/95 {
    border-right-color: rgba(100, 116, 139, .95) !important
}

.\!border-r-slate-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(71 85 105/var(--tw-border-opacity)) !important
}

.\!border-r-slate-600\/0 {
    border-right-color: rgba(71, 85, 105, 0) !important
}

.\!border-r-slate-600\/10 {
    border-right-color: rgba(71, 85, 105, .1) !important
}

.\!border-r-slate-600\/100 {
    border-right-color: #475569 !important
}

.\!border-r-slate-600\/20 {
    border-right-color: rgba(71, 85, 105, .2) !important
}

.\!border-r-slate-600\/25 {
    border-right-color: rgba(71, 85, 105, .25) !important
}

.\!border-r-slate-600\/30 {
    border-right-color: rgba(71, 85, 105, .3) !important
}

.\!border-r-slate-600\/40 {
    border-right-color: rgba(71, 85, 105, .4) !important
}

.\!border-r-slate-600\/5 {
    border-right-color: rgba(71, 85, 105, .05) !important
}

.\!border-r-slate-600\/50 {
    border-right-color: rgba(71, 85, 105, .5) !important
}

.\!border-r-slate-600\/60 {
    border-right-color: rgba(71, 85, 105, .6) !important
}

.\!border-r-slate-600\/70 {
    border-right-color: rgba(71, 85, 105, .7) !important
}

.\!border-r-slate-600\/75 {
    border-right-color: rgba(71, 85, 105, .75) !important
}

.\!border-r-slate-600\/80 {
    border-right-color: rgba(71, 85, 105, .8) !important
}

.\!border-r-slate-600\/90 {
    border-right-color: rgba(71, 85, 105, .9) !important
}

.\!border-r-slate-600\/95 {
    border-right-color: rgba(71, 85, 105, .95) !important
}

.\!border-r-slate-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(51 65 85/var(--tw-border-opacity)) !important
}

.\!border-r-slate-700\/0 {
    border-right-color: rgba(51, 65, 85, 0) !important
}

.\!border-r-slate-700\/10 {
    border-right-color: rgba(51, 65, 85, .1) !important
}

.\!border-r-slate-700\/100 {
    border-right-color: #334155 !important
}

.\!border-r-slate-700\/20 {
    border-right-color: rgba(51, 65, 85, .2) !important
}

.\!border-r-slate-700\/25 {
    border-right-color: rgba(51, 65, 85, .25) !important
}

.\!border-r-slate-700\/30 {
    border-right-color: rgba(51, 65, 85, .3) !important
}

.\!border-r-slate-700\/40 {
    border-right-color: rgba(51, 65, 85, .4) !important
}

.\!border-r-slate-700\/5 {
    border-right-color: rgba(51, 65, 85, .05) !important
}

.\!border-r-slate-700\/50 {
    border-right-color: rgba(51, 65, 85, .5) !important
}

.\!border-r-slate-700\/60 {
    border-right-color: rgba(51, 65, 85, .6) !important
}

.\!border-r-slate-700\/70 {
    border-right-color: rgba(51, 65, 85, .7) !important
}

.\!border-r-slate-700\/75 {
    border-right-color: rgba(51, 65, 85, .75) !important
}

.\!border-r-slate-700\/80 {
    border-right-color: rgba(51, 65, 85, .8) !important
}

.\!border-r-slate-700\/90 {
    border-right-color: rgba(51, 65, 85, .9) !important
}

.\!border-r-slate-700\/95 {
    border-right-color: rgba(51, 65, 85, .95) !important
}

.\!border-r-slate-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(30 41 59/var(--tw-border-opacity)) !important
}

.\!border-r-slate-800\/0 {
    border-right-color: rgba(30, 41, 59, 0) !important
}

.\!border-r-slate-800\/10 {
    border-right-color: rgba(30, 41, 59, .1) !important
}

.\!border-r-slate-800\/100 {
    border-right-color: #1e293b !important
}

.\!border-r-slate-800\/20 {
    border-right-color: rgba(30, 41, 59, .2) !important
}

.\!border-r-slate-800\/25 {
    border-right-color: rgba(30, 41, 59, .25) !important
}

.\!border-r-slate-800\/30 {
    border-right-color: rgba(30, 41, 59, .3) !important
}

.\!border-r-slate-800\/40 {
    border-right-color: rgba(30, 41, 59, .4) !important
}

.\!border-r-slate-800\/5 {
    border-right-color: rgba(30, 41, 59, .05) !important
}

.\!border-r-slate-800\/50 {
    border-right-color: rgba(30, 41, 59, .5) !important
}

.\!border-r-slate-800\/60 {
    border-right-color: rgba(30, 41, 59, .6) !important
}

.\!border-r-slate-800\/70 {
    border-right-color: rgba(30, 41, 59, .7) !important
}

.\!border-r-slate-800\/75 {
    border-right-color: rgba(30, 41, 59, .75) !important
}

.\!border-r-slate-800\/80 {
    border-right-color: rgba(30, 41, 59, .8) !important
}

.\!border-r-slate-800\/90 {
    border-right-color: rgba(30, 41, 59, .9) !important
}

.\!border-r-slate-800\/95 {
    border-right-color: rgba(30, 41, 59, .95) !important
}

.\!border-r-violet-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(237 233 254/var(--tw-border-opacity)) !important
}

.\!border-r-violet-100\/0 {
    border-right-color: rgba(237, 233, 254, 0) !important
}

.\!border-r-violet-100\/10 {
    border-right-color: rgba(237, 233, 254, .1) !important
}

.\!border-r-violet-100\/100 {
    border-right-color: #ede9fe !important
}

.\!border-r-violet-100\/20 {
    border-right-color: rgba(237, 233, 254, .2) !important
}

.\!border-r-violet-100\/25 {
    border-right-color: rgba(237, 233, 254, .25) !important
}

.\!border-r-violet-100\/30 {
    border-right-color: rgba(237, 233, 254, .3) !important
}

.\!border-r-violet-100\/40 {
    border-right-color: rgba(237, 233, 254, .4) !important
}

.\!border-r-violet-100\/5 {
    border-right-color: rgba(237, 233, 254, .05) !important
}

.\!border-r-violet-100\/50 {
    border-right-color: rgba(237, 233, 254, .5) !important
}

.\!border-r-violet-100\/60 {
    border-right-color: rgba(237, 233, 254, .6) !important
}

.\!border-r-violet-100\/70 {
    border-right-color: rgba(237, 233, 254, .7) !important
}

.\!border-r-violet-100\/75 {
    border-right-color: rgba(237, 233, 254, .75) !important
}

.\!border-r-violet-100\/80 {
    border-right-color: rgba(237, 233, 254, .8) !important
}

.\!border-r-violet-100\/90 {
    border-right-color: rgba(237, 233, 254, .9) !important
}

.\!border-r-violet-100\/95 {
    border-right-color: rgba(237, 233, 254, .95) !important
}

.\!border-r-violet-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(221 214 254/var(--tw-border-opacity)) !important
}

.\!border-r-violet-200\/0 {
    border-right-color: rgba(221, 214, 254, 0) !important
}

.\!border-r-violet-200\/10 {
    border-right-color: rgba(221, 214, 254, .1) !important
}

.\!border-r-violet-200\/100 {
    border-right-color: #ddd6fe !important
}

.\!border-r-violet-200\/20 {
    border-right-color: rgba(221, 214, 254, .2) !important
}

.\!border-r-violet-200\/25 {
    border-right-color: rgba(221, 214, 254, .25) !important
}

.\!border-r-violet-200\/30 {
    border-right-color: rgba(221, 214, 254, .3) !important
}

.\!border-r-violet-200\/40 {
    border-right-color: rgba(221, 214, 254, .4) !important
}

.\!border-r-violet-200\/5 {
    border-right-color: rgba(221, 214, 254, .05) !important
}

.\!border-r-violet-200\/50 {
    border-right-color: rgba(221, 214, 254, .5) !important
}

.\!border-r-violet-200\/60 {
    border-right-color: rgba(221, 214, 254, .6) !important
}

.\!border-r-violet-200\/70 {
    border-right-color: rgba(221, 214, 254, .7) !important
}

.\!border-r-violet-200\/75 {
    border-right-color: rgba(221, 214, 254, .75) !important
}

.\!border-r-violet-200\/80 {
    border-right-color: rgba(221, 214, 254, .8) !important
}

.\!border-r-violet-200\/90 {
    border-right-color: rgba(221, 214, 254, .9) !important
}

.\!border-r-violet-200\/95 {
    border-right-color: rgba(221, 214, 254, .95) !important
}

.\!border-r-violet-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(196 181 253/var(--tw-border-opacity)) !important
}

.\!border-r-violet-300\/0 {
    border-right-color: rgba(196, 181, 253, 0) !important
}

.\!border-r-violet-300\/10 {
    border-right-color: rgba(196, 181, 253, .1) !important
}

.\!border-r-violet-300\/100 {
    border-right-color: #c4b5fd !important
}

.\!border-r-violet-300\/20 {
    border-right-color: rgba(196, 181, 253, .2) !important
}

.\!border-r-violet-300\/25 {
    border-right-color: rgba(196, 181, 253, .25) !important
}

.\!border-r-violet-300\/30 {
    border-right-color: rgba(196, 181, 253, .3) !important
}

.\!border-r-violet-300\/40 {
    border-right-color: rgba(196, 181, 253, .4) !important
}

.\!border-r-violet-300\/5 {
    border-right-color: rgba(196, 181, 253, .05) !important
}

.\!border-r-violet-300\/50 {
    border-right-color: rgba(196, 181, 253, .5) !important
}

.\!border-r-violet-300\/60 {
    border-right-color: rgba(196, 181, 253, .6) !important
}

.\!border-r-violet-300\/70 {
    border-right-color: rgba(196, 181, 253, .7) !important
}

.\!border-r-violet-300\/75 {
    border-right-color: rgba(196, 181, 253, .75) !important
}

.\!border-r-violet-300\/80 {
    border-right-color: rgba(196, 181, 253, .8) !important
}

.\!border-r-violet-300\/90 {
    border-right-color: rgba(196, 181, 253, .9) !important
}

.\!border-r-violet-300\/95 {
    border-right-color: rgba(196, 181, 253, .95) !important
}

.\!border-r-violet-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(167 139 250/var(--tw-border-opacity)) !important
}

.\!border-r-violet-400\/0 {
    border-right-color: rgba(167, 139, 250, 0) !important
}

.\!border-r-violet-400\/10 {
    border-right-color: rgba(167, 139, 250, .1) !important
}

.\!border-r-violet-400\/100 {
    border-right-color: #a78bfa !important
}

.\!border-r-violet-400\/20 {
    border-right-color: rgba(167, 139, 250, .2) !important
}

.\!border-r-violet-400\/25 {
    border-right-color: rgba(167, 139, 250, .25) !important
}

.\!border-r-violet-400\/30 {
    border-right-color: rgba(167, 139, 250, .3) !important
}

.\!border-r-violet-400\/40 {
    border-right-color: rgba(167, 139, 250, .4) !important
}

.\!border-r-violet-400\/5 {
    border-right-color: rgba(167, 139, 250, .05) !important
}

.\!border-r-violet-400\/50 {
    border-right-color: rgba(167, 139, 250, .5) !important
}

.\!border-r-violet-400\/60 {
    border-right-color: rgba(167, 139, 250, .6) !important
}

.\!border-r-violet-400\/70 {
    border-right-color: rgba(167, 139, 250, .7) !important
}

.\!border-r-violet-400\/75 {
    border-right-color: rgba(167, 139, 250, .75) !important
}

.\!border-r-violet-400\/80 {
    border-right-color: rgba(167, 139, 250, .8) !important
}

.\!border-r-violet-400\/90 {
    border-right-color: rgba(167, 139, 250, .9) !important
}

.\!border-r-violet-400\/95 {
    border-right-color: rgba(167, 139, 250, .95) !important
}

.\!border-r-violet-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(139 92 246/var(--tw-border-opacity)) !important
}

.\!border-r-violet-500\/0 {
    border-right-color: rgba(139, 92, 246, 0) !important
}

.\!border-r-violet-500\/10 {
    border-right-color: rgba(139, 92, 246, .1) !important
}

.\!border-r-violet-500\/100 {
    border-right-color: #8b5cf6 !important
}

.\!border-r-violet-500\/20 {
    border-right-color: rgba(139, 92, 246, .2) !important
}

.\!border-r-violet-500\/25 {
    border-right-color: rgba(139, 92, 246, .25) !important
}

.\!border-r-violet-500\/30 {
    border-right-color: rgba(139, 92, 246, .3) !important
}

.\!border-r-violet-500\/40 {
    border-right-color: rgba(139, 92, 246, .4) !important
}

.\!border-r-violet-500\/5 {
    border-right-color: rgba(139, 92, 246, .05) !important
}

.\!border-r-violet-500\/50 {
    border-right-color: rgba(139, 92, 246, .5) !important
}

.\!border-r-violet-500\/60 {
    border-right-color: rgba(139, 92, 246, .6) !important
}

.\!border-r-violet-500\/70 {
    border-right-color: rgba(139, 92, 246, .7) !important
}

.\!border-r-violet-500\/75 {
    border-right-color: rgba(139, 92, 246, .75) !important
}

.\!border-r-violet-500\/80 {
    border-right-color: rgba(139, 92, 246, .8) !important
}

.\!border-r-violet-500\/90 {
    border-right-color: rgba(139, 92, 246, .9) !important
}

.\!border-r-violet-500\/95 {
    border-right-color: rgba(139, 92, 246, .95) !important
}

.\!border-r-violet-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(124 58 237/var(--tw-border-opacity)) !important
}

.\!border-r-violet-600\/0 {
    border-right-color: rgba(124, 58, 237, 0) !important
}

.\!border-r-violet-600\/10 {
    border-right-color: rgba(124, 58, 237, .1) !important
}

.\!border-r-violet-600\/100 {
    border-right-color: #7c3aed !important
}

.\!border-r-violet-600\/20 {
    border-right-color: rgba(124, 58, 237, .2) !important
}

.\!border-r-violet-600\/25 {
    border-right-color: rgba(124, 58, 237, .25) !important
}

.\!border-r-violet-600\/30 {
    border-right-color: rgba(124, 58, 237, .3) !important
}

.\!border-r-violet-600\/40 {
    border-right-color: rgba(124, 58, 237, .4) !important
}

.\!border-r-violet-600\/5 {
    border-right-color: rgba(124, 58, 237, .05) !important
}

.\!border-r-violet-600\/50 {
    border-right-color: rgba(124, 58, 237, .5) !important
}

.\!border-r-violet-600\/60 {
    border-right-color: rgba(124, 58, 237, .6) !important
}

.\!border-r-violet-600\/70 {
    border-right-color: rgba(124, 58, 237, .7) !important
}

.\!border-r-violet-600\/75 {
    border-right-color: rgba(124, 58, 237, .75) !important
}

.\!border-r-violet-600\/80 {
    border-right-color: rgba(124, 58, 237, .8) !important
}

.\!border-r-violet-600\/90 {
    border-right-color: rgba(124, 58, 237, .9) !important
}

.\!border-r-violet-600\/95 {
    border-right-color: rgba(124, 58, 237, .95) !important
}

.\!border-r-violet-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(109 40 217/var(--tw-border-opacity)) !important
}

.\!border-r-violet-700\/0 {
    border-right-color: rgba(109, 40, 217, 0) !important
}

.\!border-r-violet-700\/10 {
    border-right-color: rgba(109, 40, 217, .1) !important
}

.\!border-r-violet-700\/100 {
    border-right-color: #6d28d9 !important
}

.\!border-r-violet-700\/20 {
    border-right-color: rgba(109, 40, 217, .2) !important
}

.\!border-r-violet-700\/25 {
    border-right-color: rgba(109, 40, 217, .25) !important
}

.\!border-r-violet-700\/30 {
    border-right-color: rgba(109, 40, 217, .3) !important
}

.\!border-r-violet-700\/40 {
    border-right-color: rgba(109, 40, 217, .4) !important
}

.\!border-r-violet-700\/5 {
    border-right-color: rgba(109, 40, 217, .05) !important
}

.\!border-r-violet-700\/50 {
    border-right-color: rgba(109, 40, 217, .5) !important
}

.\!border-r-violet-700\/60 {
    border-right-color: rgba(109, 40, 217, .6) !important
}

.\!border-r-violet-700\/70 {
    border-right-color: rgba(109, 40, 217, .7) !important
}

.\!border-r-violet-700\/75 {
    border-right-color: rgba(109, 40, 217, .75) !important
}

.\!border-r-violet-700\/80 {
    border-right-color: rgba(109, 40, 217, .8) !important
}

.\!border-r-violet-700\/90 {
    border-right-color: rgba(109, 40, 217, .9) !important
}

.\!border-r-violet-700\/95 {
    border-right-color: rgba(109, 40, 217, .95) !important
}

.\!border-r-violet-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(91 33 182/var(--tw-border-opacity)) !important
}

.\!border-r-violet-800\/0 {
    border-right-color: rgba(91, 33, 182, 0) !important
}

.\!border-r-violet-800\/10 {
    border-right-color: rgba(91, 33, 182, .1) !important
}

.\!border-r-violet-800\/100 {
    border-right-color: #5b21b6 !important
}

.\!border-r-violet-800\/20 {
    border-right-color: rgba(91, 33, 182, .2) !important
}

.\!border-r-violet-800\/25 {
    border-right-color: rgba(91, 33, 182, .25) !important
}

.\!border-r-violet-800\/30 {
    border-right-color: rgba(91, 33, 182, .3) !important
}

.\!border-r-violet-800\/40 {
    border-right-color: rgba(91, 33, 182, .4) !important
}

.\!border-r-violet-800\/5 {
    border-right-color: rgba(91, 33, 182, .05) !important
}

.\!border-r-violet-800\/50 {
    border-right-color: rgba(91, 33, 182, .5) !important
}

.\!border-r-violet-800\/60 {
    border-right-color: rgba(91, 33, 182, .6) !important
}

.\!border-r-violet-800\/70 {
    border-right-color: rgba(91, 33, 182, .7) !important
}

.\!border-r-violet-800\/75 {
    border-right-color: rgba(91, 33, 182, .75) !important
}

.\!border-r-violet-800\/80 {
    border-right-color: rgba(91, 33, 182, .8) !important
}

.\!border-r-violet-800\/90 {
    border-right-color: rgba(91, 33, 182, .9) !important
}

.\!border-r-violet-800\/95 {
    border-right-color: rgba(91, 33, 182, .95) !important
}

.\!border-r-yellow-100 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(254 249 195/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-100\/0 {
    border-right-color: hsla(55, 97%, 88%, 0) !important
}

.\!border-r-yellow-100\/10 {
    border-right-color: hsla(55, 97%, 88%, .1) !important
}

.\!border-r-yellow-100\/100 {
    border-right-color: #fef9c3 !important
}

.\!border-r-yellow-100\/20 {
    border-right-color: hsla(55, 97%, 88%, .2) !important
}

.\!border-r-yellow-100\/25 {
    border-right-color: hsla(55, 97%, 88%, .25) !important
}

.\!border-r-yellow-100\/30 {
    border-right-color: hsla(55, 97%, 88%, .3) !important
}

.\!border-r-yellow-100\/40 {
    border-right-color: hsla(55, 97%, 88%, .4) !important
}

.\!border-r-yellow-100\/5 {
    border-right-color: hsla(55, 97%, 88%, .05) !important
}

.\!border-r-yellow-100\/50 {
    border-right-color: hsla(55, 97%, 88%, .5) !important
}

.\!border-r-yellow-100\/60 {
    border-right-color: hsla(55, 97%, 88%, .6) !important
}

.\!border-r-yellow-100\/70 {
    border-right-color: hsla(55, 97%, 88%, .7) !important
}

.\!border-r-yellow-100\/75 {
    border-right-color: hsla(55, 97%, 88%, .75) !important
}

.\!border-r-yellow-100\/80 {
    border-right-color: hsla(55, 97%, 88%, .8) !important
}

.\!border-r-yellow-100\/90 {
    border-right-color: hsla(55, 97%, 88%, .9) !important
}

.\!border-r-yellow-100\/95 {
    border-right-color: hsla(55, 97%, 88%, .95) !important
}

.\!border-r-yellow-200 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(254 240 138/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-200\/0 {
    border-right-color: hsla(53, 98%, 77%, 0) !important
}

.\!border-r-yellow-200\/10 {
    border-right-color: hsla(53, 98%, 77%, .1) !important
}

.\!border-r-yellow-200\/100 {
    border-right-color: #fef08a !important
}

.\!border-r-yellow-200\/20 {
    border-right-color: hsla(53, 98%, 77%, .2) !important
}

.\!border-r-yellow-200\/25 {
    border-right-color: hsla(53, 98%, 77%, .25) !important
}

.\!border-r-yellow-200\/30 {
    border-right-color: hsla(53, 98%, 77%, .3) !important
}

.\!border-r-yellow-200\/40 {
    border-right-color: hsla(53, 98%, 77%, .4) !important
}

.\!border-r-yellow-200\/5 {
    border-right-color: hsla(53, 98%, 77%, .05) !important
}

.\!border-r-yellow-200\/50 {
    border-right-color: hsla(53, 98%, 77%, .5) !important
}

.\!border-r-yellow-200\/60 {
    border-right-color: hsla(53, 98%, 77%, .6) !important
}

.\!border-r-yellow-200\/70 {
    border-right-color: hsla(53, 98%, 77%, .7) !important
}

.\!border-r-yellow-200\/75 {
    border-right-color: hsla(53, 98%, 77%, .75) !important
}

.\!border-r-yellow-200\/80 {
    border-right-color: hsla(53, 98%, 77%, .8) !important
}

.\!border-r-yellow-200\/90 {
    border-right-color: hsla(53, 98%, 77%, .9) !important
}

.\!border-r-yellow-200\/95 {
    border-right-color: hsla(53, 98%, 77%, .95) !important
}

.\!border-r-yellow-300 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(253 224 71/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-300\/0 {
    border-right-color: rgba(253, 224, 71, 0) !important
}

.\!border-r-yellow-300\/10 {
    border-right-color: rgba(253, 224, 71, .1) !important
}

.\!border-r-yellow-300\/100 {
    border-right-color: #fde047 !important
}

.\!border-r-yellow-300\/20 {
    border-right-color: rgba(253, 224, 71, .2) !important
}

.\!border-r-yellow-300\/25 {
    border-right-color: rgba(253, 224, 71, .25) !important
}

.\!border-r-yellow-300\/30 {
    border-right-color: rgba(253, 224, 71, .3) !important
}

.\!border-r-yellow-300\/40 {
    border-right-color: rgba(253, 224, 71, .4) !important
}

.\!border-r-yellow-300\/5 {
    border-right-color: rgba(253, 224, 71, .05) !important
}

.\!border-r-yellow-300\/50 {
    border-right-color: rgba(253, 224, 71, .5) !important
}

.\!border-r-yellow-300\/60 {
    border-right-color: rgba(253, 224, 71, .6) !important
}

.\!border-r-yellow-300\/70 {
    border-right-color: rgba(253, 224, 71, .7) !important
}

.\!border-r-yellow-300\/75 {
    border-right-color: rgba(253, 224, 71, .75) !important
}

.\!border-r-yellow-300\/80 {
    border-right-color: rgba(253, 224, 71, .8) !important
}

.\!border-r-yellow-300\/90 {
    border-right-color: rgba(253, 224, 71, .9) !important
}

.\!border-r-yellow-300\/95 {
    border-right-color: rgba(253, 224, 71, .95) !important
}

.\!border-r-yellow-400 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(250 204 21/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-400\/0 {
    border-right-color: rgba(250, 204, 21, 0) !important
}

.\!border-r-yellow-400\/10 {
    border-right-color: rgba(250, 204, 21, .1) !important
}

.\!border-r-yellow-400\/100 {
    border-right-color: #facc15 !important
}

.\!border-r-yellow-400\/20 {
    border-right-color: rgba(250, 204, 21, .2) !important
}

.\!border-r-yellow-400\/25 {
    border-right-color: rgba(250, 204, 21, .25) !important
}

.\!border-r-yellow-400\/30 {
    border-right-color: rgba(250, 204, 21, .3) !important
}

.\!border-r-yellow-400\/40 {
    border-right-color: rgba(250, 204, 21, .4) !important
}

.\!border-r-yellow-400\/5 {
    border-right-color: rgba(250, 204, 21, .05) !important
}

.\!border-r-yellow-400\/50 {
    border-right-color: rgba(250, 204, 21, .5) !important
}

.\!border-r-yellow-400\/60 {
    border-right-color: rgba(250, 204, 21, .6) !important
}

.\!border-r-yellow-400\/70 {
    border-right-color: rgba(250, 204, 21, .7) !important
}

.\!border-r-yellow-400\/75 {
    border-right-color: rgba(250, 204, 21, .75) !important
}

.\!border-r-yellow-400\/80 {
    border-right-color: rgba(250, 204, 21, .8) !important
}

.\!border-r-yellow-400\/90 {
    border-right-color: rgba(250, 204, 21, .9) !important
}

.\!border-r-yellow-400\/95 {
    border-right-color: rgba(250, 204, 21, .95) !important
}

.\!border-r-yellow-500 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(234 179 8/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-500\/0 {
    border-right-color: rgba(234, 179, 8, 0) !important
}

.\!border-r-yellow-500\/10 {
    border-right-color: rgba(234, 179, 8, .1) !important
}

.\!border-r-yellow-500\/100 {
    border-right-color: #eab308 !important
}

.\!border-r-yellow-500\/20 {
    border-right-color: rgba(234, 179, 8, .2) !important
}

.\!border-r-yellow-500\/25 {
    border-right-color: rgba(234, 179, 8, .25) !important
}

.\!border-r-yellow-500\/30 {
    border-right-color: rgba(234, 179, 8, .3) !important
}

.\!border-r-yellow-500\/40 {
    border-right-color: rgba(234, 179, 8, .4) !important
}

.\!border-r-yellow-500\/5 {
    border-right-color: rgba(234, 179, 8, .05) !important
}

.\!border-r-yellow-500\/50 {
    border-right-color: rgba(234, 179, 8, .5) !important
}

.\!border-r-yellow-500\/60 {
    border-right-color: rgba(234, 179, 8, .6) !important
}

.\!border-r-yellow-500\/70 {
    border-right-color: rgba(234, 179, 8, .7) !important
}

.\!border-r-yellow-500\/75 {
    border-right-color: rgba(234, 179, 8, .75) !important
}

.\!border-r-yellow-500\/80 {
    border-right-color: rgba(234, 179, 8, .8) !important
}

.\!border-r-yellow-500\/90 {
    border-right-color: rgba(234, 179, 8, .9) !important
}

.\!border-r-yellow-500\/95 {
    border-right-color: rgba(234, 179, 8, .95) !important
}

.\!border-r-yellow-600 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(202 138 4/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-600\/0 {
    border-right-color: rgba(202, 138, 4, 0) !important
}

.\!border-r-yellow-600\/10 {
    border-right-color: rgba(202, 138, 4, .1) !important
}

.\!border-r-yellow-600\/100 {
    border-right-color: #ca8a04 !important
}

.\!border-r-yellow-600\/20 {
    border-right-color: rgba(202, 138, 4, .2) !important
}

.\!border-r-yellow-600\/25 {
    border-right-color: rgba(202, 138, 4, .25) !important
}

.\!border-r-yellow-600\/30 {
    border-right-color: rgba(202, 138, 4, .3) !important
}

.\!border-r-yellow-600\/40 {
    border-right-color: rgba(202, 138, 4, .4) !important
}

.\!border-r-yellow-600\/5 {
    border-right-color: rgba(202, 138, 4, .05) !important
}

.\!border-r-yellow-600\/50 {
    border-right-color: rgba(202, 138, 4, .5) !important
}

.\!border-r-yellow-600\/60 {
    border-right-color: rgba(202, 138, 4, .6) !important
}

.\!border-r-yellow-600\/70 {
    border-right-color: rgba(202, 138, 4, .7) !important
}

.\!border-r-yellow-600\/75 {
    border-right-color: rgba(202, 138, 4, .75) !important
}

.\!border-r-yellow-600\/80 {
    border-right-color: rgba(202, 138, 4, .8) !important
}

.\!border-r-yellow-600\/90 {
    border-right-color: rgba(202, 138, 4, .9) !important
}

.\!border-r-yellow-600\/95 {
    border-right-color: rgba(202, 138, 4, .95) !important
}

.\!border-r-yellow-700 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(161 98 7/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-700\/0 {
    border-right-color: rgba(161, 98, 7, 0) !important
}

.\!border-r-yellow-700\/10 {
    border-right-color: rgba(161, 98, 7, .1) !important
}

.\!border-r-yellow-700\/100 {
    border-right-color: #a16207 !important
}

.\!border-r-yellow-700\/20 {
    border-right-color: rgba(161, 98, 7, .2) !important
}

.\!border-r-yellow-700\/25 {
    border-right-color: rgba(161, 98, 7, .25) !important
}

.\!border-r-yellow-700\/30 {
    border-right-color: rgba(161, 98, 7, .3) !important
}

.\!border-r-yellow-700\/40 {
    border-right-color: rgba(161, 98, 7, .4) !important
}

.\!border-r-yellow-700\/5 {
    border-right-color: rgba(161, 98, 7, .05) !important
}

.\!border-r-yellow-700\/50 {
    border-right-color: rgba(161, 98, 7, .5) !important
}

.\!border-r-yellow-700\/60 {
    border-right-color: rgba(161, 98, 7, .6) !important
}

.\!border-r-yellow-700\/70 {
    border-right-color: rgba(161, 98, 7, .7) !important
}

.\!border-r-yellow-700\/75 {
    border-right-color: rgba(161, 98, 7, .75) !important
}

.\!border-r-yellow-700\/80 {
    border-right-color: rgba(161, 98, 7, .8) !important
}

.\!border-r-yellow-700\/90 {
    border-right-color: rgba(161, 98, 7, .9) !important
}

.\!border-r-yellow-700\/95 {
    border-right-color: rgba(161, 98, 7, .95) !important
}

.\!border-r-yellow-800 {
    --tw-border-opacity: 1 !important;
    border-right-color: rgb(133 77 14/var(--tw-border-opacity)) !important
}

.\!border-r-yellow-800\/0 {
    border-right-color: rgba(133, 77, 14, 0) !important
}

.\!border-r-yellow-800\/10 {
    border-right-color: rgba(133, 77, 14, .1) !important
}

.\!border-r-yellow-800\/100 {
    border-right-color: #854d0e !important
}

.\!border-r-yellow-800\/20 {
    border-right-color: rgba(133, 77, 14, .2) !important
}

.\!border-r-yellow-800\/25 {
    border-right-color: rgba(133, 77, 14, .25) !important
}

.\!border-r-yellow-800\/30 {
    border-right-color: rgba(133, 77, 14, .3) !important
}

.\!border-r-yellow-800\/40 {
    border-right-color: rgba(133, 77, 14, .4) !important
}

.\!border-r-yellow-800\/5 {
    border-right-color: rgba(133, 77, 14, .05) !important
}

.\!border-r-yellow-800\/50 {
    border-right-color: rgba(133, 77, 14, .5) !important
}

.\!border-r-yellow-800\/60 {
    border-right-color: rgba(133, 77, 14, .6) !important
}

.\!border-r-yellow-800\/70 {
    border-right-color: rgba(133, 77, 14, .7) !important
}

.\!border-r-yellow-800\/75 {
    border-right-color: rgba(133, 77, 14, .75) !important
}

.\!border-r-yellow-800\/80 {
    border-right-color: rgba(133, 77, 14, .8) !important
}

.\!border-r-yellow-800\/90 {
    border-right-color: rgba(133, 77, 14, .9) !important
}

.\!border-r-yellow-800\/95 {
    border-right-color: rgba(133, 77, 14, .95) !important
}

.border-r-blue-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(219 234 254/var(--tw-border-opacity))
}

.border-r-blue-100\/0 {
    border-right-color: rgba(219, 234, 254, 0)
}

.border-r-blue-100\/10 {
    border-right-color: rgba(219, 234, 254, .1)
}

.border-r-blue-100\/100 {
    border-right-color: #dbeafe
}

.border-r-blue-100\/20 {
    border-right-color: rgba(219, 234, 254, .2)
}

.border-r-blue-100\/25 {
    border-right-color: rgba(219, 234, 254, .25)
}

.border-r-blue-100\/30 {
    border-right-color: rgba(219, 234, 254, .3)
}

.border-r-blue-100\/40 {
    border-right-color: rgba(219, 234, 254, .4)
}

.border-r-blue-100\/5 {
    border-right-color: rgba(219, 234, 254, .05)
}

.border-r-blue-100\/50 {
    border-right-color: rgba(219, 234, 254, .5)
}

.border-r-blue-100\/60 {
    border-right-color: rgba(219, 234, 254, .6)
}

.border-r-blue-100\/70 {
    border-right-color: rgba(219, 234, 254, .7)
}

.border-r-blue-100\/75 {
    border-right-color: rgba(219, 234, 254, .75)
}

.border-r-blue-100\/80 {
    border-right-color: rgba(219, 234, 254, .8)
}

.border-r-blue-100\/90 {
    border-right-color: rgba(219, 234, 254, .9)
}

.border-r-blue-100\/95 {
    border-right-color: rgba(219, 234, 254, .95)
}

.border-r-blue-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(191 219 254/var(--tw-border-opacity))
}

.border-r-blue-200\/0 {
    border-right-color: rgba(191, 219, 254, 0)
}

.border-r-blue-200\/10 {
    border-right-color: rgba(191, 219, 254, .1)
}

.border-r-blue-200\/100 {
    border-right-color: #bfdbfe
}

.border-r-blue-200\/20 {
    border-right-color: rgba(191, 219, 254, .2)
}

.border-r-blue-200\/25 {
    border-right-color: rgba(191, 219, 254, .25)
}

.border-r-blue-200\/30 {
    border-right-color: rgba(191, 219, 254, .3)
}

.border-r-blue-200\/40 {
    border-right-color: rgba(191, 219, 254, .4)
}

.border-r-blue-200\/5 {
    border-right-color: rgba(191, 219, 254, .05)
}

.border-r-blue-200\/50 {
    border-right-color: rgba(191, 219, 254, .5)
}

.border-r-blue-200\/60 {
    border-right-color: rgba(191, 219, 254, .6)
}

.border-r-blue-200\/70 {
    border-right-color: rgba(191, 219, 254, .7)
}

.border-r-blue-200\/75 {
    border-right-color: rgba(191, 219, 254, .75)
}

.border-r-blue-200\/80 {
    border-right-color: rgba(191, 219, 254, .8)
}

.border-r-blue-200\/90 {
    border-right-color: rgba(191, 219, 254, .9)
}

.border-r-blue-200\/95 {
    border-right-color: rgba(191, 219, 254, .95)
}

.border-r-blue-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(147 197 253/var(--tw-border-opacity))
}

.border-r-blue-300\/0 {
    border-right-color: rgba(147, 197, 253, 0)
}

.border-r-blue-300\/10 {
    border-right-color: rgba(147, 197, 253, .1)
}

.border-r-blue-300\/100 {
    border-right-color: #93c5fd
}

.border-r-blue-300\/20 {
    border-right-color: rgba(147, 197, 253, .2)
}

.border-r-blue-300\/25 {
    border-right-color: rgba(147, 197, 253, .25)
}

.border-r-blue-300\/30 {
    border-right-color: rgba(147, 197, 253, .3)
}

.border-r-blue-300\/40 {
    border-right-color: rgba(147, 197, 253, .4)
}

.border-r-blue-300\/5 {
    border-right-color: rgba(147, 197, 253, .05)
}

.border-r-blue-300\/50 {
    border-right-color: rgba(147, 197, 253, .5)
}

.border-r-blue-300\/60 {
    border-right-color: rgba(147, 197, 253, .6)
}

.border-r-blue-300\/70 {
    border-right-color: rgba(147, 197, 253, .7)
}

.border-r-blue-300\/75 {
    border-right-color: rgba(147, 197, 253, .75)
}

.border-r-blue-300\/80 {
    border-right-color: rgba(147, 197, 253, .8)
}

.border-r-blue-300\/90 {
    border-right-color: rgba(147, 197, 253, .9)
}

.border-r-blue-300\/95 {
    border-right-color: rgba(147, 197, 253, .95)
}

.border-r-blue-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(96 165 250/var(--tw-border-opacity))
}

.border-r-blue-400\/0 {
    border-right-color: rgba(96, 165, 250, 0)
}

.border-r-blue-400\/10 {
    border-right-color: rgba(96, 165, 250, .1)
}

.border-r-blue-400\/100 {
    border-right-color: #60a5fa
}

.border-r-blue-400\/20 {
    border-right-color: rgba(96, 165, 250, .2)
}

.border-r-blue-400\/25 {
    border-right-color: rgba(96, 165, 250, .25)
}

.border-r-blue-400\/30 {
    border-right-color: rgba(96, 165, 250, .3)
}

.border-r-blue-400\/40 {
    border-right-color: rgba(96, 165, 250, .4)
}

.border-r-blue-400\/5 {
    border-right-color: rgba(96, 165, 250, .05)
}

.border-r-blue-400\/50 {
    border-right-color: rgba(96, 165, 250, .5)
}

.border-r-blue-400\/60 {
    border-right-color: rgba(96, 165, 250, .6)
}

.border-r-blue-400\/70 {
    border-right-color: rgba(96, 165, 250, .7)
}

.border-r-blue-400\/75 {
    border-right-color: rgba(96, 165, 250, .75)
}

.border-r-blue-400\/80 {
    border-right-color: rgba(96, 165, 250, .8)
}

.border-r-blue-400\/90 {
    border-right-color: rgba(96, 165, 250, .9)
}

.border-r-blue-400\/95 {
    border-right-color: rgba(96, 165, 250, .95)
}

.border-r-blue-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(59 130 246/var(--tw-border-opacity))
}

.border-r-blue-500\/0 {
    border-right-color: rgba(59, 130, 246, 0)
}

.border-r-blue-500\/10 {
    border-right-color: rgba(59, 130, 246, .1)
}

.border-r-blue-500\/100 {
    border-right-color: #3b82f6
}

.border-r-blue-500\/20 {
    border-right-color: rgba(59, 130, 246, .2)
}

.border-r-blue-500\/25 {
    border-right-color: rgba(59, 130, 246, .25)
}

.border-r-blue-500\/30 {
    border-right-color: rgba(59, 130, 246, .3)
}

.border-r-blue-500\/40 {
    border-right-color: rgba(59, 130, 246, .4)
}

.border-r-blue-500\/5 {
    border-right-color: rgba(59, 130, 246, .05)
}

.border-r-blue-500\/50 {
    border-right-color: rgba(59, 130, 246, .5)
}

.border-r-blue-500\/60 {
    border-right-color: rgba(59, 130, 246, .6)
}

.border-r-blue-500\/70 {
    border-right-color: rgba(59, 130, 246, .7)
}

.border-r-blue-500\/75 {
    border-right-color: rgba(59, 130, 246, .75)
}

.border-r-blue-500\/80 {
    border-right-color: rgba(59, 130, 246, .8)
}

.border-r-blue-500\/90 {
    border-right-color: rgba(59, 130, 246, .9)
}

.border-r-blue-500\/95 {
    border-right-color: rgba(59, 130, 246, .95)
}

.border-r-blue-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(37 99 235/var(--tw-border-opacity))
}

.border-r-blue-600\/0 {
    border-right-color: rgba(37, 99, 235, 0)
}

.border-r-blue-600\/10 {
    border-right-color: rgba(37, 99, 235, .1)
}

.border-r-blue-600\/100 {
    border-right-color: #2563eb
}

.border-r-blue-600\/20 {
    border-right-color: rgba(37, 99, 235, .2)
}

.border-r-blue-600\/25 {
    border-right-color: rgba(37, 99, 235, .25)
}

.border-r-blue-600\/30 {
    border-right-color: rgba(37, 99, 235, .3)
}

.border-r-blue-600\/40 {
    border-right-color: rgba(37, 99, 235, .4)
}

.border-r-blue-600\/5 {
    border-right-color: rgba(37, 99, 235, .05)
}

.border-r-blue-600\/50 {
    border-right-color: rgba(37, 99, 235, .5)
}

.border-r-blue-600\/60 {
    border-right-color: rgba(37, 99, 235, .6)
}

.border-r-blue-600\/70 {
    border-right-color: rgba(37, 99, 235, .7)
}

.border-r-blue-600\/75 {
    border-right-color: rgba(37, 99, 235, .75)
}

.border-r-blue-600\/80 {
    border-right-color: rgba(37, 99, 235, .8)
}

.border-r-blue-600\/90 {
    border-right-color: rgba(37, 99, 235, .9)
}

.border-r-blue-600\/95 {
    border-right-color: rgba(37, 99, 235, .95)
}

.border-r-blue-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(29 78 216/var(--tw-border-opacity))
}

.border-r-blue-700\/0 {
    border-right-color: rgba(29, 78, 216, 0)
}

.border-r-blue-700\/10 {
    border-right-color: rgba(29, 78, 216, .1)
}

.border-r-blue-700\/100 {
    border-right-color: #1d4ed8
}

.border-r-blue-700\/20 {
    border-right-color: rgba(29, 78, 216, .2)
}

.border-r-blue-700\/25 {
    border-right-color: rgba(29, 78, 216, .25)
}

.border-r-blue-700\/30 {
    border-right-color: rgba(29, 78, 216, .3)
}

.border-r-blue-700\/40 {
    border-right-color: rgba(29, 78, 216, .4)
}

.border-r-blue-700\/5 {
    border-right-color: rgba(29, 78, 216, .05)
}

.border-r-blue-700\/50 {
    border-right-color: rgba(29, 78, 216, .5)
}

.border-r-blue-700\/60 {
    border-right-color: rgba(29, 78, 216, .6)
}

.border-r-blue-700\/70 {
    border-right-color: rgba(29, 78, 216, .7)
}

.border-r-blue-700\/75 {
    border-right-color: rgba(29, 78, 216, .75)
}

.border-r-blue-700\/80 {
    border-right-color: rgba(29, 78, 216, .8)
}

.border-r-blue-700\/90 {
    border-right-color: rgba(29, 78, 216, .9)
}

.border-r-blue-700\/95 {
    border-right-color: rgba(29, 78, 216, .95)
}

.border-r-blue-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(30 64 175/var(--tw-border-opacity))
}

.border-r-blue-800\/0 {
    border-right-color: rgba(30, 64, 175, 0)
}

.border-r-blue-800\/10 {
    border-right-color: rgba(30, 64, 175, .1)
}

.border-r-blue-800\/100 {
    border-right-color: #1e40af
}

.border-r-blue-800\/20 {
    border-right-color: rgba(30, 64, 175, .2)
}

.border-r-blue-800\/25 {
    border-right-color: rgba(30, 64, 175, .25)
}

.border-r-blue-800\/30 {
    border-right-color: rgba(30, 64, 175, .3)
}

.border-r-blue-800\/40 {
    border-right-color: rgba(30, 64, 175, .4)
}

.border-r-blue-800\/5 {
    border-right-color: rgba(30, 64, 175, .05)
}

.border-r-blue-800\/50 {
    border-right-color: rgba(30, 64, 175, .5)
}

.border-r-blue-800\/60 {
    border-right-color: rgba(30, 64, 175, .6)
}

.border-r-blue-800\/70 {
    border-right-color: rgba(30, 64, 175, .7)
}

.border-r-blue-800\/75 {
    border-right-color: rgba(30, 64, 175, .75)
}

.border-r-blue-800\/80 {
    border-right-color: rgba(30, 64, 175, .8)
}

.border-r-blue-800\/90 {
    border-right-color: rgba(30, 64, 175, .9)
}

.border-r-blue-800\/95 {
    border-right-color: rgba(30, 64, 175, .95)
}

.border-r-emerald-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(209 250 229/var(--tw-border-opacity))
}

.border-r-emerald-100\/0 {
    border-right-color: rgba(209, 250, 229, 0)
}

.border-r-emerald-100\/10 {
    border-right-color: rgba(209, 250, 229, .1)
}

.border-r-emerald-100\/100 {
    border-right-color: #d1fae5
}

.border-r-emerald-100\/20 {
    border-right-color: rgba(209, 250, 229, .2)
}

.border-r-emerald-100\/25 {
    border-right-color: rgba(209, 250, 229, .25)
}

.border-r-emerald-100\/30 {
    border-right-color: rgba(209, 250, 229, .3)
}

.border-r-emerald-100\/40 {
    border-right-color: rgba(209, 250, 229, .4)
}

.border-r-emerald-100\/5 {
    border-right-color: rgba(209, 250, 229, .05)
}

.border-r-emerald-100\/50 {
    border-right-color: rgba(209, 250, 229, .5)
}

.border-r-emerald-100\/60 {
    border-right-color: rgba(209, 250, 229, .6)
}

.border-r-emerald-100\/70 {
    border-right-color: rgba(209, 250, 229, .7)
}

.border-r-emerald-100\/75 {
    border-right-color: rgba(209, 250, 229, .75)
}

.border-r-emerald-100\/80 {
    border-right-color: rgba(209, 250, 229, .8)
}

.border-r-emerald-100\/90 {
    border-right-color: rgba(209, 250, 229, .9)
}

.border-r-emerald-100\/95 {
    border-right-color: rgba(209, 250, 229, .95)
}

.border-r-emerald-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(167 243 208/var(--tw-border-opacity))
}

.border-r-emerald-200\/0 {
    border-right-color: rgba(167, 243, 208, 0)
}

.border-r-emerald-200\/10 {
    border-right-color: rgba(167, 243, 208, .1)
}

.border-r-emerald-200\/100 {
    border-right-color: #a7f3d0
}

.border-r-emerald-200\/20 {
    border-right-color: rgba(167, 243, 208, .2)
}

.border-r-emerald-200\/25 {
    border-right-color: rgba(167, 243, 208, .25)
}

.border-r-emerald-200\/30 {
    border-right-color: rgba(167, 243, 208, .3)
}

.border-r-emerald-200\/40 {
    border-right-color: rgba(167, 243, 208, .4)
}

.border-r-emerald-200\/5 {
    border-right-color: rgba(167, 243, 208, .05)
}

.border-r-emerald-200\/50 {
    border-right-color: rgba(167, 243, 208, .5)
}

.border-r-emerald-200\/60 {
    border-right-color: rgba(167, 243, 208, .6)
}

.border-r-emerald-200\/70 {
    border-right-color: rgba(167, 243, 208, .7)
}

.border-r-emerald-200\/75 {
    border-right-color: rgba(167, 243, 208, .75)
}

.border-r-emerald-200\/80 {
    border-right-color: rgba(167, 243, 208, .8)
}

.border-r-emerald-200\/90 {
    border-right-color: rgba(167, 243, 208, .9)
}

.border-r-emerald-200\/95 {
    border-right-color: rgba(167, 243, 208, .95)
}

.border-r-emerald-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(110 231 183/var(--tw-border-opacity))
}

.border-r-emerald-300\/0 {
    border-right-color: rgba(110, 231, 183, 0)
}

.border-r-emerald-300\/10 {
    border-right-color: rgba(110, 231, 183, .1)
}

.border-r-emerald-300\/100 {
    border-right-color: #6ee7b7
}

.border-r-emerald-300\/20 {
    border-right-color: rgba(110, 231, 183, .2)
}

.border-r-emerald-300\/25 {
    border-right-color: rgba(110, 231, 183, .25)
}

.border-r-emerald-300\/30 {
    border-right-color: rgba(110, 231, 183, .3)
}

.border-r-emerald-300\/40 {
    border-right-color: rgba(110, 231, 183, .4)
}

.border-r-emerald-300\/5 {
    border-right-color: rgba(110, 231, 183, .05)
}

.border-r-emerald-300\/50 {
    border-right-color: rgba(110, 231, 183, .5)
}

.border-r-emerald-300\/60 {
    border-right-color: rgba(110, 231, 183, .6)
}

.border-r-emerald-300\/70 {
    border-right-color: rgba(110, 231, 183, .7)
}

.border-r-emerald-300\/75 {
    border-right-color: rgba(110, 231, 183, .75)
}

.border-r-emerald-300\/80 {
    border-right-color: rgba(110, 231, 183, .8)
}

.border-r-emerald-300\/90 {
    border-right-color: rgba(110, 231, 183, .9)
}

.border-r-emerald-300\/95 {
    border-right-color: rgba(110, 231, 183, .95)
}

.border-r-emerald-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(52 211 153/var(--tw-border-opacity))
}

.border-r-emerald-400\/0 {
    border-right-color: rgba(52, 211, 153, 0)
}

.border-r-emerald-400\/10 {
    border-right-color: rgba(52, 211, 153, .1)
}

.border-r-emerald-400\/100 {
    border-right-color: #34d399
}

.border-r-emerald-400\/20 {
    border-right-color: rgba(52, 211, 153, .2)
}

.border-r-emerald-400\/25 {
    border-right-color: rgba(52, 211, 153, .25)
}

.border-r-emerald-400\/30 {
    border-right-color: rgba(52, 211, 153, .3)
}

.border-r-emerald-400\/40 {
    border-right-color: rgba(52, 211, 153, .4)
}

.border-r-emerald-400\/5 {
    border-right-color: rgba(52, 211, 153, .05)
}

.border-r-emerald-400\/50 {
    border-right-color: rgba(52, 211, 153, .5)
}

.border-r-emerald-400\/60 {
    border-right-color: rgba(52, 211, 153, .6)
}

.border-r-emerald-400\/70 {
    border-right-color: rgba(52, 211, 153, .7)
}

.border-r-emerald-400\/75 {
    border-right-color: rgba(52, 211, 153, .75)
}

.border-r-emerald-400\/80 {
    border-right-color: rgba(52, 211, 153, .8)
}

.border-r-emerald-400\/90 {
    border-right-color: rgba(52, 211, 153, .9)
}

.border-r-emerald-400\/95 {
    border-right-color: rgba(52, 211, 153, .95)
}

.border-r-emerald-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(16 185 129/var(--tw-border-opacity))
}

.border-r-emerald-500\/0 {
    border-right-color: rgba(16, 185, 129, 0)
}

.border-r-emerald-500\/10 {
    border-right-color: rgba(16, 185, 129, .1)
}

.border-r-emerald-500\/100 {
    border-right-color: #10b981
}

.border-r-emerald-500\/20 {
    border-right-color: rgba(16, 185, 129, .2)
}

.border-r-emerald-500\/25 {
    border-right-color: rgba(16, 185, 129, .25)
}

.border-r-emerald-500\/30 {
    border-right-color: rgba(16, 185, 129, .3)
}

.border-r-emerald-500\/40 {
    border-right-color: rgba(16, 185, 129, .4)
}

.border-r-emerald-500\/5 {
    border-right-color: rgba(16, 185, 129, .05)
}

.border-r-emerald-500\/50 {
    border-right-color: rgba(16, 185, 129, .5)
}

.border-r-emerald-500\/60 {
    border-right-color: rgba(16, 185, 129, .6)
}

.border-r-emerald-500\/70 {
    border-right-color: rgba(16, 185, 129, .7)
}

.border-r-emerald-500\/75 {
    border-right-color: rgba(16, 185, 129, .75)
}

.border-r-emerald-500\/80 {
    border-right-color: rgba(16, 185, 129, .8)
}

.border-r-emerald-500\/90 {
    border-right-color: rgba(16, 185, 129, .9)
}

.border-r-emerald-500\/95 {
    border-right-color: rgba(16, 185, 129, .95)
}

.border-r-emerald-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(5 150 105/var(--tw-border-opacity))
}

.border-r-emerald-600\/0 {
    border-right-color: rgba(5, 150, 105, 0)
}

.border-r-emerald-600\/10 {
    border-right-color: rgba(5, 150, 105, .1)
}

.border-r-emerald-600\/100 {
    border-right-color: #059669
}

.border-r-emerald-600\/20 {
    border-right-color: rgba(5, 150, 105, .2)
}

.border-r-emerald-600\/25 {
    border-right-color: rgba(5, 150, 105, .25)
}

.border-r-emerald-600\/30 {
    border-right-color: rgba(5, 150, 105, .3)
}

.border-r-emerald-600\/40 {
    border-right-color: rgba(5, 150, 105, .4)
}

.border-r-emerald-600\/5 {
    border-right-color: rgba(5, 150, 105, .05)
}

.border-r-emerald-600\/50 {
    border-right-color: rgba(5, 150, 105, .5)
}

.border-r-emerald-600\/60 {
    border-right-color: rgba(5, 150, 105, .6)
}

.border-r-emerald-600\/70 {
    border-right-color: rgba(5, 150, 105, .7)
}

.border-r-emerald-600\/75 {
    border-right-color: rgba(5, 150, 105, .75)
}

.border-r-emerald-600\/80 {
    border-right-color: rgba(5, 150, 105, .8)
}

.border-r-emerald-600\/90 {
    border-right-color: rgba(5, 150, 105, .9)
}

.border-r-emerald-600\/95 {
    border-right-color: rgba(5, 150, 105, .95)
}

.border-r-emerald-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(4 120 87/var(--tw-border-opacity))
}

.border-r-emerald-700\/0 {
    border-right-color: rgba(4, 120, 87, 0)
}

.border-r-emerald-700\/10 {
    border-right-color: rgba(4, 120, 87, .1)
}

.border-r-emerald-700\/100 {
    border-right-color: #047857
}

.border-r-emerald-700\/20 {
    border-right-color: rgba(4, 120, 87, .2)
}

.border-r-emerald-700\/25 {
    border-right-color: rgba(4, 120, 87, .25)
}

.border-r-emerald-700\/30 {
    border-right-color: rgba(4, 120, 87, .3)
}

.border-r-emerald-700\/40 {
    border-right-color: rgba(4, 120, 87, .4)
}

.border-r-emerald-700\/5 {
    border-right-color: rgba(4, 120, 87, .05)
}

.border-r-emerald-700\/50 {
    border-right-color: rgba(4, 120, 87, .5)
}

.border-r-emerald-700\/60 {
    border-right-color: rgba(4, 120, 87, .6)
}

.border-r-emerald-700\/70 {
    border-right-color: rgba(4, 120, 87, .7)
}

.border-r-emerald-700\/75 {
    border-right-color: rgba(4, 120, 87, .75)
}

.border-r-emerald-700\/80 {
    border-right-color: rgba(4, 120, 87, .8)
}

.border-r-emerald-700\/90 {
    border-right-color: rgba(4, 120, 87, .9)
}

.border-r-emerald-700\/95 {
    border-right-color: rgba(4, 120, 87, .95)
}

.border-r-emerald-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(6 95 70/var(--tw-border-opacity))
}

.border-r-emerald-800\/0 {
    border-right-color: rgba(6, 95, 70, 0)
}

.border-r-emerald-800\/10 {
    border-right-color: rgba(6, 95, 70, .1)
}

.border-r-emerald-800\/100 {
    border-right-color: #065f46
}

.border-r-emerald-800\/20 {
    border-right-color: rgba(6, 95, 70, .2)
}

.border-r-emerald-800\/25 {
    border-right-color: rgba(6, 95, 70, .25)
}

.border-r-emerald-800\/30 {
    border-right-color: rgba(6, 95, 70, .3)
}

.border-r-emerald-800\/40 {
    border-right-color: rgba(6, 95, 70, .4)
}

.border-r-emerald-800\/5 {
    border-right-color: rgba(6, 95, 70, .05)
}

.border-r-emerald-800\/50 {
    border-right-color: rgba(6, 95, 70, .5)
}

.border-r-emerald-800\/60 {
    border-right-color: rgba(6, 95, 70, .6)
}

.border-r-emerald-800\/70 {
    border-right-color: rgba(6, 95, 70, .7)
}

.border-r-emerald-800\/75 {
    border-right-color: rgba(6, 95, 70, .75)
}

.border-r-emerald-800\/80 {
    border-right-color: rgba(6, 95, 70, .8)
}

.border-r-emerald-800\/90 {
    border-right-color: rgba(6, 95, 70, .9)
}

.border-r-emerald-800\/95 {
    border-right-color: rgba(6, 95, 70, .95)
}

.border-r-green-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(220 252 231/var(--tw-border-opacity))
}

.border-r-green-100\/0 {
    border-right-color: rgba(220, 252, 231, 0)
}

.border-r-green-100\/10 {
    border-right-color: rgba(220, 252, 231, .1)
}

.border-r-green-100\/100 {
    border-right-color: #dcfce7
}

.border-r-green-100\/20 {
    border-right-color: rgba(220, 252, 231, .2)
}

.border-r-green-100\/25 {
    border-right-color: rgba(220, 252, 231, .25)
}

.border-r-green-100\/30 {
    border-right-color: rgba(220, 252, 231, .3)
}

.border-r-green-100\/40 {
    border-right-color: rgba(220, 252, 231, .4)
}

.border-r-green-100\/5 {
    border-right-color: rgba(220, 252, 231, .05)
}

.border-r-green-100\/50 {
    border-right-color: rgba(220, 252, 231, .5)
}

.border-r-green-100\/60 {
    border-right-color: rgba(220, 252, 231, .6)
}

.border-r-green-100\/70 {
    border-right-color: rgba(220, 252, 231, .7)
}

.border-r-green-100\/75 {
    border-right-color: rgba(220, 252, 231, .75)
}

.border-r-green-100\/80 {
    border-right-color: rgba(220, 252, 231, .8)
}

.border-r-green-100\/90 {
    border-right-color: rgba(220, 252, 231, .9)
}

.border-r-green-100\/95 {
    border-right-color: rgba(220, 252, 231, .95)
}

.border-r-green-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(187 247 208/var(--tw-border-opacity))
}

.border-r-green-200\/0 {
    border-right-color: rgba(187, 247, 208, 0)
}

.border-r-green-200\/10 {
    border-right-color: rgba(187, 247, 208, .1)
}

.border-r-green-200\/100 {
    border-right-color: #bbf7d0
}

.border-r-green-200\/20 {
    border-right-color: rgba(187, 247, 208, .2)
}

.border-r-green-200\/25 {
    border-right-color: rgba(187, 247, 208, .25)
}

.border-r-green-200\/30 {
    border-right-color: rgba(187, 247, 208, .3)
}

.border-r-green-200\/40 {
    border-right-color: rgba(187, 247, 208, .4)
}

.border-r-green-200\/5 {
    border-right-color: rgba(187, 247, 208, .05)
}

.border-r-green-200\/50 {
    border-right-color: rgba(187, 247, 208, .5)
}

.border-r-green-200\/60 {
    border-right-color: rgba(187, 247, 208, .6)
}

.border-r-green-200\/70 {
    border-right-color: rgba(187, 247, 208, .7)
}

.border-r-green-200\/75 {
    border-right-color: rgba(187, 247, 208, .75)
}

.border-r-green-200\/80 {
    border-right-color: rgba(187, 247, 208, .8)
}

.border-r-green-200\/90 {
    border-right-color: rgba(187, 247, 208, .9)
}

.border-r-green-200\/95 {
    border-right-color: rgba(187, 247, 208, .95)
}

.border-r-green-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(134 239 172/var(--tw-border-opacity))
}

.border-r-green-300\/0 {
    border-right-color: rgba(134, 239, 172, 0)
}

.border-r-green-300\/10 {
    border-right-color: rgba(134, 239, 172, .1)
}

.border-r-green-300\/100 {
    border-right-color: #86efac
}

.border-r-green-300\/20 {
    border-right-color: rgba(134, 239, 172, .2)
}

.border-r-green-300\/25 {
    border-right-color: rgba(134, 239, 172, .25)
}

.border-r-green-300\/30 {
    border-right-color: rgba(134, 239, 172, .3)
}

.border-r-green-300\/40 {
    border-right-color: rgba(134, 239, 172, .4)
}

.border-r-green-300\/5 {
    border-right-color: rgba(134, 239, 172, .05)
}

.border-r-green-300\/50 {
    border-right-color: rgba(134, 239, 172, .5)
}

.border-r-green-300\/60 {
    border-right-color: rgba(134, 239, 172, .6)
}

.border-r-green-300\/70 {
    border-right-color: rgba(134, 239, 172, .7)
}

.border-r-green-300\/75 {
    border-right-color: rgba(134, 239, 172, .75)
}

.border-r-green-300\/80 {
    border-right-color: rgba(134, 239, 172, .8)
}

.border-r-green-300\/90 {
    border-right-color: rgba(134, 239, 172, .9)
}

.border-r-green-300\/95 {
    border-right-color: rgba(134, 239, 172, .95)
}

.border-r-green-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(74 222 128/var(--tw-border-opacity))
}

.border-r-green-400\/0 {
    border-right-color: rgba(74, 222, 128, 0)
}

.border-r-green-400\/10 {
    border-right-color: rgba(74, 222, 128, .1)
}

.border-r-green-400\/100 {
    border-right-color: #4ade80
}

.border-r-green-400\/20 {
    border-right-color: rgba(74, 222, 128, .2)
}

.border-r-green-400\/25 {
    border-right-color: rgba(74, 222, 128, .25)
}

.border-r-green-400\/30 {
    border-right-color: rgba(74, 222, 128, .3)
}

.border-r-green-400\/40 {
    border-right-color: rgba(74, 222, 128, .4)
}

.border-r-green-400\/5 {
    border-right-color: rgba(74, 222, 128, .05)
}

.border-r-green-400\/50 {
    border-right-color: rgba(74, 222, 128, .5)
}

.border-r-green-400\/60 {
    border-right-color: rgba(74, 222, 128, .6)
}

.border-r-green-400\/70 {
    border-right-color: rgba(74, 222, 128, .7)
}

.border-r-green-400\/75 {
    border-right-color: rgba(74, 222, 128, .75)
}

.border-r-green-400\/80 {
    border-right-color: rgba(74, 222, 128, .8)
}

.border-r-green-400\/90 {
    border-right-color: rgba(74, 222, 128, .9)
}

.border-r-green-400\/95 {
    border-right-color: rgba(74, 222, 128, .95)
}

.border-r-green-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(34 197 94/var(--tw-border-opacity))
}

.border-r-green-500\/0 {
    border-right-color: rgba(34, 197, 94, 0)
}

.border-r-green-500\/10 {
    border-right-color: rgba(34, 197, 94, .1)
}

.border-r-green-500\/100 {
    border-right-color: #22c55e
}

.border-r-green-500\/20 {
    border-right-color: rgba(34, 197, 94, .2)
}

.border-r-green-500\/25 {
    border-right-color: rgba(34, 197, 94, .25)
}

.border-r-green-500\/30 {
    border-right-color: rgba(34, 197, 94, .3)
}

.border-r-green-500\/40 {
    border-right-color: rgba(34, 197, 94, .4)
}

.border-r-green-500\/5 {
    border-right-color: rgba(34, 197, 94, .05)
}

.border-r-green-500\/50 {
    border-right-color: rgba(34, 197, 94, .5)
}

.border-r-green-500\/60 {
    border-right-color: rgba(34, 197, 94, .6)
}

.border-r-green-500\/70 {
    border-right-color: rgba(34, 197, 94, .7)
}

.border-r-green-500\/75 {
    border-right-color: rgba(34, 197, 94, .75)
}

.border-r-green-500\/80 {
    border-right-color: rgba(34, 197, 94, .8)
}

.border-r-green-500\/90 {
    border-right-color: rgba(34, 197, 94, .9)
}

.border-r-green-500\/95 {
    border-right-color: rgba(34, 197, 94, .95)
}

.border-r-green-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(22 163 74/var(--tw-border-opacity))
}

.border-r-green-600\/0 {
    border-right-color: rgba(22, 163, 74, 0)
}

.border-r-green-600\/10 {
    border-right-color: rgba(22, 163, 74, .1)
}

.border-r-green-600\/100 {
    border-right-color: #16a34a
}

.border-r-green-600\/20 {
    border-right-color: rgba(22, 163, 74, .2)
}

.border-r-green-600\/25 {
    border-right-color: rgba(22, 163, 74, .25)
}

.border-r-green-600\/30 {
    border-right-color: rgba(22, 163, 74, .3)
}

.border-r-green-600\/40 {
    border-right-color: rgba(22, 163, 74, .4)
}

.border-r-green-600\/5 {
    border-right-color: rgba(22, 163, 74, .05)
}

.border-r-green-600\/50 {
    border-right-color: rgba(22, 163, 74, .5)
}

.border-r-green-600\/60 {
    border-right-color: rgba(22, 163, 74, .6)
}

.border-r-green-600\/70 {
    border-right-color: rgba(22, 163, 74, .7)
}

.border-r-green-600\/75 {
    border-right-color: rgba(22, 163, 74, .75)
}

.border-r-green-600\/80 {
    border-right-color: rgba(22, 163, 74, .8)
}

.border-r-green-600\/90 {
    border-right-color: rgba(22, 163, 74, .9)
}

.border-r-green-600\/95 {
    border-right-color: rgba(22, 163, 74, .95)
}

.border-r-green-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(21 128 61/var(--tw-border-opacity))
}

.border-r-green-700\/0 {
    border-right-color: rgba(21, 128, 61, 0)
}

.border-r-green-700\/10 {
    border-right-color: rgba(21, 128, 61, .1)
}

.border-r-green-700\/100 {
    border-right-color: #15803d
}

.border-r-green-700\/20 {
    border-right-color: rgba(21, 128, 61, .2)
}

.border-r-green-700\/25 {
    border-right-color: rgba(21, 128, 61, .25)
}

.border-r-green-700\/30 {
    border-right-color: rgba(21, 128, 61, .3)
}

.border-r-green-700\/40 {
    border-right-color: rgba(21, 128, 61, .4)
}

.border-r-green-700\/5 {
    border-right-color: rgba(21, 128, 61, .05)
}

.border-r-green-700\/50 {
    border-right-color: rgba(21, 128, 61, .5)
}

.border-r-green-700\/60 {
    border-right-color: rgba(21, 128, 61, .6)
}

.border-r-green-700\/70 {
    border-right-color: rgba(21, 128, 61, .7)
}

.border-r-green-700\/75 {
    border-right-color: rgba(21, 128, 61, .75)
}

.border-r-green-700\/80 {
    border-right-color: rgba(21, 128, 61, .8)
}

.border-r-green-700\/90 {
    border-right-color: rgba(21, 128, 61, .9)
}

.border-r-green-700\/95 {
    border-right-color: rgba(21, 128, 61, .95)
}

.border-r-green-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(22 101 52/var(--tw-border-opacity))
}

.border-r-green-800\/0 {
    border-right-color: rgba(22, 101, 52, 0)
}

.border-r-green-800\/10 {
    border-right-color: rgba(22, 101, 52, .1)
}

.border-r-green-800\/100 {
    border-right-color: #166534
}

.border-r-green-800\/20 {
    border-right-color: rgba(22, 101, 52, .2)
}

.border-r-green-800\/25 {
    border-right-color: rgba(22, 101, 52, .25)
}

.border-r-green-800\/30 {
    border-right-color: rgba(22, 101, 52, .3)
}

.border-r-green-800\/40 {
    border-right-color: rgba(22, 101, 52, .4)
}

.border-r-green-800\/5 {
    border-right-color: rgba(22, 101, 52, .05)
}

.border-r-green-800\/50 {
    border-right-color: rgba(22, 101, 52, .5)
}

.border-r-green-800\/60 {
    border-right-color: rgba(22, 101, 52, .6)
}

.border-r-green-800\/70 {
    border-right-color: rgba(22, 101, 52, .7)
}

.border-r-green-800\/75 {
    border-right-color: rgba(22, 101, 52, .75)
}

.border-r-green-800\/80 {
    border-right-color: rgba(22, 101, 52, .8)
}

.border-r-green-800\/90 {
    border-right-color: rgba(22, 101, 52, .9)
}

.border-r-green-800\/95 {
    border-right-color: rgba(22, 101, 52, .95)
}

.border-r-lime-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(236 252 203/var(--tw-border-opacity))
}

.border-r-lime-100\/0 {
    border-right-color: hsla(80, 89%, 89%, 0)
}

.border-r-lime-100\/10 {
    border-right-color: hsla(80, 89%, 89%, .1)
}

.border-r-lime-100\/100 {
    border-right-color: #ecfccb
}

.border-r-lime-100\/20 {
    border-right-color: hsla(80, 89%, 89%, .2)
}

.border-r-lime-100\/25 {
    border-right-color: hsla(80, 89%, 89%, .25)
}

.border-r-lime-100\/30 {
    border-right-color: hsla(80, 89%, 89%, .3)
}

.border-r-lime-100\/40 {
    border-right-color: hsla(80, 89%, 89%, .4)
}

.border-r-lime-100\/5 {
    border-right-color: hsla(80, 89%, 89%, .05)
}

.border-r-lime-100\/50 {
    border-right-color: hsla(80, 89%, 89%, .5)
}

.border-r-lime-100\/60 {
    border-right-color: hsla(80, 89%, 89%, .6)
}

.border-r-lime-100\/70 {
    border-right-color: hsla(80, 89%, 89%, .7)
}

.border-r-lime-100\/75 {
    border-right-color: hsla(80, 89%, 89%, .75)
}

.border-r-lime-100\/80 {
    border-right-color: hsla(80, 89%, 89%, .8)
}

.border-r-lime-100\/90 {
    border-right-color: hsla(80, 89%, 89%, .9)
}

.border-r-lime-100\/95 {
    border-right-color: hsla(80, 89%, 89%, .95)
}

.border-r-lime-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(217 249 157/var(--tw-border-opacity))
}

.border-r-lime-200\/0 {
    border-right-color: hsla(81, 88%, 80%, 0)
}

.border-r-lime-200\/10 {
    border-right-color: hsla(81, 88%, 80%, .1)
}

.border-r-lime-200\/100 {
    border-right-color: #d9f99d
}

.border-r-lime-200\/20 {
    border-right-color: hsla(81, 88%, 80%, .2)
}

.border-r-lime-200\/25 {
    border-right-color: hsla(81, 88%, 80%, .25)
}

.border-r-lime-200\/30 {
    border-right-color: hsla(81, 88%, 80%, .3)
}

.border-r-lime-200\/40 {
    border-right-color: hsla(81, 88%, 80%, .4)
}

.border-r-lime-200\/5 {
    border-right-color: hsla(81, 88%, 80%, .05)
}

.border-r-lime-200\/50 {
    border-right-color: hsla(81, 88%, 80%, .5)
}

.border-r-lime-200\/60 {
    border-right-color: hsla(81, 88%, 80%, .6)
}

.border-r-lime-200\/70 {
    border-right-color: hsla(81, 88%, 80%, .7)
}

.border-r-lime-200\/75 {
    border-right-color: hsla(81, 88%, 80%, .75)
}

.border-r-lime-200\/80 {
    border-right-color: hsla(81, 88%, 80%, .8)
}

.border-r-lime-200\/90 {
    border-right-color: hsla(81, 88%, 80%, .9)
}

.border-r-lime-200\/95 {
    border-right-color: hsla(81, 88%, 80%, .95)
}

.border-r-lime-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(190 242 100/var(--tw-border-opacity))
}

.border-r-lime-300\/0 {
    border-right-color: hsla(82, 85%, 67%, 0)
}

.border-r-lime-300\/10 {
    border-right-color: hsla(82, 85%, 67%, .1)
}

.border-r-lime-300\/100 {
    border-right-color: #bef264
}

.border-r-lime-300\/20 {
    border-right-color: hsla(82, 85%, 67%, .2)
}

.border-r-lime-300\/25 {
    border-right-color: hsla(82, 85%, 67%, .25)
}

.border-r-lime-300\/30 {
    border-right-color: hsla(82, 85%, 67%, .3)
}

.border-r-lime-300\/40 {
    border-right-color: hsla(82, 85%, 67%, .4)
}

.border-r-lime-300\/5 {
    border-right-color: hsla(82, 85%, 67%, .05)
}

.border-r-lime-300\/50 {
    border-right-color: hsla(82, 85%, 67%, .5)
}

.border-r-lime-300\/60 {
    border-right-color: hsla(82, 85%, 67%, .6)
}

.border-r-lime-300\/70 {
    border-right-color: hsla(82, 85%, 67%, .7)
}

.border-r-lime-300\/75 {
    border-right-color: hsla(82, 85%, 67%, .75)
}

.border-r-lime-300\/80 {
    border-right-color: hsla(82, 85%, 67%, .8)
}

.border-r-lime-300\/90 {
    border-right-color: hsla(82, 85%, 67%, .9)
}

.border-r-lime-300\/95 {
    border-right-color: hsla(82, 85%, 67%, .95)
}

.border-r-lime-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(163 230 53/var(--tw-border-opacity))
}

.border-r-lime-400\/0 {
    border-right-color: rgba(163, 230, 53, 0)
}

.border-r-lime-400\/10 {
    border-right-color: rgba(163, 230, 53, .1)
}

.border-r-lime-400\/100 {
    border-right-color: #a3e635
}

.border-r-lime-400\/20 {
    border-right-color: rgba(163, 230, 53, .2)
}

.border-r-lime-400\/25 {
    border-right-color: rgba(163, 230, 53, .25)
}

.border-r-lime-400\/30 {
    border-right-color: rgba(163, 230, 53, .3)
}

.border-r-lime-400\/40 {
    border-right-color: rgba(163, 230, 53, .4)
}

.border-r-lime-400\/5 {
    border-right-color: rgba(163, 230, 53, .05)
}

.border-r-lime-400\/50 {
    border-right-color: rgba(163, 230, 53, .5)
}

.border-r-lime-400\/60 {
    border-right-color: rgba(163, 230, 53, .6)
}

.border-r-lime-400\/70 {
    border-right-color: rgba(163, 230, 53, .7)
}

.border-r-lime-400\/75 {
    border-right-color: rgba(163, 230, 53, .75)
}

.border-r-lime-400\/80 {
    border-right-color: rgba(163, 230, 53, .8)
}

.border-r-lime-400\/90 {
    border-right-color: rgba(163, 230, 53, .9)
}

.border-r-lime-400\/95 {
    border-right-color: rgba(163, 230, 53, .95)
}

.border-r-lime-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(132 204 22/var(--tw-border-opacity))
}

.border-r-lime-500\/0 {
    border-right-color: rgba(132, 204, 22, 0)
}

.border-r-lime-500\/10 {
    border-right-color: rgba(132, 204, 22, .1)
}

.border-r-lime-500\/100 {
    border-right-color: #84cc16
}

.border-r-lime-500\/20 {
    border-right-color: rgba(132, 204, 22, .2)
}

.border-r-lime-500\/25 {
    border-right-color: rgba(132, 204, 22, .25)
}

.border-r-lime-500\/30 {
    border-right-color: rgba(132, 204, 22, .3)
}

.border-r-lime-500\/40 {
    border-right-color: rgba(132, 204, 22, .4)
}

.border-r-lime-500\/5 {
    border-right-color: rgba(132, 204, 22, .05)
}

.border-r-lime-500\/50 {
    border-right-color: rgba(132, 204, 22, .5)
}

.border-r-lime-500\/60 {
    border-right-color: rgba(132, 204, 22, .6)
}

.border-r-lime-500\/70 {
    border-right-color: rgba(132, 204, 22, .7)
}

.border-r-lime-500\/75 {
    border-right-color: rgba(132, 204, 22, .75)
}

.border-r-lime-500\/80 {
    border-right-color: rgba(132, 204, 22, .8)
}

.border-r-lime-500\/90 {
    border-right-color: rgba(132, 204, 22, .9)
}

.border-r-lime-500\/95 {
    border-right-color: rgba(132, 204, 22, .95)
}

.border-r-lime-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(101 163 13/var(--tw-border-opacity))
}

.border-r-lime-600\/0 {
    border-right-color: rgba(101, 163, 13, 0)
}

.border-r-lime-600\/10 {
    border-right-color: rgba(101, 163, 13, .1)
}

.border-r-lime-600\/100 {
    border-right-color: #65a30d
}

.border-r-lime-600\/20 {
    border-right-color: rgba(101, 163, 13, .2)
}

.border-r-lime-600\/25 {
    border-right-color: rgba(101, 163, 13, .25)
}

.border-r-lime-600\/30 {
    border-right-color: rgba(101, 163, 13, .3)
}

.border-r-lime-600\/40 {
    border-right-color: rgba(101, 163, 13, .4)
}

.border-r-lime-600\/5 {
    border-right-color: rgba(101, 163, 13, .05)
}

.border-r-lime-600\/50 {
    border-right-color: rgba(101, 163, 13, .5)
}

.border-r-lime-600\/60 {
    border-right-color: rgba(101, 163, 13, .6)
}

.border-r-lime-600\/70 {
    border-right-color: rgba(101, 163, 13, .7)
}

.border-r-lime-600\/75 {
    border-right-color: rgba(101, 163, 13, .75)
}

.border-r-lime-600\/80 {
    border-right-color: rgba(101, 163, 13, .8)
}

.border-r-lime-600\/90 {
    border-right-color: rgba(101, 163, 13, .9)
}

.border-r-lime-600\/95 {
    border-right-color: rgba(101, 163, 13, .95)
}

.border-r-lime-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(77 124 15/var(--tw-border-opacity))
}

.border-r-lime-700\/0 {
    border-right-color: rgba(77, 124, 15, 0)
}

.border-r-lime-700\/10 {
    border-right-color: rgba(77, 124, 15, .1)
}

.border-r-lime-700\/100 {
    border-right-color: #4d7c0f
}

.border-r-lime-700\/20 {
    border-right-color: rgba(77, 124, 15, .2)
}

.border-r-lime-700\/25 {
    border-right-color: rgba(77, 124, 15, .25)
}

.border-r-lime-700\/30 {
    border-right-color: rgba(77, 124, 15, .3)
}

.border-r-lime-700\/40 {
    border-right-color: rgba(77, 124, 15, .4)
}

.border-r-lime-700\/5 {
    border-right-color: rgba(77, 124, 15, .05)
}

.border-r-lime-700\/50 {
    border-right-color: rgba(77, 124, 15, .5)
}

.border-r-lime-700\/60 {
    border-right-color: rgba(77, 124, 15, .6)
}

.border-r-lime-700\/70 {
    border-right-color: rgba(77, 124, 15, .7)
}

.border-r-lime-700\/75 {
    border-right-color: rgba(77, 124, 15, .75)
}

.border-r-lime-700\/80 {
    border-right-color: rgba(77, 124, 15, .8)
}

.border-r-lime-700\/90 {
    border-right-color: rgba(77, 124, 15, .9)
}

.border-r-lime-700\/95 {
    border-right-color: rgba(77, 124, 15, .95)
}

.border-r-lime-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(63 98 18/var(--tw-border-opacity))
}

.border-r-lime-800\/0 {
    border-right-color: rgba(63, 98, 18, 0)
}

.border-r-lime-800\/10 {
    border-right-color: rgba(63, 98, 18, .1)
}

.border-r-lime-800\/100 {
    border-right-color: #3f6212
}

.border-r-lime-800\/20 {
    border-right-color: rgba(63, 98, 18, .2)
}

.border-r-lime-800\/25 {
    border-right-color: rgba(63, 98, 18, .25)
}

.border-r-lime-800\/30 {
    border-right-color: rgba(63, 98, 18, .3)
}

.border-r-lime-800\/40 {
    border-right-color: rgba(63, 98, 18, .4)
}

.border-r-lime-800\/5 {
    border-right-color: rgba(63, 98, 18, .05)
}

.border-r-lime-800\/50 {
    border-right-color: rgba(63, 98, 18, .5)
}

.border-r-lime-800\/60 {
    border-right-color: rgba(63, 98, 18, .6)
}

.border-r-lime-800\/70 {
    border-right-color: rgba(63, 98, 18, .7)
}

.border-r-lime-800\/75 {
    border-right-color: rgba(63, 98, 18, .75)
}

.border-r-lime-800\/80 {
    border-right-color: rgba(63, 98, 18, .8)
}

.border-r-lime-800\/90 {
    border-right-color: rgba(63, 98, 18, .9)
}

.border-r-lime-800\/95 {
    border-right-color: rgba(63, 98, 18, .95)
}

.border-r-orange-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(255 237 213/var(--tw-border-opacity))
}

.border-r-orange-100\/0 {
    border-right-color: rgba(255, 237, 213, 0)
}

.border-r-orange-100\/10 {
    border-right-color: rgba(255, 237, 213, .1)
}

.border-r-orange-100\/100 {
    border-right-color: #ffedd5
}

.border-r-orange-100\/20 {
    border-right-color: rgba(255, 237, 213, .2)
}

.border-r-orange-100\/25 {
    border-right-color: rgba(255, 237, 213, .25)
}

.border-r-orange-100\/30 {
    border-right-color: rgba(255, 237, 213, .3)
}

.border-r-orange-100\/40 {
    border-right-color: rgba(255, 237, 213, .4)
}

.border-r-orange-100\/5 {
    border-right-color: rgba(255, 237, 213, .05)
}

.border-r-orange-100\/50 {
    border-right-color: rgba(255, 237, 213, .5)
}

.border-r-orange-100\/60 {
    border-right-color: rgba(255, 237, 213, .6)
}

.border-r-orange-100\/70 {
    border-right-color: rgba(255, 237, 213, .7)
}

.border-r-orange-100\/75 {
    border-right-color: rgba(255, 237, 213, .75)
}

.border-r-orange-100\/80 {
    border-right-color: rgba(255, 237, 213, .8)
}

.border-r-orange-100\/90 {
    border-right-color: rgba(255, 237, 213, .9)
}

.border-r-orange-100\/95 {
    border-right-color: rgba(255, 237, 213, .95)
}

.border-r-orange-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(254 215 170/var(--tw-border-opacity))
}

.border-r-orange-200\/0 {
    border-right-color: hsla(32, 98%, 83%, 0)
}

.border-r-orange-200\/10 {
    border-right-color: hsla(32, 98%, 83%, .1)
}

.border-r-orange-200\/100 {
    border-right-color: #fed7aa
}

.border-r-orange-200\/20 {
    border-right-color: hsla(32, 98%, 83%, .2)
}

.border-r-orange-200\/25 {
    border-right-color: hsla(32, 98%, 83%, .25)
}

.border-r-orange-200\/30 {
    border-right-color: hsla(32, 98%, 83%, .3)
}

.border-r-orange-200\/40 {
    border-right-color: hsla(32, 98%, 83%, .4)
}

.border-r-orange-200\/5 {
    border-right-color: hsla(32, 98%, 83%, .05)
}

.border-r-orange-200\/50 {
    border-right-color: hsla(32, 98%, 83%, .5)
}

.border-r-orange-200\/60 {
    border-right-color: hsla(32, 98%, 83%, .6)
}

.border-r-orange-200\/70 {
    border-right-color: hsla(32, 98%, 83%, .7)
}

.border-r-orange-200\/75 {
    border-right-color: hsla(32, 98%, 83%, .75)
}

.border-r-orange-200\/80 {
    border-right-color: hsla(32, 98%, 83%, .8)
}

.border-r-orange-200\/90 {
    border-right-color: hsla(32, 98%, 83%, .9)
}

.border-r-orange-200\/95 {
    border-right-color: hsla(32, 98%, 83%, .95)
}

.border-r-orange-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(253 186 116/var(--tw-border-opacity))
}

.border-r-orange-300\/0 {
    border-right-color: hsla(31, 97%, 72%, 0)
}

.border-r-orange-300\/10 {
    border-right-color: hsla(31, 97%, 72%, .1)
}

.border-r-orange-300\/100 {
    border-right-color: #fdba74
}

.border-r-orange-300\/20 {
    border-right-color: hsla(31, 97%, 72%, .2)
}

.border-r-orange-300\/25 {
    border-right-color: hsla(31, 97%, 72%, .25)
}

.border-r-orange-300\/30 {
    border-right-color: hsla(31, 97%, 72%, .3)
}

.border-r-orange-300\/40 {
    border-right-color: hsla(31, 97%, 72%, .4)
}

.border-r-orange-300\/5 {
    border-right-color: hsla(31, 97%, 72%, .05)
}

.border-r-orange-300\/50 {
    border-right-color: hsla(31, 97%, 72%, .5)
}

.border-r-orange-300\/60 {
    border-right-color: hsla(31, 97%, 72%, .6)
}

.border-r-orange-300\/70 {
    border-right-color: hsla(31, 97%, 72%, .7)
}

.border-r-orange-300\/75 {
    border-right-color: hsla(31, 97%, 72%, .75)
}

.border-r-orange-300\/80 {
    border-right-color: hsla(31, 97%, 72%, .8)
}

.border-r-orange-300\/90 {
    border-right-color: hsla(31, 97%, 72%, .9)
}

.border-r-orange-300\/95 {
    border-right-color: hsla(31, 97%, 72%, .95)
}

.border-r-orange-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(251 146 60/var(--tw-border-opacity))
}

.border-r-orange-400\/0 {
    border-right-color: rgba(251, 146, 60, 0)
}

.border-r-orange-400\/10 {
    border-right-color: rgba(251, 146, 60, .1)
}

.border-r-orange-400\/100 {
    border-right-color: #fb923c
}

.border-r-orange-400\/20 {
    border-right-color: rgba(251, 146, 60, .2)
}

.border-r-orange-400\/25 {
    border-right-color: rgba(251, 146, 60, .25)
}

.border-r-orange-400\/30 {
    border-right-color: rgba(251, 146, 60, .3)
}

.border-r-orange-400\/40 {
    border-right-color: rgba(251, 146, 60, .4)
}

.border-r-orange-400\/5 {
    border-right-color: rgba(251, 146, 60, .05)
}

.border-r-orange-400\/50 {
    border-right-color: rgba(251, 146, 60, .5)
}

.border-r-orange-400\/60 {
    border-right-color: rgba(251, 146, 60, .6)
}

.border-r-orange-400\/70 {
    border-right-color: rgba(251, 146, 60, .7)
}

.border-r-orange-400\/75 {
    border-right-color: rgba(251, 146, 60, .75)
}

.border-r-orange-400\/80 {
    border-right-color: rgba(251, 146, 60, .8)
}

.border-r-orange-400\/90 {
    border-right-color: rgba(251, 146, 60, .9)
}

.border-r-orange-400\/95 {
    border-right-color: rgba(251, 146, 60, .95)
}

.border-r-orange-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(249 115 22/var(--tw-border-opacity))
}

.border-r-orange-500\/0 {
    border-right-color: rgba(249, 115, 22, 0)
}

.border-r-orange-500\/10 {
    border-right-color: rgba(249, 115, 22, .1)
}

.border-r-orange-500\/100 {
    border-right-color: #f97316
}

.border-r-orange-500\/20 {
    border-right-color: rgba(249, 115, 22, .2)
}

.border-r-orange-500\/25 {
    border-right-color: rgba(249, 115, 22, .25)
}

.border-r-orange-500\/30 {
    border-right-color: rgba(249, 115, 22, .3)
}

.border-r-orange-500\/40 {
    border-right-color: rgba(249, 115, 22, .4)
}

.border-r-orange-500\/5 {
    border-right-color: rgba(249, 115, 22, .05)
}

.border-r-orange-500\/50 {
    border-right-color: rgba(249, 115, 22, .5)
}

.border-r-orange-500\/60 {
    border-right-color: rgba(249, 115, 22, .6)
}

.border-r-orange-500\/70 {
    border-right-color: rgba(249, 115, 22, .7)
}

.border-r-orange-500\/75 {
    border-right-color: rgba(249, 115, 22, .75)
}

.border-r-orange-500\/80 {
    border-right-color: rgba(249, 115, 22, .8)
}

.border-r-orange-500\/90 {
    border-right-color: rgba(249, 115, 22, .9)
}

.border-r-orange-500\/95 {
    border-right-color: rgba(249, 115, 22, .95)
}

.border-r-orange-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(234 88 12/var(--tw-border-opacity))
}

.border-r-orange-600\/0 {
    border-right-color: rgba(234, 88, 12, 0)
}

.border-r-orange-600\/10 {
    border-right-color: rgba(234, 88, 12, .1)
}

.border-r-orange-600\/100 {
    border-right-color: #ea580c
}

.border-r-orange-600\/20 {
    border-right-color: rgba(234, 88, 12, .2)
}

.border-r-orange-600\/25 {
    border-right-color: rgba(234, 88, 12, .25)
}

.border-r-orange-600\/30 {
    border-right-color: rgba(234, 88, 12, .3)
}

.border-r-orange-600\/40 {
    border-right-color: rgba(234, 88, 12, .4)
}

.border-r-orange-600\/5 {
    border-right-color: rgba(234, 88, 12, .05)
}

.border-r-orange-600\/50 {
    border-right-color: rgba(234, 88, 12, .5)
}

.border-r-orange-600\/60 {
    border-right-color: rgba(234, 88, 12, .6)
}

.border-r-orange-600\/70 {
    border-right-color: rgba(234, 88, 12, .7)
}

.border-r-orange-600\/75 {
    border-right-color: rgba(234, 88, 12, .75)
}

.border-r-orange-600\/80 {
    border-right-color: rgba(234, 88, 12, .8)
}

.border-r-orange-600\/90 {
    border-right-color: rgba(234, 88, 12, .9)
}

.border-r-orange-600\/95 {
    border-right-color: rgba(234, 88, 12, .95)
}

.border-r-orange-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(194 65 12/var(--tw-border-opacity))
}

.border-r-orange-700\/0 {
    border-right-color: rgba(194, 65, 12, 0)
}

.border-r-orange-700\/10 {
    border-right-color: rgba(194, 65, 12, .1)
}

.border-r-orange-700\/100 {
    border-right-color: #c2410c
}

.border-r-orange-700\/20 {
    border-right-color: rgba(194, 65, 12, .2)
}

.border-r-orange-700\/25 {
    border-right-color: rgba(194, 65, 12, .25)
}

.border-r-orange-700\/30 {
    border-right-color: rgba(194, 65, 12, .3)
}

.border-r-orange-700\/40 {
    border-right-color: rgba(194, 65, 12, .4)
}

.border-r-orange-700\/5 {
    border-right-color: rgba(194, 65, 12, .05)
}

.border-r-orange-700\/50 {
    border-right-color: rgba(194, 65, 12, .5)
}

.border-r-orange-700\/60 {
    border-right-color: rgba(194, 65, 12, .6)
}

.border-r-orange-700\/70 {
    border-right-color: rgba(194, 65, 12, .7)
}

.border-r-orange-700\/75 {
    border-right-color: rgba(194, 65, 12, .75)
}

.border-r-orange-700\/80 {
    border-right-color: rgba(194, 65, 12, .8)
}

.border-r-orange-700\/90 {
    border-right-color: rgba(194, 65, 12, .9)
}

.border-r-orange-700\/95 {
    border-right-color: rgba(194, 65, 12, .95)
}

.border-r-orange-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(154 52 18/var(--tw-border-opacity))
}

.border-r-orange-800\/0 {
    border-right-color: rgba(154, 52, 18, 0)
}

.border-r-orange-800\/10 {
    border-right-color: rgba(154, 52, 18, .1)
}

.border-r-orange-800\/100 {
    border-right-color: #9a3412
}

.border-r-orange-800\/20 {
    border-right-color: rgba(154, 52, 18, .2)
}

.border-r-orange-800\/25 {
    border-right-color: rgba(154, 52, 18, .25)
}

.border-r-orange-800\/30 {
    border-right-color: rgba(154, 52, 18, .3)
}

.border-r-orange-800\/40 {
    border-right-color: rgba(154, 52, 18, .4)
}

.border-r-orange-800\/5 {
    border-right-color: rgba(154, 52, 18, .05)
}

.border-r-orange-800\/50 {
    border-right-color: rgba(154, 52, 18, .5)
}

.border-r-orange-800\/60 {
    border-right-color: rgba(154, 52, 18, .6)
}

.border-r-orange-800\/70 {
    border-right-color: rgba(154, 52, 18, .7)
}

.border-r-orange-800\/75 {
    border-right-color: rgba(154, 52, 18, .75)
}

.border-r-orange-800\/80 {
    border-right-color: rgba(154, 52, 18, .8)
}

.border-r-orange-800\/90 {
    border-right-color: rgba(154, 52, 18, .9)
}

.border-r-orange-800\/95 {
    border-right-color: rgba(154, 52, 18, .95)
}

.border-r-red-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(254 226 226/var(--tw-border-opacity))
}

.border-r-red-100\/0 {
    border-right-color: hsla(0, 93%, 94%, 0)
}

.border-r-red-100\/10 {
    border-right-color: hsla(0, 93%, 94%, .1)
}

.border-r-red-100\/100 {
    border-right-color: #fee2e2
}

.border-r-red-100\/20 {
    border-right-color: hsla(0, 93%, 94%, .2)
}

.border-r-red-100\/25 {
    border-right-color: hsla(0, 93%, 94%, .25)
}

.border-r-red-100\/30 {
    border-right-color: hsla(0, 93%, 94%, .3)
}

.border-r-red-100\/40 {
    border-right-color: hsla(0, 93%, 94%, .4)
}

.border-r-red-100\/5 {
    border-right-color: hsla(0, 93%, 94%, .05)
}

.border-r-red-100\/50 {
    border-right-color: hsla(0, 93%, 94%, .5)
}

.border-r-red-100\/60 {
    border-right-color: hsla(0, 93%, 94%, .6)
}

.border-r-red-100\/70 {
    border-right-color: hsla(0, 93%, 94%, .7)
}

.border-r-red-100\/75 {
    border-right-color: hsla(0, 93%, 94%, .75)
}

.border-r-red-100\/80 {
    border-right-color: hsla(0, 93%, 94%, .8)
}

.border-r-red-100\/90 {
    border-right-color: hsla(0, 93%, 94%, .9)
}

.border-r-red-100\/95 {
    border-right-color: hsla(0, 93%, 94%, .95)
}

.border-r-red-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(254 202 202/var(--tw-border-opacity))
}

.border-r-red-200\/0 {
    border-right-color: hsla(0, 96%, 89%, 0)
}

.border-r-red-200\/10 {
    border-right-color: hsla(0, 96%, 89%, .1)
}

.border-r-red-200\/100 {
    border-right-color: #fecaca
}

.border-r-red-200\/20 {
    border-right-color: hsla(0, 96%, 89%, .2)
}

.border-r-red-200\/25 {
    border-right-color: hsla(0, 96%, 89%, .25)
}

.border-r-red-200\/30 {
    border-right-color: hsla(0, 96%, 89%, .3)
}

.border-r-red-200\/40 {
    border-right-color: hsla(0, 96%, 89%, .4)
}

.border-r-red-200\/5 {
    border-right-color: hsla(0, 96%, 89%, .05)
}

.border-r-red-200\/50 {
    border-right-color: hsla(0, 96%, 89%, .5)
}

.border-r-red-200\/60 {
    border-right-color: hsla(0, 96%, 89%, .6)
}

.border-r-red-200\/70 {
    border-right-color: hsla(0, 96%, 89%, .7)
}

.border-r-red-200\/75 {
    border-right-color: hsla(0, 96%, 89%, .75)
}

.border-r-red-200\/80 {
    border-right-color: hsla(0, 96%, 89%, .8)
}

.border-r-red-200\/90 {
    border-right-color: hsla(0, 96%, 89%, .9)
}

.border-r-red-200\/95 {
    border-right-color: hsla(0, 96%, 89%, .95)
}

.border-r-red-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(252 165 165/var(--tw-border-opacity))
}

.border-r-red-300\/0 {
    border-right-color: hsla(0, 94%, 82%, 0)
}

.border-r-red-300\/10 {
    border-right-color: hsla(0, 94%, 82%, .1)
}

.border-r-red-300\/100 {
    border-right-color: #fca5a5
}

.border-r-red-300\/20 {
    border-right-color: hsla(0, 94%, 82%, .2)
}

.border-r-red-300\/25 {
    border-right-color: hsla(0, 94%, 82%, .25)
}

.border-r-red-300\/30 {
    border-right-color: hsla(0, 94%, 82%, .3)
}

.border-r-red-300\/40 {
    border-right-color: hsla(0, 94%, 82%, .4)
}

.border-r-red-300\/5 {
    border-right-color: hsla(0, 94%, 82%, .05)
}

.border-r-red-300\/50 {
    border-right-color: hsla(0, 94%, 82%, .5)
}

.border-r-red-300\/60 {
    border-right-color: hsla(0, 94%, 82%, .6)
}

.border-r-red-300\/70 {
    border-right-color: hsla(0, 94%, 82%, .7)
}

.border-r-red-300\/75 {
    border-right-color: hsla(0, 94%, 82%, .75)
}

.border-r-red-300\/80 {
    border-right-color: hsla(0, 94%, 82%, .8)
}

.border-r-red-300\/90 {
    border-right-color: hsla(0, 94%, 82%, .9)
}

.border-r-red-300\/95 {
    border-right-color: hsla(0, 94%, 82%, .95)
}

.border-r-red-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(248 113 113/var(--tw-border-opacity))
}

.border-r-red-400\/0 {
    border-right-color: hsla(0, 91%, 71%, 0)
}

.border-r-red-400\/10 {
    border-right-color: hsla(0, 91%, 71%, .1)
}

.border-r-red-400\/100 {
    border-right-color: #f87171
}

.border-r-red-400\/20 {
    border-right-color: hsla(0, 91%, 71%, .2)
}

.border-r-red-400\/25 {
    border-right-color: hsla(0, 91%, 71%, .25)
}

.border-r-red-400\/30 {
    border-right-color: hsla(0, 91%, 71%, .3)
}

.border-r-red-400\/40 {
    border-right-color: hsla(0, 91%, 71%, .4)
}

.border-r-red-400\/5 {
    border-right-color: hsla(0, 91%, 71%, .05)
}

.border-r-red-400\/50 {
    border-right-color: hsla(0, 91%, 71%, .5)
}

.border-r-red-400\/60 {
    border-right-color: hsla(0, 91%, 71%, .6)
}

.border-r-red-400\/70 {
    border-right-color: hsla(0, 91%, 71%, .7)
}

.border-r-red-400\/75 {
    border-right-color: hsla(0, 91%, 71%, .75)
}

.border-r-red-400\/80 {
    border-right-color: hsla(0, 91%, 71%, .8)
}

.border-r-red-400\/90 {
    border-right-color: hsla(0, 91%, 71%, .9)
}

.border-r-red-400\/95 {
    border-right-color: hsla(0, 91%, 71%, .95)
}

.border-r-red-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(239 68 68/var(--tw-border-opacity))
}

.border-r-red-500\/0 {
    border-right-color: rgba(239, 68, 68, 0)
}

.border-r-red-500\/10 {
    border-right-color: rgba(239, 68, 68, .1)
}

.border-r-red-500\/100 {
    border-right-color: #ef4444
}

.border-r-red-500\/20 {
    border-right-color: rgba(239, 68, 68, .2)
}

.border-r-red-500\/25 {
    border-right-color: rgba(239, 68, 68, .25)
}

.border-r-red-500\/30 {
    border-right-color: rgba(239, 68, 68, .3)
}

.border-r-red-500\/40 {
    border-right-color: rgba(239, 68, 68, .4)
}

.border-r-red-500\/5 {
    border-right-color: rgba(239, 68, 68, .05)
}

.border-r-red-500\/50 {
    border-right-color: rgba(239, 68, 68, .5)
}

.border-r-red-500\/60 {
    border-right-color: rgba(239, 68, 68, .6)
}

.border-r-red-500\/70 {
    border-right-color: rgba(239, 68, 68, .7)
}

.border-r-red-500\/75 {
    border-right-color: rgba(239, 68, 68, .75)
}

.border-r-red-500\/80 {
    border-right-color: rgba(239, 68, 68, .8)
}

.border-r-red-500\/90 {
    border-right-color: rgba(239, 68, 68, .9)
}

.border-r-red-500\/95 {
    border-right-color: rgba(239, 68, 68, .95)
}

.border-r-red-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(220 38 38/var(--tw-border-opacity))
}

.border-r-red-600\/0 {
    border-right-color: rgba(220, 38, 38, 0)
}

.border-r-red-600\/10 {
    border-right-color: rgba(220, 38, 38, .1)
}

.border-r-red-600\/100 {
    border-right-color: #dc2626
}

.border-r-red-600\/20 {
    border-right-color: rgba(220, 38, 38, .2)
}

.border-r-red-600\/25 {
    border-right-color: rgba(220, 38, 38, .25)
}

.border-r-red-600\/30 {
    border-right-color: rgba(220, 38, 38, .3)
}

.border-r-red-600\/40 {
    border-right-color: rgba(220, 38, 38, .4)
}

.border-r-red-600\/5 {
    border-right-color: rgba(220, 38, 38, .05)
}

.border-r-red-600\/50 {
    border-right-color: rgba(220, 38, 38, .5)
}

.border-r-red-600\/60 {
    border-right-color: rgba(220, 38, 38, .6)
}

.border-r-red-600\/70 {
    border-right-color: rgba(220, 38, 38, .7)
}

.border-r-red-600\/75 {
    border-right-color: rgba(220, 38, 38, .75)
}

.border-r-red-600\/80 {
    border-right-color: rgba(220, 38, 38, .8)
}

.border-r-red-600\/90 {
    border-right-color: rgba(220, 38, 38, .9)
}

.border-r-red-600\/95 {
    border-right-color: rgba(220, 38, 38, .95)
}

.border-r-red-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(185 28 28/var(--tw-border-opacity))
}

.border-r-red-700\/0 {
    border-right-color: rgba(185, 28, 28, 0)
}

.border-r-red-700\/10 {
    border-right-color: rgba(185, 28, 28, .1)
}

.border-r-red-700\/100 {
    border-right-color: #b91c1c
}

.border-r-red-700\/20 {
    border-right-color: rgba(185, 28, 28, .2)
}

.border-r-red-700\/25 {
    border-right-color: rgba(185, 28, 28, .25)
}

.border-r-red-700\/30 {
    border-right-color: rgba(185, 28, 28, .3)
}

.border-r-red-700\/40 {
    border-right-color: rgba(185, 28, 28, .4)
}

.border-r-red-700\/5 {
    border-right-color: rgba(185, 28, 28, .05)
}

.border-r-red-700\/50 {
    border-right-color: rgba(185, 28, 28, .5)
}

.border-r-red-700\/60 {
    border-right-color: rgba(185, 28, 28, .6)
}

.border-r-red-700\/70 {
    border-right-color: rgba(185, 28, 28, .7)
}

.border-r-red-700\/75 {
    border-right-color: rgba(185, 28, 28, .75)
}

.border-r-red-700\/80 {
    border-right-color: rgba(185, 28, 28, .8)
}

.border-r-red-700\/90 {
    border-right-color: rgba(185, 28, 28, .9)
}

.border-r-red-700\/95 {
    border-right-color: rgba(185, 28, 28, .95)
}

.border-r-red-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(153 27 27/var(--tw-border-opacity))
}

.border-r-red-800\/0 {
    border-right-color: rgba(153, 27, 27, 0)
}

.border-r-red-800\/10 {
    border-right-color: rgba(153, 27, 27, .1)
}

.border-r-red-800\/100 {
    border-right-color: #991b1b
}

.border-r-red-800\/20 {
    border-right-color: rgba(153, 27, 27, .2)
}

.border-r-red-800\/25 {
    border-right-color: rgba(153, 27, 27, .25)
}

.border-r-red-800\/30 {
    border-right-color: rgba(153, 27, 27, .3)
}

.border-r-red-800\/40 {
    border-right-color: rgba(153, 27, 27, .4)
}

.border-r-red-800\/5 {
    border-right-color: rgba(153, 27, 27, .05)
}

.border-r-red-800\/50 {
    border-right-color: rgba(153, 27, 27, .5)
}

.border-r-red-800\/60 {
    border-right-color: rgba(153, 27, 27, .6)
}

.border-r-red-800\/70 {
    border-right-color: rgba(153, 27, 27, .7)
}

.border-r-red-800\/75 {
    border-right-color: rgba(153, 27, 27, .75)
}

.border-r-red-800\/80 {
    border-right-color: rgba(153, 27, 27, .8)
}

.border-r-red-800\/90 {
    border-right-color: rgba(153, 27, 27, .9)
}

.border-r-red-800\/95 {
    border-right-color: rgba(153, 27, 27, .95)
}

.border-r-slate-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(241 245 249/var(--tw-border-opacity))
}

.border-r-slate-100\/0 {
    border-right-color: rgba(241, 245, 249, 0)
}

.border-r-slate-100\/10 {
    border-right-color: rgba(241, 245, 249, .1)
}

.border-r-slate-100\/100 {
    border-right-color: #f1f5f9
}

.border-r-slate-100\/20 {
    border-right-color: rgba(241, 245, 249, .2)
}

.border-r-slate-100\/25 {
    border-right-color: rgba(241, 245, 249, .25)
}

.border-r-slate-100\/30 {
    border-right-color: rgba(241, 245, 249, .3)
}

.border-r-slate-100\/40 {
    border-right-color: rgba(241, 245, 249, .4)
}

.border-r-slate-100\/5 {
    border-right-color: rgba(241, 245, 249, .05)
}

.border-r-slate-100\/50 {
    border-right-color: rgba(241, 245, 249, .5)
}

.border-r-slate-100\/60 {
    border-right-color: rgba(241, 245, 249, .6)
}

.border-r-slate-100\/70 {
    border-right-color: rgba(241, 245, 249, .7)
}

.border-r-slate-100\/75 {
    border-right-color: rgba(241, 245, 249, .75)
}

.border-r-slate-100\/80 {
    border-right-color: rgba(241, 245, 249, .8)
}

.border-r-slate-100\/90 {
    border-right-color: rgba(241, 245, 249, .9)
}

.border-r-slate-100\/95 {
    border-right-color: rgba(241, 245, 249, .95)
}

.border-r-slate-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(226 232 240/var(--tw-border-opacity))
}

.border-r-slate-200\/0 {
    border-right-color: rgba(226, 232, 240, 0)
}

.border-r-slate-200\/10 {
    border-right-color: rgba(226, 232, 240, .1)
}

.border-r-slate-200\/100 {
    border-right-color: #e2e8f0
}

.border-r-slate-200\/20 {
    border-right-color: rgba(226, 232, 240, .2)
}

.border-r-slate-200\/25 {
    border-right-color: rgba(226, 232, 240, .25)
}

.border-r-slate-200\/30 {
    border-right-color: rgba(226, 232, 240, .3)
}

.border-r-slate-200\/40 {
    border-right-color: rgba(226, 232, 240, .4)
}

.border-r-slate-200\/5 {
    border-right-color: rgba(226, 232, 240, .05)
}

.border-r-slate-200\/50 {
    border-right-color: rgba(226, 232, 240, .5)
}

.border-r-slate-200\/60 {
    border-right-color: rgba(226, 232, 240, .6)
}

.border-r-slate-200\/70 {
    border-right-color: rgba(226, 232, 240, .7)
}

.border-r-slate-200\/75 {
    border-right-color: rgba(226, 232, 240, .75)
}

.border-r-slate-200\/80 {
    border-right-color: rgba(226, 232, 240, .8)
}

.border-r-slate-200\/90 {
    border-right-color: rgba(226, 232, 240, .9)
}

.border-r-slate-200\/95 {
    border-right-color: rgba(226, 232, 240, .95)
}

.border-r-slate-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(203 213 225/var(--tw-border-opacity))
}

.border-r-slate-300\/0 {
    border-right-color: rgba(203, 213, 225, 0)
}

.border-r-slate-300\/10 {
    border-right-color: rgba(203, 213, 225, .1)
}

.border-r-slate-300\/100 {
    border-right-color: #cbd5e1
}

.border-r-slate-300\/20 {
    border-right-color: rgba(203, 213, 225, .2)
}

.border-r-slate-300\/25 {
    border-right-color: rgba(203, 213, 225, .25)
}

.border-r-slate-300\/30 {
    border-right-color: rgba(203, 213, 225, .3)
}

.border-r-slate-300\/40 {
    border-right-color: rgba(203, 213, 225, .4)
}

.border-r-slate-300\/5 {
    border-right-color: rgba(203, 213, 225, .05)
}

.border-r-slate-300\/50 {
    border-right-color: rgba(203, 213, 225, .5)
}

.border-r-slate-300\/60 {
    border-right-color: rgba(203, 213, 225, .6)
}

.border-r-slate-300\/70 {
    border-right-color: rgba(203, 213, 225, .7)
}

.border-r-slate-300\/75 {
    border-right-color: rgba(203, 213, 225, .75)
}

.border-r-slate-300\/80 {
    border-right-color: rgba(203, 213, 225, .8)
}

.border-r-slate-300\/90 {
    border-right-color: rgba(203, 213, 225, .9)
}

.border-r-slate-300\/95 {
    border-right-color: rgba(203, 213, 225, .95)
}

.border-r-slate-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(148 163 184/var(--tw-border-opacity))
}

.border-r-slate-400\/0 {
    border-right-color: rgba(148, 163, 184, 0)
}

.border-r-slate-400\/10 {
    border-right-color: rgba(148, 163, 184, .1)
}

.border-r-slate-400\/100 {
    border-right-color: #94a3b8
}

.border-r-slate-400\/20 {
    border-right-color: rgba(148, 163, 184, .2)
}

.border-r-slate-400\/25 {
    border-right-color: rgba(148, 163, 184, .25)
}

.border-r-slate-400\/30 {
    border-right-color: rgba(148, 163, 184, .3)
}

.border-r-slate-400\/40 {
    border-right-color: rgba(148, 163, 184, .4)
}

.border-r-slate-400\/5 {
    border-right-color: rgba(148, 163, 184, .05)
}

.border-r-slate-400\/50 {
    border-right-color: rgba(148, 163, 184, .5)
}

.border-r-slate-400\/60 {
    border-right-color: rgba(148, 163, 184, .6)
}

.border-r-slate-400\/70 {
    border-right-color: rgba(148, 163, 184, .7)
}

.border-r-slate-400\/75 {
    border-right-color: rgba(148, 163, 184, .75)
}

.border-r-slate-400\/80 {
    border-right-color: rgba(148, 163, 184, .8)
}

.border-r-slate-400\/90 {
    border-right-color: rgba(148, 163, 184, .9)
}

.border-r-slate-400\/95 {
    border-right-color: rgba(148, 163, 184, .95)
}

.border-r-slate-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(100 116 139/var(--tw-border-opacity))
}

.border-r-slate-500\/0 {
    border-right-color: rgba(100, 116, 139, 0)
}

.border-r-slate-500\/10 {
    border-right-color: rgba(100, 116, 139, .1)
}

.border-r-slate-500\/100 {
    border-right-color: #64748b
}

.border-r-slate-500\/20 {
    border-right-color: rgba(100, 116, 139, .2)
}

.border-r-slate-500\/25 {
    border-right-color: rgba(100, 116, 139, .25)
}

.border-r-slate-500\/30 {
    border-right-color: rgba(100, 116, 139, .3)
}

.border-r-slate-500\/40 {
    border-right-color: rgba(100, 116, 139, .4)
}

.border-r-slate-500\/5 {
    border-right-color: rgba(100, 116, 139, .05)
}

.border-r-slate-500\/50 {
    border-right-color: rgba(100, 116, 139, .5)
}

.border-r-slate-500\/60 {
    border-right-color: rgba(100, 116, 139, .6)
}

.border-r-slate-500\/70 {
    border-right-color: rgba(100, 116, 139, .7)
}

.border-r-slate-500\/75 {
    border-right-color: rgba(100, 116, 139, .75)
}

.border-r-slate-500\/80 {
    border-right-color: rgba(100, 116, 139, .8)
}

.border-r-slate-500\/90 {
    border-right-color: rgba(100, 116, 139, .9)
}

.border-r-slate-500\/95 {
    border-right-color: rgba(100, 116, 139, .95)
}

.border-r-slate-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(71 85 105/var(--tw-border-opacity))
}

.border-r-slate-600\/0 {
    border-right-color: rgba(71, 85, 105, 0)
}

.border-r-slate-600\/10 {
    border-right-color: rgba(71, 85, 105, .1)
}

.border-r-slate-600\/100 {
    border-right-color: #475569
}

.border-r-slate-600\/20 {
    border-right-color: rgba(71, 85, 105, .2)
}

.border-r-slate-600\/25 {
    border-right-color: rgba(71, 85, 105, .25)
}

.border-r-slate-600\/30 {
    border-right-color: rgba(71, 85, 105, .3)
}

.border-r-slate-600\/40 {
    border-right-color: rgba(71, 85, 105, .4)
}

.border-r-slate-600\/5 {
    border-right-color: rgba(71, 85, 105, .05)
}

.border-r-slate-600\/50 {
    border-right-color: rgba(71, 85, 105, .5)
}

.border-r-slate-600\/60 {
    border-right-color: rgba(71, 85, 105, .6)
}

.border-r-slate-600\/70 {
    border-right-color: rgba(71, 85, 105, .7)
}

.border-r-slate-600\/75 {
    border-right-color: rgba(71, 85, 105, .75)
}

.border-r-slate-600\/80 {
    border-right-color: rgba(71, 85, 105, .8)
}

.border-r-slate-600\/90 {
    border-right-color: rgba(71, 85, 105, .9)
}

.border-r-slate-600\/95 {
    border-right-color: rgba(71, 85, 105, .95)
}

.border-r-slate-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(51 65 85/var(--tw-border-opacity))
}

.border-r-slate-700\/0 {
    border-right-color: rgba(51, 65, 85, 0)
}

.border-r-slate-700\/10 {
    border-right-color: rgba(51, 65, 85, .1)
}

.border-r-slate-700\/100 {
    border-right-color: #334155
}

.border-r-slate-700\/20 {
    border-right-color: rgba(51, 65, 85, .2)
}

.border-r-slate-700\/25 {
    border-right-color: rgba(51, 65, 85, .25)
}

.border-r-slate-700\/30 {
    border-right-color: rgba(51, 65, 85, .3)
}

.border-r-slate-700\/40 {
    border-right-color: rgba(51, 65, 85, .4)
}

.border-r-slate-700\/5 {
    border-right-color: rgba(51, 65, 85, .05)
}

.border-r-slate-700\/50 {
    border-right-color: rgba(51, 65, 85, .5)
}

.border-r-slate-700\/60 {
    border-right-color: rgba(51, 65, 85, .6)
}

.border-r-slate-700\/70 {
    border-right-color: rgba(51, 65, 85, .7)
}

.border-r-slate-700\/75 {
    border-right-color: rgba(51, 65, 85, .75)
}

.border-r-slate-700\/80 {
    border-right-color: rgba(51, 65, 85, .8)
}

.border-r-slate-700\/90 {
    border-right-color: rgba(51, 65, 85, .9)
}

.border-r-slate-700\/95 {
    border-right-color: rgba(51, 65, 85, .95)
}

.border-r-slate-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(30 41 59/var(--tw-border-opacity))
}

.border-r-slate-800\/0 {
    border-right-color: rgba(30, 41, 59, 0)
}

.border-r-slate-800\/10 {
    border-right-color: rgba(30, 41, 59, .1)
}

.border-r-slate-800\/100 {
    border-right-color: #1e293b
}

.border-r-slate-800\/20 {
    border-right-color: rgba(30, 41, 59, .2)
}

.border-r-slate-800\/25 {
    border-right-color: rgba(30, 41, 59, .25)
}

.border-r-slate-800\/30 {
    border-right-color: rgba(30, 41, 59, .3)
}

.border-r-slate-800\/40 {
    border-right-color: rgba(30, 41, 59, .4)
}

.border-r-slate-800\/5 {
    border-right-color: rgba(30, 41, 59, .05)
}

.border-r-slate-800\/50 {
    border-right-color: rgba(30, 41, 59, .5)
}

.border-r-slate-800\/60 {
    border-right-color: rgba(30, 41, 59, .6)
}

.border-r-slate-800\/70 {
    border-right-color: rgba(30, 41, 59, .7)
}

.border-r-slate-800\/75 {
    border-right-color: rgba(30, 41, 59, .75)
}

.border-r-slate-800\/80 {
    border-right-color: rgba(30, 41, 59, .8)
}

.border-r-slate-800\/90 {
    border-right-color: rgba(30, 41, 59, .9)
}

.border-r-slate-800\/95 {
    border-right-color: rgba(30, 41, 59, .95)
}

.border-r-violet-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(237 233 254/var(--tw-border-opacity))
}

.border-r-violet-100\/0 {
    border-right-color: rgba(237, 233, 254, 0)
}

.border-r-violet-100\/10 {
    border-right-color: rgba(237, 233, 254, .1)
}

.border-r-violet-100\/100 {
    border-right-color: #ede9fe
}

.border-r-violet-100\/20 {
    border-right-color: rgba(237, 233, 254, .2)
}

.border-r-violet-100\/25 {
    border-right-color: rgba(237, 233, 254, .25)
}

.border-r-violet-100\/30 {
    border-right-color: rgba(237, 233, 254, .3)
}

.border-r-violet-100\/40 {
    border-right-color: rgba(237, 233, 254, .4)
}

.border-r-violet-100\/5 {
    border-right-color: rgba(237, 233, 254, .05)
}

.border-r-violet-100\/50 {
    border-right-color: rgba(237, 233, 254, .5)
}

.border-r-violet-100\/60 {
    border-right-color: rgba(237, 233, 254, .6)
}

.border-r-violet-100\/70 {
    border-right-color: rgba(237, 233, 254, .7)
}

.border-r-violet-100\/75 {
    border-right-color: rgba(237, 233, 254, .75)
}

.border-r-violet-100\/80 {
    border-right-color: rgba(237, 233, 254, .8)
}

.border-r-violet-100\/90 {
    border-right-color: rgba(237, 233, 254, .9)
}

.border-r-violet-100\/95 {
    border-right-color: rgba(237, 233, 254, .95)
}

.border-r-violet-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(221 214 254/var(--tw-border-opacity))
}

.border-r-violet-200\/0 {
    border-right-color: rgba(221, 214, 254, 0)
}

.border-r-violet-200\/10 {
    border-right-color: rgba(221, 214, 254, .1)
}

.border-r-violet-200\/100 {
    border-right-color: #ddd6fe
}

.border-r-violet-200\/20 {
    border-right-color: rgba(221, 214, 254, .2)
}

.border-r-violet-200\/25 {
    border-right-color: rgba(221, 214, 254, .25)
}

.border-r-violet-200\/30 {
    border-right-color: rgba(221, 214, 254, .3)
}

.border-r-violet-200\/40 {
    border-right-color: rgba(221, 214, 254, .4)
}

.border-r-violet-200\/5 {
    border-right-color: rgba(221, 214, 254, .05)
}

.border-r-violet-200\/50 {
    border-right-color: rgba(221, 214, 254, .5)
}

.border-r-violet-200\/60 {
    border-right-color: rgba(221, 214, 254, .6)
}

.border-r-violet-200\/70 {
    border-right-color: rgba(221, 214, 254, .7)
}

.border-r-violet-200\/75 {
    border-right-color: rgba(221, 214, 254, .75)
}

.border-r-violet-200\/80 {
    border-right-color: rgba(221, 214, 254, .8)
}

.border-r-violet-200\/90 {
    border-right-color: rgba(221, 214, 254, .9)
}

.border-r-violet-200\/95 {
    border-right-color: rgba(221, 214, 254, .95)
}

.border-r-violet-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(196 181 253/var(--tw-border-opacity))
}

.border-r-violet-300\/0 {
    border-right-color: rgba(196, 181, 253, 0)
}

.border-r-violet-300\/10 {
    border-right-color: rgba(196, 181, 253, .1)
}

.border-r-violet-300\/100 {
    border-right-color: #c4b5fd
}

.border-r-violet-300\/20 {
    border-right-color: rgba(196, 181, 253, .2)
}

.border-r-violet-300\/25 {
    border-right-color: rgba(196, 181, 253, .25)
}

.border-r-violet-300\/30 {
    border-right-color: rgba(196, 181, 253, .3)
}

.border-r-violet-300\/40 {
    border-right-color: rgba(196, 181, 253, .4)
}

.border-r-violet-300\/5 {
    border-right-color: rgba(196, 181, 253, .05)
}

.border-r-violet-300\/50 {
    border-right-color: rgba(196, 181, 253, .5)
}

.border-r-violet-300\/60 {
    border-right-color: rgba(196, 181, 253, .6)
}

.border-r-violet-300\/70 {
    border-right-color: rgba(196, 181, 253, .7)
}

.border-r-violet-300\/75 {
    border-right-color: rgba(196, 181, 253, .75)
}

.border-r-violet-300\/80 {
    border-right-color: rgba(196, 181, 253, .8)
}

.border-r-violet-300\/90 {
    border-right-color: rgba(196, 181, 253, .9)
}

.border-r-violet-300\/95 {
    border-right-color: rgba(196, 181, 253, .95)
}

.border-r-violet-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(167 139 250/var(--tw-border-opacity))
}

.border-r-violet-400\/0 {
    border-right-color: rgba(167, 139, 250, 0)
}

.border-r-violet-400\/10 {
    border-right-color: rgba(167, 139, 250, .1)
}

.border-r-violet-400\/100 {
    border-right-color: #a78bfa
}

.border-r-violet-400\/20 {
    border-right-color: rgba(167, 139, 250, .2)
}

.border-r-violet-400\/25 {
    border-right-color: rgba(167, 139, 250, .25)
}

.border-r-violet-400\/30 {
    border-right-color: rgba(167, 139, 250, .3)
}

.border-r-violet-400\/40 {
    border-right-color: rgba(167, 139, 250, .4)
}

.border-r-violet-400\/5 {
    border-right-color: rgba(167, 139, 250, .05)
}

.border-r-violet-400\/50 {
    border-right-color: rgba(167, 139, 250, .5)
}

.border-r-violet-400\/60 {
    border-right-color: rgba(167, 139, 250, .6)
}

.border-r-violet-400\/70 {
    border-right-color: rgba(167, 139, 250, .7)
}

.border-r-violet-400\/75 {
    border-right-color: rgba(167, 139, 250, .75)
}

.border-r-violet-400\/80 {
    border-right-color: rgba(167, 139, 250, .8)
}

.border-r-violet-400\/90 {
    border-right-color: rgba(167, 139, 250, .9)
}

.border-r-violet-400\/95 {
    border-right-color: rgba(167, 139, 250, .95)
}

.border-r-violet-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(139 92 246/var(--tw-border-opacity))
}

.border-r-violet-500\/0 {
    border-right-color: rgba(139, 92, 246, 0)
}

.border-r-violet-500\/10 {
    border-right-color: rgba(139, 92, 246, .1)
}

.border-r-violet-500\/100 {
    border-right-color: #8b5cf6
}

.border-r-violet-500\/20 {
    border-right-color: rgba(139, 92, 246, .2)
}

.border-r-violet-500\/25 {
    border-right-color: rgba(139, 92, 246, .25)
}

.border-r-violet-500\/30 {
    border-right-color: rgba(139, 92, 246, .3)
}

.border-r-violet-500\/40 {
    border-right-color: rgba(139, 92, 246, .4)
}

.border-r-violet-500\/5 {
    border-right-color: rgba(139, 92, 246, .05)
}

.border-r-violet-500\/50 {
    border-right-color: rgba(139, 92, 246, .5)
}

.border-r-violet-500\/60 {
    border-right-color: rgba(139, 92, 246, .6)
}

.border-r-violet-500\/70 {
    border-right-color: rgba(139, 92, 246, .7)
}

.border-r-violet-500\/75 {
    border-right-color: rgba(139, 92, 246, .75)
}

.border-r-violet-500\/80 {
    border-right-color: rgba(139, 92, 246, .8)
}

.border-r-violet-500\/90 {
    border-right-color: rgba(139, 92, 246, .9)
}

.border-r-violet-500\/95 {
    border-right-color: rgba(139, 92, 246, .95)
}

.border-r-violet-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(124 58 237/var(--tw-border-opacity))
}

.border-r-violet-600\/0 {
    border-right-color: rgba(124, 58, 237, 0)
}

.border-r-violet-600\/10 {
    border-right-color: rgba(124, 58, 237, .1)
}

.border-r-violet-600\/100 {
    border-right-color: #7c3aed
}

.border-r-violet-600\/20 {
    border-right-color: rgba(124, 58, 237, .2)
}

.border-r-violet-600\/25 {
    border-right-color: rgba(124, 58, 237, .25)
}

.border-r-violet-600\/30 {
    border-right-color: rgba(124, 58, 237, .3)
}

.border-r-violet-600\/40 {
    border-right-color: rgba(124, 58, 237, .4)
}

.border-r-violet-600\/5 {
    border-right-color: rgba(124, 58, 237, .05)
}

.border-r-violet-600\/50 {
    border-right-color: rgba(124, 58, 237, .5)
}

.border-r-violet-600\/60 {
    border-right-color: rgba(124, 58, 237, .6)
}

.border-r-violet-600\/70 {
    border-right-color: rgba(124, 58, 237, .7)
}

.border-r-violet-600\/75 {
    border-right-color: rgba(124, 58, 237, .75)
}

.border-r-violet-600\/80 {
    border-right-color: rgba(124, 58, 237, .8)
}

.border-r-violet-600\/90 {
    border-right-color: rgba(124, 58, 237, .9)
}

.border-r-violet-600\/95 {
    border-right-color: rgba(124, 58, 237, .95)
}

.border-r-violet-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(109 40 217/var(--tw-border-opacity))
}

.border-r-violet-700\/0 {
    border-right-color: rgba(109, 40, 217, 0)
}

.border-r-violet-700\/10 {
    border-right-color: rgba(109, 40, 217, .1)
}

.border-r-violet-700\/100 {
    border-right-color: #6d28d9
}

.border-r-violet-700\/20 {
    border-right-color: rgba(109, 40, 217, .2)
}

.border-r-violet-700\/25 {
    border-right-color: rgba(109, 40, 217, .25)
}

.border-r-violet-700\/30 {
    border-right-color: rgba(109, 40, 217, .3)
}

.border-r-violet-700\/40 {
    border-right-color: rgba(109, 40, 217, .4)
}

.border-r-violet-700\/5 {
    border-right-color: rgba(109, 40, 217, .05)
}

.border-r-violet-700\/50 {
    border-right-color: rgba(109, 40, 217, .5)
}

.border-r-violet-700\/60 {
    border-right-color: rgba(109, 40, 217, .6)
}

.border-r-violet-700\/70 {
    border-right-color: rgba(109, 40, 217, .7)
}

.border-r-violet-700\/75 {
    border-right-color: rgba(109, 40, 217, .75)
}

.border-r-violet-700\/80 {
    border-right-color: rgba(109, 40, 217, .8)
}

.border-r-violet-700\/90 {
    border-right-color: rgba(109, 40, 217, .9)
}

.border-r-violet-700\/95 {
    border-right-color: rgba(109, 40, 217, .95)
}

.border-r-violet-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(91 33 182/var(--tw-border-opacity))
}

.border-r-violet-800\/0 {
    border-right-color: rgba(91, 33, 182, 0)
}

.border-r-violet-800\/10 {
    border-right-color: rgba(91, 33, 182, .1)
}

.border-r-violet-800\/100 {
    border-right-color: #5b21b6
}

.border-r-violet-800\/20 {
    border-right-color: rgba(91, 33, 182, .2)
}

.border-r-violet-800\/25 {
    border-right-color: rgba(91, 33, 182, .25)
}

.border-r-violet-800\/30 {
    border-right-color: rgba(91, 33, 182, .3)
}

.border-r-violet-800\/40 {
    border-right-color: rgba(91, 33, 182, .4)
}

.border-r-violet-800\/5 {
    border-right-color: rgba(91, 33, 182, .05)
}

.border-r-violet-800\/50 {
    border-right-color: rgba(91, 33, 182, .5)
}

.border-r-violet-800\/60 {
    border-right-color: rgba(91, 33, 182, .6)
}

.border-r-violet-800\/70 {
    border-right-color: rgba(91, 33, 182, .7)
}

.border-r-violet-800\/75 {
    border-right-color: rgba(91, 33, 182, .75)
}

.border-r-violet-800\/80 {
    border-right-color: rgba(91, 33, 182, .8)
}

.border-r-violet-800\/90 {
    border-right-color: rgba(91, 33, 182, .9)
}

.border-r-violet-800\/95 {
    border-right-color: rgba(91, 33, 182, .95)
}

.border-r-yellow-100 {
    --tw-border-opacity: 1;
    border-right-color: rgb(254 249 195/var(--tw-border-opacity))
}

.border-r-yellow-100\/0 {
    border-right-color: hsla(55, 97%, 88%, 0)
}

.border-r-yellow-100\/10 {
    border-right-color: hsla(55, 97%, 88%, .1)
}

.border-r-yellow-100\/100 {
    border-right-color: #fef9c3
}

.border-r-yellow-100\/20 {
    border-right-color: hsla(55, 97%, 88%, .2)
}

.border-r-yellow-100\/25 {
    border-right-color: hsla(55, 97%, 88%, .25)
}

.border-r-yellow-100\/30 {
    border-right-color: hsla(55, 97%, 88%, .3)
}

.border-r-yellow-100\/40 {
    border-right-color: hsla(55, 97%, 88%, .4)
}

.border-r-yellow-100\/5 {
    border-right-color: hsla(55, 97%, 88%, .05)
}

.border-r-yellow-100\/50 {
    border-right-color: hsla(55, 97%, 88%, .5)
}

.border-r-yellow-100\/60 {
    border-right-color: hsla(55, 97%, 88%, .6)
}

.border-r-yellow-100\/70 {
    border-right-color: hsla(55, 97%, 88%, .7)
}

.border-r-yellow-100\/75 {
    border-right-color: hsla(55, 97%, 88%, .75)
}

.border-r-yellow-100\/80 {
    border-right-color: hsla(55, 97%, 88%, .8)
}

.border-r-yellow-100\/90 {
    border-right-color: hsla(55, 97%, 88%, .9)
}

.border-r-yellow-100\/95 {
    border-right-color: hsla(55, 97%, 88%, .95)
}

.border-r-yellow-200 {
    --tw-border-opacity: 1;
    border-right-color: rgb(254 240 138/var(--tw-border-opacity))
}

.border-r-yellow-200\/0 {
    border-right-color: hsla(53, 98%, 77%, 0)
}

.border-r-yellow-200\/10 {
    border-right-color: hsla(53, 98%, 77%, .1)
}

.border-r-yellow-200\/100 {
    border-right-color: #fef08a
}

.border-r-yellow-200\/20 {
    border-right-color: hsla(53, 98%, 77%, .2)
}

.border-r-yellow-200\/25 {
    border-right-color: hsla(53, 98%, 77%, .25)
}

.border-r-yellow-200\/30 {
    border-right-color: hsla(53, 98%, 77%, .3)
}

.border-r-yellow-200\/40 {
    border-right-color: hsla(53, 98%, 77%, .4)
}

.border-r-yellow-200\/5 {
    border-right-color: hsla(53, 98%, 77%, .05)
}

.border-r-yellow-200\/50 {
    border-right-color: hsla(53, 98%, 77%, .5)
}

.border-r-yellow-200\/60 {
    border-right-color: hsla(53, 98%, 77%, .6)
}

.border-r-yellow-200\/70 {
    border-right-color: hsla(53, 98%, 77%, .7)
}

.border-r-yellow-200\/75 {
    border-right-color: hsla(53, 98%, 77%, .75)
}

.border-r-yellow-200\/80 {
    border-right-color: hsla(53, 98%, 77%, .8)
}

.border-r-yellow-200\/90 {
    border-right-color: hsla(53, 98%, 77%, .9)
}

.border-r-yellow-200\/95 {
    border-right-color: hsla(53, 98%, 77%, .95)
}

.border-r-yellow-300 {
    --tw-border-opacity: 1;
    border-right-color: rgb(253 224 71/var(--tw-border-opacity))
}

.border-r-yellow-300\/0 {
    border-right-color: rgba(253, 224, 71, 0)
}

.border-r-yellow-300\/10 {
    border-right-color: rgba(253, 224, 71, .1)
}

.border-r-yellow-300\/100 {
    border-right-color: #fde047
}

.border-r-yellow-300\/20 {
    border-right-color: rgba(253, 224, 71, .2)
}

.border-r-yellow-300\/25 {
    border-right-color: rgba(253, 224, 71, .25)
}

.border-r-yellow-300\/30 {
    border-right-color: rgba(253, 224, 71, .3)
}

.border-r-yellow-300\/40 {
    border-right-color: rgba(253, 224, 71, .4)
}

.border-r-yellow-300\/5 {
    border-right-color: rgba(253, 224, 71, .05)
}

.border-r-yellow-300\/50 {
    border-right-color: rgba(253, 224, 71, .5)
}

.border-r-yellow-300\/60 {
    border-right-color: rgba(253, 224, 71, .6)
}

.border-r-yellow-300\/70 {
    border-right-color: rgba(253, 224, 71, .7)
}

.border-r-yellow-300\/75 {
    border-right-color: rgba(253, 224, 71, .75)
}

.border-r-yellow-300\/80 {
    border-right-color: rgba(253, 224, 71, .8)
}

.border-r-yellow-300\/90 {
    border-right-color: rgba(253, 224, 71, .9)
}

.border-r-yellow-300\/95 {
    border-right-color: rgba(253, 224, 71, .95)
}

.border-r-yellow-400 {
    --tw-border-opacity: 1;
    border-right-color: rgb(250 204 21/var(--tw-border-opacity))
}

.border-r-yellow-400\/0 {
    border-right-color: rgba(250, 204, 21, 0)
}

.border-r-yellow-400\/10 {
    border-right-color: rgba(250, 204, 21, .1)
}

.border-r-yellow-400\/100 {
    border-right-color: #facc15
}

.border-r-yellow-400\/20 {
    border-right-color: rgba(250, 204, 21, .2)
}

.border-r-yellow-400\/25 {
    border-right-color: rgba(250, 204, 21, .25)
}

.border-r-yellow-400\/30 {
    border-right-color: rgba(250, 204, 21, .3)
}

.border-r-yellow-400\/40 {
    border-right-color: rgba(250, 204, 21, .4)
}

.border-r-yellow-400\/5 {
    border-right-color: rgba(250, 204, 21, .05)
}

.border-r-yellow-400\/50 {
    border-right-color: rgba(250, 204, 21, .5)
}

.border-r-yellow-400\/60 {
    border-right-color: rgba(250, 204, 21, .6)
}

.border-r-yellow-400\/70 {
    border-right-color: rgba(250, 204, 21, .7)
}

.border-r-yellow-400\/75 {
    border-right-color: rgba(250, 204, 21, .75)
}

.border-r-yellow-400\/80 {
    border-right-color: rgba(250, 204, 21, .8)
}

.border-r-yellow-400\/90 {
    border-right-color: rgba(250, 204, 21, .9)
}

.border-r-yellow-400\/95 {
    border-right-color: rgba(250, 204, 21, .95)
}

.border-r-yellow-500 {
    --tw-border-opacity: 1;
    border-right-color: rgb(234 179 8/var(--tw-border-opacity))
}

.border-r-yellow-500\/0 {
    border-right-color: rgba(234, 179, 8, 0)
}

.border-r-yellow-500\/10 {
    border-right-color: rgba(234, 179, 8, .1)
}

.border-r-yellow-500\/100 {
    border-right-color: #eab308
}

.border-r-yellow-500\/20 {
    border-right-color: rgba(234, 179, 8, .2)
}

.border-r-yellow-500\/25 {
    border-right-color: rgba(234, 179, 8, .25)
}

.border-r-yellow-500\/30 {
    border-right-color: rgba(234, 179, 8, .3)
}

.border-r-yellow-500\/40 {
    border-right-color: rgba(234, 179, 8, .4)
}

.border-r-yellow-500\/5 {
    border-right-color: rgba(234, 179, 8, .05)
}

.border-r-yellow-500\/50 {
    border-right-color: rgba(234, 179, 8, .5)
}

.border-r-yellow-500\/60 {
    border-right-color: rgba(234, 179, 8, .6)
}

.border-r-yellow-500\/70 {
    border-right-color: rgba(234, 179, 8, .7)
}

.border-r-yellow-500\/75 {
    border-right-color: rgba(234, 179, 8, .75)
}

.border-r-yellow-500\/80 {
    border-right-color: rgba(234, 179, 8, .8)
}

.border-r-yellow-500\/90 {
    border-right-color: rgba(234, 179, 8, .9)
}

.border-r-yellow-500\/95 {
    border-right-color: rgba(234, 179, 8, .95)
}

.border-r-yellow-600 {
    --tw-border-opacity: 1;
    border-right-color: rgb(202 138 4/var(--tw-border-opacity))
}

.border-r-yellow-600\/0 {
    border-right-color: rgba(202, 138, 4, 0)
}

.border-r-yellow-600\/10 {
    border-right-color: rgba(202, 138, 4, .1)
}

.border-r-yellow-600\/100 {
    border-right-color: #ca8a04
}

.border-r-yellow-600\/20 {
    border-right-color: rgba(202, 138, 4, .2)
}

.border-r-yellow-600\/25 {
    border-right-color: rgba(202, 138, 4, .25)
}

.border-r-yellow-600\/30 {
    border-right-color: rgba(202, 138, 4, .3)
}

.border-r-yellow-600\/40 {
    border-right-color: rgba(202, 138, 4, .4)
}

.border-r-yellow-600\/5 {
    border-right-color: rgba(202, 138, 4, .05)
}

.border-r-yellow-600\/50 {
    border-right-color: rgba(202, 138, 4, .5)
}

.border-r-yellow-600\/60 {
    border-right-color: rgba(202, 138, 4, .6)
}

.border-r-yellow-600\/70 {
    border-right-color: rgba(202, 138, 4, .7)
}

.border-r-yellow-600\/75 {
    border-right-color: rgba(202, 138, 4, .75)
}

.border-r-yellow-600\/80 {
    border-right-color: rgba(202, 138, 4, .8)
}

.border-r-yellow-600\/90 {
    border-right-color: rgba(202, 138, 4, .9)
}

.border-r-yellow-600\/95 {
    border-right-color: rgba(202, 138, 4, .95)
}

.border-r-yellow-700 {
    --tw-border-opacity: 1;
    border-right-color: rgb(161 98 7/var(--tw-border-opacity))
}

.border-r-yellow-700\/0 {
    border-right-color: rgba(161, 98, 7, 0)
}

.border-r-yellow-700\/10 {
    border-right-color: rgba(161, 98, 7, .1)
}

.border-r-yellow-700\/100 {
    border-right-color: #a16207
}

.border-r-yellow-700\/20 {
    border-right-color: rgba(161, 98, 7, .2)
}

.border-r-yellow-700\/25 {
    border-right-color: rgba(161, 98, 7, .25)
}

.border-r-yellow-700\/30 {
    border-right-color: rgba(161, 98, 7, .3)
}

.border-r-yellow-700\/40 {
    border-right-color: rgba(161, 98, 7, .4)
}

.border-r-yellow-700\/5 {
    border-right-color: rgba(161, 98, 7, .05)
}

.border-r-yellow-700\/50 {
    border-right-color: rgba(161, 98, 7, .5)
}

.border-r-yellow-700\/60 {
    border-right-color: rgba(161, 98, 7, .6)
}

.border-r-yellow-700\/70 {
    border-right-color: rgba(161, 98, 7, .7)
}

.border-r-yellow-700\/75 {
    border-right-color: rgba(161, 98, 7, .75)
}

.border-r-yellow-700\/80 {
    border-right-color: rgba(161, 98, 7, .8)
}

.border-r-yellow-700\/90 {
    border-right-color: rgba(161, 98, 7, .9)
}

.border-r-yellow-700\/95 {
    border-right-color: rgba(161, 98, 7, .95)
}

.border-r-yellow-800 {
    --tw-border-opacity: 1;
    border-right-color: rgb(133 77 14/var(--tw-border-opacity))
}

.border-r-yellow-800\/0 {
    border-right-color: rgba(133, 77, 14, 0)
}

.border-r-yellow-800\/10 {
    border-right-color: rgba(133, 77, 14, .1)
}

.border-r-yellow-800\/100 {
    border-right-color: #854d0e
}

.border-r-yellow-800\/20 {
    border-right-color: rgba(133, 77, 14, .2)
}

.border-r-yellow-800\/25 {
    border-right-color: rgba(133, 77, 14, .25)
}

.border-r-yellow-800\/30 {
    border-right-color: rgba(133, 77, 14, .3)
}

.border-r-yellow-800\/40 {
    border-right-color: rgba(133, 77, 14, .4)
}

.border-r-yellow-800\/5 {
    border-right-color: rgba(133, 77, 14, .05)
}

.border-r-yellow-800\/50 {
    border-right-color: rgba(133, 77, 14, .5)
}

.border-r-yellow-800\/60 {
    border-right-color: rgba(133, 77, 14, .6)
}

.border-r-yellow-800\/70 {
    border-right-color: rgba(133, 77, 14, .7)
}

.border-r-yellow-800\/75 {
    border-right-color: rgba(133, 77, 14, .75)
}

.border-r-yellow-800\/80 {
    border-right-color: rgba(133, 77, 14, .8)
}

.border-r-yellow-800\/90 {
    border-right-color: rgba(133, 77, 14, .9)
}

.border-r-yellow-800\/95 {
    border-right-color: rgba(133, 77, 14, .95)
}

.\!bg-blue-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(219 234 254/var(--tw-bg-opacity)) !important
}

.\!bg-blue-100\/0 {
    background-color: rgba(219, 234, 254, 0) !important
}

.\!bg-blue-100\/10 {
    background-color: rgba(219, 234, 254, .1) !important
}

.\!bg-blue-100\/100 {
    background-color: #dbeafe !important
}

.\!bg-blue-100\/20 {
    background-color: rgba(219, 234, 254, .2) !important
}

.\!bg-blue-100\/25 {
    background-color: rgba(219, 234, 254, .25) !important
}

.\!bg-blue-100\/30 {
    background-color: rgba(219, 234, 254, .3) !important
}

.\!bg-blue-100\/40 {
    background-color: rgba(219, 234, 254, .4) !important
}

.\!bg-blue-100\/5 {
    background-color: rgba(219, 234, 254, .05) !important
}

.\!bg-blue-100\/50 {
    background-color: rgba(219, 234, 254, .5) !important
}

.\!bg-blue-100\/60 {
    background-color: rgba(219, 234, 254, .6) !important
}

.\!bg-blue-100\/70 {
    background-color: rgba(219, 234, 254, .7) !important
}

.\!bg-blue-100\/75 {
    background-color: rgba(219, 234, 254, .75) !important
}

.\!bg-blue-100\/80 {
    background-color: rgba(219, 234, 254, .8) !important
}

.\!bg-blue-100\/90 {
    background-color: rgba(219, 234, 254, .9) !important
}

.\!bg-blue-100\/95 {
    background-color: rgba(219, 234, 254, .95) !important
}

.\!bg-blue-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(191 219 254/var(--tw-bg-opacity)) !important
}

.\!bg-blue-200\/0 {
    background-color: rgba(191, 219, 254, 0) !important
}

.\!bg-blue-200\/10 {
    background-color: rgba(191, 219, 254, .1) !important
}

.\!bg-blue-200\/100 {
    background-color: #bfdbfe !important
}

.\!bg-blue-200\/20 {
    background-color: rgba(191, 219, 254, .2) !important
}

.\!bg-blue-200\/25 {
    background-color: rgba(191, 219, 254, .25) !important
}

.\!bg-blue-200\/30 {
    background-color: rgba(191, 219, 254, .3) !important
}

.\!bg-blue-200\/40 {
    background-color: rgba(191, 219, 254, .4) !important
}

.\!bg-blue-200\/5 {
    background-color: rgba(191, 219, 254, .05) !important
}

.\!bg-blue-200\/50 {
    background-color: rgba(191, 219, 254, .5) !important
}

.\!bg-blue-200\/60 {
    background-color: rgba(191, 219, 254, .6) !important
}

.\!bg-blue-200\/70 {
    background-color: rgba(191, 219, 254, .7) !important
}

.\!bg-blue-200\/75 {
    background-color: rgba(191, 219, 254, .75) !important
}

.\!bg-blue-200\/80 {
    background-color: rgba(191, 219, 254, .8) !important
}

.\!bg-blue-200\/90 {
    background-color: rgba(191, 219, 254, .9) !important
}

.\!bg-blue-200\/95 {
    background-color: rgba(191, 219, 254, .95) !important
}

.\!bg-blue-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(147 197 253/var(--tw-bg-opacity)) !important
}

.\!bg-blue-300\/0 {
    background-color: rgba(147, 197, 253, 0) !important
}

.\!bg-blue-300\/10 {
    background-color: rgba(147, 197, 253, .1) !important
}

.\!bg-blue-300\/100 {
    background-color: #93c5fd !important
}

.\!bg-blue-300\/20 {
    background-color: rgba(147, 197, 253, .2) !important
}

.\!bg-blue-300\/25 {
    background-color: rgba(147, 197, 253, .25) !important
}

.\!bg-blue-300\/30 {
    background-color: rgba(147, 197, 253, .3) !important
}

.\!bg-blue-300\/40 {
    background-color: rgba(147, 197, 253, .4) !important
}

.\!bg-blue-300\/5 {
    background-color: rgba(147, 197, 253, .05) !important
}

.\!bg-blue-300\/50 {
    background-color: rgba(147, 197, 253, .5) !important
}

.\!bg-blue-300\/60 {
    background-color: rgba(147, 197, 253, .6) !important
}

.\!bg-blue-300\/70 {
    background-color: rgba(147, 197, 253, .7) !important
}

.\!bg-blue-300\/75 {
    background-color: rgba(147, 197, 253, .75) !important
}

.\!bg-blue-300\/80 {
    background-color: rgba(147, 197, 253, .8) !important
}

.\!bg-blue-300\/90 {
    background-color: rgba(147, 197, 253, .9) !important
}

.\!bg-blue-300\/95 {
    background-color: rgba(147, 197, 253, .95) !important
}

.\!bg-blue-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(96 165 250/var(--tw-bg-opacity)) !important
}

.\!bg-blue-400\/0 {
    background-color: rgba(96, 165, 250, 0) !important
}

.\!bg-blue-400\/10 {
    background-color: rgba(96, 165, 250, .1) !important
}

.\!bg-blue-400\/100 {
    background-color: #60a5fa !important
}

.\!bg-blue-400\/20 {
    background-color: rgba(96, 165, 250, .2) !important
}

.\!bg-blue-400\/25 {
    background-color: rgba(96, 165, 250, .25) !important
}

.\!bg-blue-400\/30 {
    background-color: rgba(96, 165, 250, .3) !important
}

.\!bg-blue-400\/40 {
    background-color: rgba(96, 165, 250, .4) !important
}

.\!bg-blue-400\/5 {
    background-color: rgba(96, 165, 250, .05) !important
}

.\!bg-blue-400\/50 {
    background-color: rgba(96, 165, 250, .5) !important
}

.\!bg-blue-400\/60 {
    background-color: rgba(96, 165, 250, .6) !important
}

.\!bg-blue-400\/70 {
    background-color: rgba(96, 165, 250, .7) !important
}

.\!bg-blue-400\/75 {
    background-color: rgba(96, 165, 250, .75) !important
}

.\!bg-blue-400\/80 {
    background-color: rgba(96, 165, 250, .8) !important
}

.\!bg-blue-400\/90 {
    background-color: rgba(96, 165, 250, .9) !important
}

.\!bg-blue-400\/95 {
    background-color: rgba(96, 165, 250, .95) !important
}

.\!bg-blue-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(59 130 246/var(--tw-bg-opacity)) !important
}

.\!bg-blue-500\/0 {
    background-color: rgba(59, 130, 246, 0) !important
}

.\!bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, .1) !important
}

.\!bg-blue-500\/100 {
    background-color: #3b82f6 !important
}

.\!bg-blue-500\/20 {
    background-color: rgba(59, 130, 246, .2) !important
}

.\!bg-blue-500\/25 {
    background-color: rgba(59, 130, 246, .25) !important
}

.\!bg-blue-500\/30 {
    background-color: rgba(59, 130, 246, .3) !important
}

.\!bg-blue-500\/40 {
    background-color: rgba(59, 130, 246, .4) !important
}

.\!bg-blue-500\/5 {
    background-color: rgba(59, 130, 246, .05) !important
}

.\!bg-blue-500\/50 {
    background-color: rgba(59, 130, 246, .5) !important
}

.\!bg-blue-500\/60 {
    background-color: rgba(59, 130, 246, .6) !important
}

.\!bg-blue-500\/70 {
    background-color: rgba(59, 130, 246, .7) !important
}

.\!bg-blue-500\/75 {
    background-color: rgba(59, 130, 246, .75) !important
}

.\!bg-blue-500\/80 {
    background-color: rgba(59, 130, 246, .8) !important
}

.\!bg-blue-500\/90 {
    background-color: rgba(59, 130, 246, .9) !important
}

.\!bg-blue-500\/95 {
    background-color: rgba(59, 130, 246, .95) !important
}

.\!bg-blue-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(37 99 235/var(--tw-bg-opacity)) !important
}

.\!bg-blue-600\/0 {
    background-color: rgba(37, 99, 235, 0) !important
}

.\!bg-blue-600\/10 {
    background-color: rgba(37, 99, 235, .1) !important
}

.\!bg-blue-600\/100 {
    background-color: #2563eb !important
}

.\!bg-blue-600\/20 {
    background-color: rgba(37, 99, 235, .2) !important
}

.\!bg-blue-600\/25 {
    background-color: rgba(37, 99, 235, .25) !important
}

.\!bg-blue-600\/30 {
    background-color: rgba(37, 99, 235, .3) !important
}

.\!bg-blue-600\/40 {
    background-color: rgba(37, 99, 235, .4) !important
}

.\!bg-blue-600\/5 {
    background-color: rgba(37, 99, 235, .05) !important
}

.\!bg-blue-600\/50 {
    background-color: rgba(37, 99, 235, .5) !important
}

.\!bg-blue-600\/60 {
    background-color: rgba(37, 99, 235, .6) !important
}

.\!bg-blue-600\/70 {
    background-color: rgba(37, 99, 235, .7) !important
}

.\!bg-blue-600\/75 {
    background-color: rgba(37, 99, 235, .75) !important
}

.\!bg-blue-600\/80 {
    background-color: rgba(37, 99, 235, .8) !important
}

.\!bg-blue-600\/90 {
    background-color: rgba(37, 99, 235, .9) !important
}

.\!bg-blue-600\/95 {
    background-color: rgba(37, 99, 235, .95) !important
}

.\!bg-blue-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(29 78 216/var(--tw-bg-opacity)) !important
}

.\!bg-blue-700\/0 {
    background-color: rgba(29, 78, 216, 0) !important
}

.\!bg-blue-700\/10 {
    background-color: rgba(29, 78, 216, .1) !important
}

.\!bg-blue-700\/100 {
    background-color: #1d4ed8 !important
}

.\!bg-blue-700\/20 {
    background-color: rgba(29, 78, 216, .2) !important
}

.\!bg-blue-700\/25 {
    background-color: rgba(29, 78, 216, .25) !important
}

.\!bg-blue-700\/30 {
    background-color: rgba(29, 78, 216, .3) !important
}

.\!bg-blue-700\/40 {
    background-color: rgba(29, 78, 216, .4) !important
}

.\!bg-blue-700\/5 {
    background-color: rgba(29, 78, 216, .05) !important
}

.\!bg-blue-700\/50 {
    background-color: rgba(29, 78, 216, .5) !important
}

.\!bg-blue-700\/60 {
    background-color: rgba(29, 78, 216, .6) !important
}

.\!bg-blue-700\/70 {
    background-color: rgba(29, 78, 216, .7) !important
}

.\!bg-blue-700\/75 {
    background-color: rgba(29, 78, 216, .75) !important
}

.\!bg-blue-700\/80 {
    background-color: rgba(29, 78, 216, .8) !important
}

.\!bg-blue-700\/90 {
    background-color: rgba(29, 78, 216, .9) !important
}

.\!bg-blue-700\/95 {
    background-color: rgba(29, 78, 216, .95) !important
}

.\!bg-blue-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(30 64 175/var(--tw-bg-opacity)) !important
}

.\!bg-blue-800\/0 {
    background-color: rgba(30, 64, 175, 0) !important
}

.\!bg-blue-800\/10 {
    background-color: rgba(30, 64, 175, .1) !important
}

.\!bg-blue-800\/100 {
    background-color: #1e40af !important
}

.\!bg-blue-800\/20 {
    background-color: rgba(30, 64, 175, .2) !important
}

.\!bg-blue-800\/25 {
    background-color: rgba(30, 64, 175, .25) !important
}

.\!bg-blue-800\/30 {
    background-color: rgba(30, 64, 175, .3) !important
}

.\!bg-blue-800\/40 {
    background-color: rgba(30, 64, 175, .4) !important
}

.\!bg-blue-800\/5 {
    background-color: rgba(30, 64, 175, .05) !important
}

.\!bg-blue-800\/50 {
    background-color: rgba(30, 64, 175, .5) !important
}

.\!bg-blue-800\/60 {
    background-color: rgba(30, 64, 175, .6) !important
}

.\!bg-blue-800\/70 {
    background-color: rgba(30, 64, 175, .7) !important
}

.\!bg-blue-800\/75 {
    background-color: rgba(30, 64, 175, .75) !important
}

.\!bg-blue-800\/80 {
    background-color: rgba(30, 64, 175, .8) !important
}

.\!bg-blue-800\/90 {
    background-color: rgba(30, 64, 175, .9) !important
}

.\!bg-blue-800\/95 {
    background-color: rgba(30, 64, 175, .95) !important
}

.\!bg-emerald-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(209 250 229/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-100\/0 {
    background-color: rgba(209, 250, 229, 0) !important
}

.\!bg-emerald-100\/10 {
    background-color: rgba(209, 250, 229, .1) !important
}

.\!bg-emerald-100\/100 {
    background-color: #d1fae5 !important
}

.\!bg-emerald-100\/20 {
    background-color: rgba(209, 250, 229, .2) !important
}

.\!bg-emerald-100\/25 {
    background-color: rgba(209, 250, 229, .25) !important
}

.\!bg-emerald-100\/30 {
    background-color: rgba(209, 250, 229, .3) !important
}

.\!bg-emerald-100\/40 {
    background-color: rgba(209, 250, 229, .4) !important
}

.\!bg-emerald-100\/5 {
    background-color: rgba(209, 250, 229, .05) !important
}

.\!bg-emerald-100\/50 {
    background-color: rgba(209, 250, 229, .5) !important
}

.\!bg-emerald-100\/60 {
    background-color: rgba(209, 250, 229, .6) !important
}

.\!bg-emerald-100\/70 {
    background-color: rgba(209, 250, 229, .7) !important
}

.\!bg-emerald-100\/75 {
    background-color: rgba(209, 250, 229, .75) !important
}

.\!bg-emerald-100\/80 {
    background-color: rgba(209, 250, 229, .8) !important
}

.\!bg-emerald-100\/90 {
    background-color: rgba(209, 250, 229, .9) !important
}

.\!bg-emerald-100\/95 {
    background-color: rgba(209, 250, 229, .95) !important
}

.\!bg-emerald-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(167 243 208/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-200\/0 {
    background-color: rgba(167, 243, 208, 0) !important
}

.\!bg-emerald-200\/10 {
    background-color: rgba(167, 243, 208, .1) !important
}

.\!bg-emerald-200\/100 {
    background-color: #a7f3d0 !important
}

.\!bg-emerald-200\/20 {
    background-color: rgba(167, 243, 208, .2) !important
}

.\!bg-emerald-200\/25 {
    background-color: rgba(167, 243, 208, .25) !important
}

.\!bg-emerald-200\/30 {
    background-color: rgba(167, 243, 208, .3) !important
}

.\!bg-emerald-200\/40 {
    background-color: rgba(167, 243, 208, .4) !important
}

.\!bg-emerald-200\/5 {
    background-color: rgba(167, 243, 208, .05) !important
}

.\!bg-emerald-200\/50 {
    background-color: rgba(167, 243, 208, .5) !important
}

.\!bg-emerald-200\/60 {
    background-color: rgba(167, 243, 208, .6) !important
}

.\!bg-emerald-200\/70 {
    background-color: rgba(167, 243, 208, .7) !important
}

.\!bg-emerald-200\/75 {
    background-color: rgba(167, 243, 208, .75) !important
}

.\!bg-emerald-200\/80 {
    background-color: rgba(167, 243, 208, .8) !important
}

.\!bg-emerald-200\/90 {
    background-color: rgba(167, 243, 208, .9) !important
}

.\!bg-emerald-200\/95 {
    background-color: rgba(167, 243, 208, .95) !important
}

.\!bg-emerald-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(110 231 183/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-300\/0 {
    background-color: rgba(110, 231, 183, 0) !important
}

.\!bg-emerald-300\/10 {
    background-color: rgba(110, 231, 183, .1) !important
}

.\!bg-emerald-300\/100 {
    background-color: #6ee7b7 !important
}

.\!bg-emerald-300\/20 {
    background-color: rgba(110, 231, 183, .2) !important
}

.\!bg-emerald-300\/25 {
    background-color: rgba(110, 231, 183, .25) !important
}

.\!bg-emerald-300\/30 {
    background-color: rgba(110, 231, 183, .3) !important
}

.\!bg-emerald-300\/40 {
    background-color: rgba(110, 231, 183, .4) !important
}

.\!bg-emerald-300\/5 {
    background-color: rgba(110, 231, 183, .05) !important
}

.\!bg-emerald-300\/50 {
    background-color: rgba(110, 231, 183, .5) !important
}

.\!bg-emerald-300\/60 {
    background-color: rgba(110, 231, 183, .6) !important
}

.\!bg-emerald-300\/70 {
    background-color: rgba(110, 231, 183, .7) !important
}

.\!bg-emerald-300\/75 {
    background-color: rgba(110, 231, 183, .75) !important
}

.\!bg-emerald-300\/80 {
    background-color: rgba(110, 231, 183, .8) !important
}

.\!bg-emerald-300\/90 {
    background-color: rgba(110, 231, 183, .9) !important
}

.\!bg-emerald-300\/95 {
    background-color: rgba(110, 231, 183, .95) !important
}

.\!bg-emerald-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(52 211 153/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-400\/0 {
    background-color: rgba(52, 211, 153, 0) !important
}

.\!bg-emerald-400\/10 {
    background-color: rgba(52, 211, 153, .1) !important
}

.\!bg-emerald-400\/100 {
    background-color: #34d399 !important
}

.\!bg-emerald-400\/20 {
    background-color: rgba(52, 211, 153, .2) !important
}

.\!bg-emerald-400\/25 {
    background-color: rgba(52, 211, 153, .25) !important
}

.\!bg-emerald-400\/30 {
    background-color: rgba(52, 211, 153, .3) !important
}

.\!bg-emerald-400\/40 {
    background-color: rgba(52, 211, 153, .4) !important
}

.\!bg-emerald-400\/5 {
    background-color: rgba(52, 211, 153, .05) !important
}

.\!bg-emerald-400\/50 {
    background-color: rgba(52, 211, 153, .5) !important
}

.\!bg-emerald-400\/60 {
    background-color: rgba(52, 211, 153, .6) !important
}

.\!bg-emerald-400\/70 {
    background-color: rgba(52, 211, 153, .7) !important
}

.\!bg-emerald-400\/75 {
    background-color: rgba(52, 211, 153, .75) !important
}

.\!bg-emerald-400\/80 {
    background-color: rgba(52, 211, 153, .8) !important
}

.\!bg-emerald-400\/90 {
    background-color: rgba(52, 211, 153, .9) !important
}

.\!bg-emerald-400\/95 {
    background-color: rgba(52, 211, 153, .95) !important
}

.\!bg-emerald-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(16 185 129/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-500\/0 {
    background-color: rgba(16, 185, 129, 0) !important
}

.\!bg-emerald-500\/10 {
    background-color: rgba(16, 185, 129, .1) !important
}

.\!bg-emerald-500\/100 {
    background-color: #10b981 !important
}

.\!bg-emerald-500\/20 {
    background-color: rgba(16, 185, 129, .2) !important
}

.\!bg-emerald-500\/25 {
    background-color: rgba(16, 185, 129, .25) !important
}

.\!bg-emerald-500\/30 {
    background-color: rgba(16, 185, 129, .3) !important
}

.\!bg-emerald-500\/40 {
    background-color: rgba(16, 185, 129, .4) !important
}

.\!bg-emerald-500\/5 {
    background-color: rgba(16, 185, 129, .05) !important
}

.\!bg-emerald-500\/50 {
    background-color: rgba(16, 185, 129, .5) !important
}

.\!bg-emerald-500\/60 {
    background-color: rgba(16, 185, 129, .6) !important
}

.\!bg-emerald-500\/70 {
    background-color: rgba(16, 185, 129, .7) !important
}

.\!bg-emerald-500\/75 {
    background-color: rgba(16, 185, 129, .75) !important
}

.\!bg-emerald-500\/80 {
    background-color: rgba(16, 185, 129, .8) !important
}

.\!bg-emerald-500\/90 {
    background-color: rgba(16, 185, 129, .9) !important
}

.\!bg-emerald-500\/95 {
    background-color: rgba(16, 185, 129, .95) !important
}

.\!bg-emerald-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(5 150 105/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-600\/0 {
    background-color: rgba(5, 150, 105, 0) !important
}

.\!bg-emerald-600\/10 {
    background-color: rgba(5, 150, 105, .1) !important
}

.\!bg-emerald-600\/100 {
    background-color: #059669 !important
}

.\!bg-emerald-600\/20 {
    background-color: rgba(5, 150, 105, .2) !important
}

.\!bg-emerald-600\/25 {
    background-color: rgba(5, 150, 105, .25) !important
}

.\!bg-emerald-600\/30 {
    background-color: rgba(5, 150, 105, .3) !important
}

.\!bg-emerald-600\/40 {
    background-color: rgba(5, 150, 105, .4) !important
}

.\!bg-emerald-600\/5 {
    background-color: rgba(5, 150, 105, .05) !important
}

.\!bg-emerald-600\/50 {
    background-color: rgba(5, 150, 105, .5) !important
}

.\!bg-emerald-600\/60 {
    background-color: rgba(5, 150, 105, .6) !important
}

.\!bg-emerald-600\/70 {
    background-color: rgba(5, 150, 105, .7) !important
}

.\!bg-emerald-600\/75 {
    background-color: rgba(5, 150, 105, .75) !important
}

.\!bg-emerald-600\/80 {
    background-color: rgba(5, 150, 105, .8) !important
}

.\!bg-emerald-600\/90 {
    background-color: rgba(5, 150, 105, .9) !important
}

.\!bg-emerald-600\/95 {
    background-color: rgba(5, 150, 105, .95) !important
}

.\!bg-emerald-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(4 120 87/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-700\/0 {
    background-color: rgba(4, 120, 87, 0) !important
}

.\!bg-emerald-700\/10 {
    background-color: rgba(4, 120, 87, .1) !important
}

.\!bg-emerald-700\/100 {
    background-color: #047857 !important
}

.\!bg-emerald-700\/20 {
    background-color: rgba(4, 120, 87, .2) !important
}

.\!bg-emerald-700\/25 {
    background-color: rgba(4, 120, 87, .25) !important
}

.\!bg-emerald-700\/30 {
    background-color: rgba(4, 120, 87, .3) !important
}

.\!bg-emerald-700\/40 {
    background-color: rgba(4, 120, 87, .4) !important
}

.\!bg-emerald-700\/5 {
    background-color: rgba(4, 120, 87, .05) !important
}

.\!bg-emerald-700\/50 {
    background-color: rgba(4, 120, 87, .5) !important
}

.\!bg-emerald-700\/60 {
    background-color: rgba(4, 120, 87, .6) !important
}

.\!bg-emerald-700\/70 {
    background-color: rgba(4, 120, 87, .7) !important
}

.\!bg-emerald-700\/75 {
    background-color: rgba(4, 120, 87, .75) !important
}

.\!bg-emerald-700\/80 {
    background-color: rgba(4, 120, 87, .8) !important
}

.\!bg-emerald-700\/90 {
    background-color: rgba(4, 120, 87, .9) !important
}

.\!bg-emerald-700\/95 {
    background-color: rgba(4, 120, 87, .95) !important
}

.\!bg-emerald-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(6 95 70/var(--tw-bg-opacity)) !important
}

.\!bg-emerald-800\/0 {
    background-color: rgba(6, 95, 70, 0) !important
}

.\!bg-emerald-800\/10 {
    background-color: rgba(6, 95, 70, .1) !important
}

.\!bg-emerald-800\/100 {
    background-color: #065f46 !important
}

.\!bg-emerald-800\/20 {
    background-color: rgba(6, 95, 70, .2) !important
}

.\!bg-emerald-800\/25 {
    background-color: rgba(6, 95, 70, .25) !important
}

.\!bg-emerald-800\/30 {
    background-color: rgba(6, 95, 70, .3) !important
}

.\!bg-emerald-800\/40 {
    background-color: rgba(6, 95, 70, .4) !important
}

.\!bg-emerald-800\/5 {
    background-color: rgba(6, 95, 70, .05) !important
}

.\!bg-emerald-800\/50 {
    background-color: rgba(6, 95, 70, .5) !important
}

.\!bg-emerald-800\/60 {
    background-color: rgba(6, 95, 70, .6) !important
}

.\!bg-emerald-800\/70 {
    background-color: rgba(6, 95, 70, .7) !important
}

.\!bg-emerald-800\/75 {
    background-color: rgba(6, 95, 70, .75) !important
}

.\!bg-emerald-800\/80 {
    background-color: rgba(6, 95, 70, .8) !important
}

.\!bg-emerald-800\/90 {
    background-color: rgba(6, 95, 70, .9) !important
}

.\!bg-emerald-800\/95 {
    background-color: rgba(6, 95, 70, .95) !important
}

.\!bg-green-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(220 252 231/var(--tw-bg-opacity)) !important
}

.\!bg-green-100\/0 {
    background-color: rgba(220, 252, 231, 0) !important
}

.\!bg-green-100\/10 {
    background-color: rgba(220, 252, 231, .1) !important
}

.\!bg-green-100\/100 {
    background-color: #dcfce7 !important
}

.\!bg-green-100\/20 {
    background-color: rgba(220, 252, 231, .2) !important
}

.\!bg-green-100\/25 {
    background-color: rgba(220, 252, 231, .25) !important
}

.\!bg-green-100\/30 {
    background-color: rgba(220, 252, 231, .3) !important
}

.\!bg-green-100\/40 {
    background-color: rgba(220, 252, 231, .4) !important
}

.\!bg-green-100\/5 {
    background-color: rgba(220, 252, 231, .05) !important
}

.\!bg-green-100\/50 {
    background-color: rgba(220, 252, 231, .5) !important
}

.\!bg-green-100\/60 {
    background-color: rgba(220, 252, 231, .6) !important
}

.\!bg-green-100\/70 {
    background-color: rgba(220, 252, 231, .7) !important
}

.\!bg-green-100\/75 {
    background-color: rgba(220, 252, 231, .75) !important
}

.\!bg-green-100\/80 {
    background-color: rgba(220, 252, 231, .8) !important
}

.\!bg-green-100\/90 {
    background-color: rgba(220, 252, 231, .9) !important
}

.\!bg-green-100\/95 {
    background-color: rgba(220, 252, 231, .95) !important
}

.\!bg-green-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(187 247 208/var(--tw-bg-opacity)) !important
}

.\!bg-green-200\/0 {
    background-color: rgba(187, 247, 208, 0) !important
}

.\!bg-green-200\/10 {
    background-color: rgba(187, 247, 208, .1) !important
}

.\!bg-green-200\/100 {
    background-color: #bbf7d0 !important
}

.\!bg-green-200\/20 {
    background-color: rgba(187, 247, 208, .2) !important
}

.\!bg-green-200\/25 {
    background-color: rgba(187, 247, 208, .25) !important
}

.\!bg-green-200\/30 {
    background-color: rgba(187, 247, 208, .3) !important
}

.\!bg-green-200\/40 {
    background-color: rgba(187, 247, 208, .4) !important
}

.\!bg-green-200\/5 {
    background-color: rgba(187, 247, 208, .05) !important
}

.\!bg-green-200\/50 {
    background-color: rgba(187, 247, 208, .5) !important
}

.\!bg-green-200\/60 {
    background-color: rgba(187, 247, 208, .6) !important
}

.\!bg-green-200\/70 {
    background-color: rgba(187, 247, 208, .7) !important
}

.\!bg-green-200\/75 {
    background-color: rgba(187, 247, 208, .75) !important
}

.\!bg-green-200\/80 {
    background-color: rgba(187, 247, 208, .8) !important
}

.\!bg-green-200\/90 {
    background-color: rgba(187, 247, 208, .9) !important
}

.\!bg-green-200\/95 {
    background-color: rgba(187, 247, 208, .95) !important
}

.\!bg-green-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(134 239 172/var(--tw-bg-opacity)) !important
}

.\!bg-green-300\/0 {
    background-color: rgba(134, 239, 172, 0) !important
}

.\!bg-green-300\/10 {
    background-color: rgba(134, 239, 172, .1) !important
}

.\!bg-green-300\/100 {
    background-color: #86efac !important
}

.\!bg-green-300\/20 {
    background-color: rgba(134, 239, 172, .2) !important
}

.\!bg-green-300\/25 {
    background-color: rgba(134, 239, 172, .25) !important
}

.\!bg-green-300\/30 {
    background-color: rgba(134, 239, 172, .3) !important
}

.\!bg-green-300\/40 {
    background-color: rgba(134, 239, 172, .4) !important
}

.\!bg-green-300\/5 {
    background-color: rgba(134, 239, 172, .05) !important
}

.\!bg-green-300\/50 {
    background-color: rgba(134, 239, 172, .5) !important
}

.\!bg-green-300\/60 {
    background-color: rgba(134, 239, 172, .6) !important
}

.\!bg-green-300\/70 {
    background-color: rgba(134, 239, 172, .7) !important
}

.\!bg-green-300\/75 {
    background-color: rgba(134, 239, 172, .75) !important
}

.\!bg-green-300\/80 {
    background-color: rgba(134, 239, 172, .8) !important
}

.\!bg-green-300\/90 {
    background-color: rgba(134, 239, 172, .9) !important
}

.\!bg-green-300\/95 {
    background-color: rgba(134, 239, 172, .95) !important
}

.\!bg-green-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(74 222 128/var(--tw-bg-opacity)) !important
}

.\!bg-green-400\/0 {
    background-color: rgba(74, 222, 128, 0) !important
}

.\!bg-green-400\/10 {
    background-color: rgba(74, 222, 128, .1) !important
}

.\!bg-green-400\/100 {
    background-color: #4ade80 !important
}

.\!bg-green-400\/20 {
    background-color: rgba(74, 222, 128, .2) !important
}

.\!bg-green-400\/25 {
    background-color: rgba(74, 222, 128, .25) !important
}

.\!bg-green-400\/30 {
    background-color: rgba(74, 222, 128, .3) !important
}

.\!bg-green-400\/40 {
    background-color: rgba(74, 222, 128, .4) !important
}

.\!bg-green-400\/5 {
    background-color: rgba(74, 222, 128, .05) !important
}

.\!bg-green-400\/50 {
    background-color: rgba(74, 222, 128, .5) !important
}

.\!bg-green-400\/60 {
    background-color: rgba(74, 222, 128, .6) !important
}

.\!bg-green-400\/70 {
    background-color: rgba(74, 222, 128, .7) !important
}

.\!bg-green-400\/75 {
    background-color: rgba(74, 222, 128, .75) !important
}

.\!bg-green-400\/80 {
    background-color: rgba(74, 222, 128, .8) !important
}

.\!bg-green-400\/90 {
    background-color: rgba(74, 222, 128, .9) !important
}

.\!bg-green-400\/95 {
    background-color: rgba(74, 222, 128, .95) !important
}

.\!bg-green-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(34 197 94/var(--tw-bg-opacity)) !important
}

.\!bg-green-500\/0 {
    background-color: rgba(34, 197, 94, 0) !important
}

.\!bg-green-500\/10 {
    background-color: rgba(34, 197, 94, .1) !important
}

.\!bg-green-500\/100 {
    background-color: #22c55e !important
}

.\!bg-green-500\/20 {
    background-color: rgba(34, 197, 94, .2) !important
}

.\!bg-green-500\/25 {
    background-color: rgba(34, 197, 94, .25) !important
}

.\!bg-green-500\/30 {
    background-color: rgba(34, 197, 94, .3) !important
}

.\!bg-green-500\/40 {
    background-color: rgba(34, 197, 94, .4) !important
}

.\!bg-green-500\/5 {
    background-color: rgba(34, 197, 94, .05) !important
}

.\!bg-green-500\/50 {
    background-color: rgba(34, 197, 94, .5) !important
}

.\!bg-green-500\/60 {
    background-color: rgba(34, 197, 94, .6) !important
}

.\!bg-green-500\/70 {
    background-color: rgba(34, 197, 94, .7) !important
}

.\!bg-green-500\/75 {
    background-color: rgba(34, 197, 94, .75) !important
}

.\!bg-green-500\/80 {
    background-color: rgba(34, 197, 94, .8) !important
}

.\!bg-green-500\/90 {
    background-color: rgba(34, 197, 94, .9) !important
}

.\!bg-green-500\/95 {
    background-color: rgba(34, 197, 94, .95) !important
}

.\!bg-green-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(22 163 74/var(--tw-bg-opacity)) !important
}

.\!bg-green-600\/0 {
    background-color: rgba(22, 163, 74, 0) !important
}

.\!bg-green-600\/10 {
    background-color: rgba(22, 163, 74, .1) !important
}

.\!bg-green-600\/100 {
    background-color: #16a34a !important
}

.\!bg-green-600\/20 {
    background-color: rgba(22, 163, 74, .2) !important
}

.\!bg-green-600\/25 {
    background-color: rgba(22, 163, 74, .25) !important
}

.\!bg-green-600\/30 {
    background-color: rgba(22, 163, 74, .3) !important
}

.\!bg-green-600\/40 {
    background-color: rgba(22, 163, 74, .4) !important
}

.\!bg-green-600\/5 {
    background-color: rgba(22, 163, 74, .05) !important
}

.\!bg-green-600\/50 {
    background-color: rgba(22, 163, 74, .5) !important
}

.\!bg-green-600\/60 {
    background-color: rgba(22, 163, 74, .6) !important
}

.\!bg-green-600\/70 {
    background-color: rgba(22, 163, 74, .7) !important
}

.\!bg-green-600\/75 {
    background-color: rgba(22, 163, 74, .75) !important
}

.\!bg-green-600\/80 {
    background-color: rgba(22, 163, 74, .8) !important
}

.\!bg-green-600\/90 {
    background-color: rgba(22, 163, 74, .9) !important
}

.\!bg-green-600\/95 {
    background-color: rgba(22, 163, 74, .95) !important
}

.\!bg-green-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(21 128 61/var(--tw-bg-opacity)) !important
}

.\!bg-green-700\/0 {
    background-color: rgba(21, 128, 61, 0) !important
}

.\!bg-green-700\/10 {
    background-color: rgba(21, 128, 61, .1) !important
}

.\!bg-green-700\/100 {
    background-color: #15803d !important
}

.\!bg-green-700\/20 {
    background-color: rgba(21, 128, 61, .2) !important
}

.\!bg-green-700\/25 {
    background-color: rgba(21, 128, 61, .25) !important
}

.\!bg-green-700\/30 {
    background-color: rgba(21, 128, 61, .3) !important
}

.\!bg-green-700\/40 {
    background-color: rgba(21, 128, 61, .4) !important
}

.\!bg-green-700\/5 {
    background-color: rgba(21, 128, 61, .05) !important
}

.\!bg-green-700\/50 {
    background-color: rgba(21, 128, 61, .5) !important
}

.\!bg-green-700\/60 {
    background-color: rgba(21, 128, 61, .6) !important
}

.\!bg-green-700\/70 {
    background-color: rgba(21, 128, 61, .7) !important
}

.\!bg-green-700\/75 {
    background-color: rgba(21, 128, 61, .75) !important
}

.\!bg-green-700\/80 {
    background-color: rgba(21, 128, 61, .8) !important
}

.\!bg-green-700\/90 {
    background-color: rgba(21, 128, 61, .9) !important
}

.\!bg-green-700\/95 {
    background-color: rgba(21, 128, 61, .95) !important
}

.\!bg-green-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(22 101 52/var(--tw-bg-opacity)) !important
}

.\!bg-green-800\/0 {
    background-color: rgba(22, 101, 52, 0) !important
}

.\!bg-green-800\/10 {
    background-color: rgba(22, 101, 52, .1) !important
}

.\!bg-green-800\/100 {
    background-color: #166534 !important
}

.\!bg-green-800\/20 {
    background-color: rgba(22, 101, 52, .2) !important
}

.\!bg-green-800\/25 {
    background-color: rgba(22, 101, 52, .25) !important
}

.\!bg-green-800\/30 {
    background-color: rgba(22, 101, 52, .3) !important
}

.\!bg-green-800\/40 {
    background-color: rgba(22, 101, 52, .4) !important
}

.\!bg-green-800\/5 {
    background-color: rgba(22, 101, 52, .05) !important
}

.\!bg-green-800\/50 {
    background-color: rgba(22, 101, 52, .5) !important
}

.\!bg-green-800\/60 {
    background-color: rgba(22, 101, 52, .6) !important
}

.\!bg-green-800\/70 {
    background-color: rgba(22, 101, 52, .7) !important
}

.\!bg-green-800\/75 {
    background-color: rgba(22, 101, 52, .75) !important
}

.\!bg-green-800\/80 {
    background-color: rgba(22, 101, 52, .8) !important
}

.\!bg-green-800\/90 {
    background-color: rgba(22, 101, 52, .9) !important
}

.\!bg-green-800\/95 {
    background-color: rgba(22, 101, 52, .95) !important
}

.\!bg-lime-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(236 252 203/var(--tw-bg-opacity)) !important
}

.\!bg-lime-100\/0 {
    background-color: hsla(80, 89%, 89%, 0) !important
}

.\!bg-lime-100\/10 {
    background-color: hsla(80, 89%, 89%, .1) !important
}

.\!bg-lime-100\/100 {
    background-color: #ecfccb !important
}

.\!bg-lime-100\/20 {
    background-color: hsla(80, 89%, 89%, .2) !important
}

.\!bg-lime-100\/25 {
    background-color: hsla(80, 89%, 89%, .25) !important
}

.\!bg-lime-100\/30 {
    background-color: hsla(80, 89%, 89%, .3) !important
}

.\!bg-lime-100\/40 {
    background-color: hsla(80, 89%, 89%, .4) !important
}

.\!bg-lime-100\/5 {
    background-color: hsla(80, 89%, 89%, .05) !important
}

.\!bg-lime-100\/50 {
    background-color: hsla(80, 89%, 89%, .5) !important
}

.\!bg-lime-100\/60 {
    background-color: hsla(80, 89%, 89%, .6) !important
}

.\!bg-lime-100\/70 {
    background-color: hsla(80, 89%, 89%, .7) !important
}

.\!bg-lime-100\/75 {
    background-color: hsla(80, 89%, 89%, .75) !important
}

.\!bg-lime-100\/80 {
    background-color: hsla(80, 89%, 89%, .8) !important
}

.\!bg-lime-100\/90 {
    background-color: hsla(80, 89%, 89%, .9) !important
}

.\!bg-lime-100\/95 {
    background-color: hsla(80, 89%, 89%, .95) !important
}

.\!bg-lime-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(217 249 157/var(--tw-bg-opacity)) !important
}

.\!bg-lime-200\/0 {
    background-color: hsla(81, 88%, 80%, 0) !important
}

.\!bg-lime-200\/10 {
    background-color: hsla(81, 88%, 80%, .1) !important
}

.\!bg-lime-200\/100 {
    background-color: #d9f99d !important
}

.\!bg-lime-200\/20 {
    background-color: hsla(81, 88%, 80%, .2) !important
}

.\!bg-lime-200\/25 {
    background-color: hsla(81, 88%, 80%, .25) !important
}

.\!bg-lime-200\/30 {
    background-color: hsla(81, 88%, 80%, .3) !important
}

.\!bg-lime-200\/40 {
    background-color: hsla(81, 88%, 80%, .4) !important
}

.\!bg-lime-200\/5 {
    background-color: hsla(81, 88%, 80%, .05) !important
}

.\!bg-lime-200\/50 {
    background-color: hsla(81, 88%, 80%, .5) !important
}

.\!bg-lime-200\/60 {
    background-color: hsla(81, 88%, 80%, .6) !important
}

.\!bg-lime-200\/70 {
    background-color: hsla(81, 88%, 80%, .7) !important
}

.\!bg-lime-200\/75 {
    background-color: hsla(81, 88%, 80%, .75) !important
}

.\!bg-lime-200\/80 {
    background-color: hsla(81, 88%, 80%, .8) !important
}

.\!bg-lime-200\/90 {
    background-color: hsla(81, 88%, 80%, .9) !important
}

.\!bg-lime-200\/95 {
    background-color: hsla(81, 88%, 80%, .95) !important
}

.\!bg-lime-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(190 242 100/var(--tw-bg-opacity)) !important
}

.\!bg-lime-300\/0 {
    background-color: hsla(82, 85%, 67%, 0) !important
}

.\!bg-lime-300\/10 {
    background-color: hsla(82, 85%, 67%, .1) !important
}

.\!bg-lime-300\/100 {
    background-color: #bef264 !important
}

.\!bg-lime-300\/20 {
    background-color: hsla(82, 85%, 67%, .2) !important
}

.\!bg-lime-300\/25 {
    background-color: hsla(82, 85%, 67%, .25) !important
}

.\!bg-lime-300\/30 {
    background-color: hsla(82, 85%, 67%, .3) !important
}

.\!bg-lime-300\/40 {
    background-color: hsla(82, 85%, 67%, .4) !important
}

.\!bg-lime-300\/5 {
    background-color: hsla(82, 85%, 67%, .05) !important
}

.\!bg-lime-300\/50 {
    background-color: hsla(82, 85%, 67%, .5) !important
}

.\!bg-lime-300\/60 {
    background-color: hsla(82, 85%, 67%, .6) !important
}

.\!bg-lime-300\/70 {
    background-color: hsla(82, 85%, 67%, .7) !important
}

.\!bg-lime-300\/75 {
    background-color: hsla(82, 85%, 67%, .75) !important
}

.\!bg-lime-300\/80 {
    background-color: hsla(82, 85%, 67%, .8) !important
}

.\!bg-lime-300\/90 {
    background-color: hsla(82, 85%, 67%, .9) !important
}

.\!bg-lime-300\/95 {
    background-color: hsla(82, 85%, 67%, .95) !important
}

.\!bg-lime-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(163 230 53/var(--tw-bg-opacity)) !important
}

.\!bg-lime-400\/0 {
    background-color: rgba(163, 230, 53, 0) !important
}

.\!bg-lime-400\/10 {
    background-color: rgba(163, 230, 53, .1) !important
}

.\!bg-lime-400\/100 {
    background-color: #a3e635 !important
}

.\!bg-lime-400\/20 {
    background-color: rgba(163, 230, 53, .2) !important
}

.\!bg-lime-400\/25 {
    background-color: rgba(163, 230, 53, .25) !important
}

.\!bg-lime-400\/30 {
    background-color: rgba(163, 230, 53, .3) !important
}

.\!bg-lime-400\/40 {
    background-color: rgba(163, 230, 53, .4) !important
}

.\!bg-lime-400\/5 {
    background-color: rgba(163, 230, 53, .05) !important
}

.\!bg-lime-400\/50 {
    background-color: rgba(163, 230, 53, .5) !important
}

.\!bg-lime-400\/60 {
    background-color: rgba(163, 230, 53, .6) !important
}

.\!bg-lime-400\/70 {
    background-color: rgba(163, 230, 53, .7) !important
}

.\!bg-lime-400\/75 {
    background-color: rgba(163, 230, 53, .75) !important
}

.\!bg-lime-400\/80 {
    background-color: rgba(163, 230, 53, .8) !important
}

.\!bg-lime-400\/90 {
    background-color: rgba(163, 230, 53, .9) !important
}

.\!bg-lime-400\/95 {
    background-color: rgba(163, 230, 53, .95) !important
}

.\!bg-lime-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(132 204 22/var(--tw-bg-opacity)) !important
}

.\!bg-lime-500\/0 {
    background-color: rgba(132, 204, 22, 0) !important
}

.\!bg-lime-500\/10 {
    background-color: rgba(132, 204, 22, .1) !important
}

.\!bg-lime-500\/100 {
    background-color: #84cc16 !important
}

.\!bg-lime-500\/20 {
    background-color: rgba(132, 204, 22, .2) !important
}

.\!bg-lime-500\/25 {
    background-color: rgba(132, 204, 22, .25) !important
}

.\!bg-lime-500\/30 {
    background-color: rgba(132, 204, 22, .3) !important
}

.\!bg-lime-500\/40 {
    background-color: rgba(132, 204, 22, .4) !important
}

.\!bg-lime-500\/5 {
    background-color: rgba(132, 204, 22, .05) !important
}

.\!bg-lime-500\/50 {
    background-color: rgba(132, 204, 22, .5) !important
}

.\!bg-lime-500\/60 {
    background-color: rgba(132, 204, 22, .6) !important
}

.\!bg-lime-500\/70 {
    background-color: rgba(132, 204, 22, .7) !important
}

.\!bg-lime-500\/75 {
    background-color: rgba(132, 204, 22, .75) !important
}

.\!bg-lime-500\/80 {
    background-color: rgba(132, 204, 22, .8) !important
}

.\!bg-lime-500\/90 {
    background-color: rgba(132, 204, 22, .9) !important
}

.\!bg-lime-500\/95 {
    background-color: rgba(132, 204, 22, .95) !important
}

.\!bg-lime-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(101 163 13/var(--tw-bg-opacity)) !important
}

.\!bg-lime-600\/0 {
    background-color: rgba(101, 163, 13, 0) !important
}

.\!bg-lime-600\/10 {
    background-color: rgba(101, 163, 13, .1) !important
}

.\!bg-lime-600\/100 {
    background-color: #65a30d !important
}

.\!bg-lime-600\/20 {
    background-color: rgba(101, 163, 13, .2) !important
}

.\!bg-lime-600\/25 {
    background-color: rgba(101, 163, 13, .25) !important
}

.\!bg-lime-600\/30 {
    background-color: rgba(101, 163, 13, .3) !important
}

.\!bg-lime-600\/40 {
    background-color: rgba(101, 163, 13, .4) !important
}

.\!bg-lime-600\/5 {
    background-color: rgba(101, 163, 13, .05) !important
}

.\!bg-lime-600\/50 {
    background-color: rgba(101, 163, 13, .5) !important
}

.\!bg-lime-600\/60 {
    background-color: rgba(101, 163, 13, .6) !important
}

.\!bg-lime-600\/70 {
    background-color: rgba(101, 163, 13, .7) !important
}

.\!bg-lime-600\/75 {
    background-color: rgba(101, 163, 13, .75) !important
}

.\!bg-lime-600\/80 {
    background-color: rgba(101, 163, 13, .8) !important
}

.\!bg-lime-600\/90 {
    background-color: rgba(101, 163, 13, .9) !important
}

.\!bg-lime-600\/95 {
    background-color: rgba(101, 163, 13, .95) !important
}

.\!bg-lime-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(77 124 15/var(--tw-bg-opacity)) !important
}

.\!bg-lime-700\/0 {
    background-color: rgba(77, 124, 15, 0) !important
}

.\!bg-lime-700\/10 {
    background-color: rgba(77, 124, 15, .1) !important
}

.\!bg-lime-700\/100 {
    background-color: #4d7c0f !important
}

.\!bg-lime-700\/20 {
    background-color: rgba(77, 124, 15, .2) !important
}

.\!bg-lime-700\/25 {
    background-color: rgba(77, 124, 15, .25) !important
}

.\!bg-lime-700\/30 {
    background-color: rgba(77, 124, 15, .3) !important
}

.\!bg-lime-700\/40 {
    background-color: rgba(77, 124, 15, .4) !important
}

.\!bg-lime-700\/5 {
    background-color: rgba(77, 124, 15, .05) !important
}

.\!bg-lime-700\/50 {
    background-color: rgba(77, 124, 15, .5) !important
}

.\!bg-lime-700\/60 {
    background-color: rgba(77, 124, 15, .6) !important
}

.\!bg-lime-700\/70 {
    background-color: rgba(77, 124, 15, .7) !important
}

.\!bg-lime-700\/75 {
    background-color: rgba(77, 124, 15, .75) !important
}

.\!bg-lime-700\/80 {
    background-color: rgba(77, 124, 15, .8) !important
}

.\!bg-lime-700\/90 {
    background-color: rgba(77, 124, 15, .9) !important
}

.\!bg-lime-700\/95 {
    background-color: rgba(77, 124, 15, .95) !important
}

.\!bg-lime-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(63 98 18/var(--tw-bg-opacity)) !important
}

.\!bg-lime-800\/0 {
    background-color: rgba(63, 98, 18, 0) !important
}

.\!bg-lime-800\/10 {
    background-color: rgba(63, 98, 18, .1) !important
}

.\!bg-lime-800\/100 {
    background-color: #3f6212 !important
}

.\!bg-lime-800\/20 {
    background-color: rgba(63, 98, 18, .2) !important
}

.\!bg-lime-800\/25 {
    background-color: rgba(63, 98, 18, .25) !important
}

.\!bg-lime-800\/30 {
    background-color: rgba(63, 98, 18, .3) !important
}

.\!bg-lime-800\/40 {
    background-color: rgba(63, 98, 18, .4) !important
}

.\!bg-lime-800\/5 {
    background-color: rgba(63, 98, 18, .05) !important
}

.\!bg-lime-800\/50 {
    background-color: rgba(63, 98, 18, .5) !important
}

.\!bg-lime-800\/60 {
    background-color: rgba(63, 98, 18, .6) !important
}

.\!bg-lime-800\/70 {
    background-color: rgba(63, 98, 18, .7) !important
}

.\!bg-lime-800\/75 {
    background-color: rgba(63, 98, 18, .75) !important
}

.\!bg-lime-800\/80 {
    background-color: rgba(63, 98, 18, .8) !important
}

.\!bg-lime-800\/90 {
    background-color: rgba(63, 98, 18, .9) !important
}

.\!bg-lime-800\/95 {
    background-color: rgba(63, 98, 18, .95) !important
}

.\!bg-orange-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 237 213/var(--tw-bg-opacity)) !important
}

.\!bg-orange-100\/0 {
    background-color: rgba(255, 237, 213, 0) !important
}

.\!bg-orange-100\/10 {
    background-color: rgba(255, 237, 213, .1) !important
}

.\!bg-orange-100\/100 {
    background-color: #ffedd5 !important
}

.\!bg-orange-100\/20 {
    background-color: rgba(255, 237, 213, .2) !important
}

.\!bg-orange-100\/25 {
    background-color: rgba(255, 237, 213, .25) !important
}

.\!bg-orange-100\/30 {
    background-color: rgba(255, 237, 213, .3) !important
}

.\!bg-orange-100\/40 {
    background-color: rgba(255, 237, 213, .4) !important
}

.\!bg-orange-100\/5 {
    background-color: rgba(255, 237, 213, .05) !important
}

.\!bg-orange-100\/50 {
    background-color: rgba(255, 237, 213, .5) !important
}

.\!bg-orange-100\/60 {
    background-color: rgba(255, 237, 213, .6) !important
}

.\!bg-orange-100\/70 {
    background-color: rgba(255, 237, 213, .7) !important
}

.\!bg-orange-100\/75 {
    background-color: rgba(255, 237, 213, .75) !important
}

.\!bg-orange-100\/80 {
    background-color: rgba(255, 237, 213, .8) !important
}

.\!bg-orange-100\/90 {
    background-color: rgba(255, 237, 213, .9) !important
}

.\!bg-orange-100\/95 {
    background-color: rgba(255, 237, 213, .95) !important
}

.\!bg-orange-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(254 215 170/var(--tw-bg-opacity)) !important
}

.\!bg-orange-200\/0 {
    background-color: hsla(32, 98%, 83%, 0) !important
}

.\!bg-orange-200\/10 {
    background-color: hsla(32, 98%, 83%, .1) !important
}

.\!bg-orange-200\/100 {
    background-color: #fed7aa !important
}

.\!bg-orange-200\/20 {
    background-color: hsla(32, 98%, 83%, .2) !important
}

.\!bg-orange-200\/25 {
    background-color: hsla(32, 98%, 83%, .25) !important
}

.\!bg-orange-200\/30 {
    background-color: hsla(32, 98%, 83%, .3) !important
}

.\!bg-orange-200\/40 {
    background-color: hsla(32, 98%, 83%, .4) !important
}

.\!bg-orange-200\/5 {
    background-color: hsla(32, 98%, 83%, .05) !important
}

.\!bg-orange-200\/50 {
    background-color: hsla(32, 98%, 83%, .5) !important
}

.\!bg-orange-200\/60 {
    background-color: hsla(32, 98%, 83%, .6) !important
}

.\!bg-orange-200\/70 {
    background-color: hsla(32, 98%, 83%, .7) !important
}

.\!bg-orange-200\/75 {
    background-color: hsla(32, 98%, 83%, .75) !important
}

.\!bg-orange-200\/80 {
    background-color: hsla(32, 98%, 83%, .8) !important
}

.\!bg-orange-200\/90 {
    background-color: hsla(32, 98%, 83%, .9) !important
}

.\!bg-orange-200\/95 {
    background-color: hsla(32, 98%, 83%, .95) !important
}

.\!bg-orange-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(253 186 116/var(--tw-bg-opacity)) !important
}

.\!bg-orange-300\/0 {
    background-color: hsla(31, 97%, 72%, 0) !important
}

.\!bg-orange-300\/10 {
    background-color: hsla(31, 97%, 72%, .1) !important
}

.\!bg-orange-300\/100 {
    background-color: #fdba74 !important
}

.\!bg-orange-300\/20 {
    background-color: hsla(31, 97%, 72%, .2) !important
}

.\!bg-orange-300\/25 {
    background-color: hsla(31, 97%, 72%, .25) !important
}

.\!bg-orange-300\/30 {
    background-color: hsla(31, 97%, 72%, .3) !important
}

.\!bg-orange-300\/40 {
    background-color: hsla(31, 97%, 72%, .4) !important
}

.\!bg-orange-300\/5 {
    background-color: hsla(31, 97%, 72%, .05) !important
}

.\!bg-orange-300\/50 {
    background-color: hsla(31, 97%, 72%, .5) !important
}

.\!bg-orange-300\/60 {
    background-color: hsla(31, 97%, 72%, .6) !important
}

.\!bg-orange-300\/70 {
    background-color: hsla(31, 97%, 72%, .7) !important
}

.\!bg-orange-300\/75 {
    background-color: hsla(31, 97%, 72%, .75) !important
}

.\!bg-orange-300\/80 {
    background-color: hsla(31, 97%, 72%, .8) !important
}

.\!bg-orange-300\/90 {
    background-color: hsla(31, 97%, 72%, .9) !important
}

.\!bg-orange-300\/95 {
    background-color: hsla(31, 97%, 72%, .95) !important
}

.\!bg-orange-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(251 146 60/var(--tw-bg-opacity)) !important
}

.\!bg-orange-400\/0 {
    background-color: rgba(251, 146, 60, 0) !important
}

.\!bg-orange-400\/10 {
    background-color: rgba(251, 146, 60, .1) !important
}

.\!bg-orange-400\/100 {
    background-color: #fb923c !important
}

.\!bg-orange-400\/20 {
    background-color: rgba(251, 146, 60, .2) !important
}

.\!bg-orange-400\/25 {
    background-color: rgba(251, 146, 60, .25) !important
}

.\!bg-orange-400\/30 {
    background-color: rgba(251, 146, 60, .3) !important
}

.\!bg-orange-400\/40 {
    background-color: rgba(251, 146, 60, .4) !important
}

.\!bg-orange-400\/5 {
    background-color: rgba(251, 146, 60, .05) !important
}

.\!bg-orange-400\/50 {
    background-color: rgba(251, 146, 60, .5) !important
}

.\!bg-orange-400\/60 {
    background-color: rgba(251, 146, 60, .6) !important
}

.\!bg-orange-400\/70 {
    background-color: rgba(251, 146, 60, .7) !important
}

.\!bg-orange-400\/75 {
    background-color: rgba(251, 146, 60, .75) !important
}

.\!bg-orange-400\/80 {
    background-color: rgba(251, 146, 60, .8) !important
}

.\!bg-orange-400\/90 {
    background-color: rgba(251, 146, 60, .9) !important
}

.\!bg-orange-400\/95 {
    background-color: rgba(251, 146, 60, .95) !important
}

.\!bg-orange-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(249 115 22/var(--tw-bg-opacity)) !important
}

.\!bg-orange-500\/0 {
    background-color: rgba(249, 115, 22, 0) !important
}

.\!bg-orange-500\/10 {
    background-color: rgba(249, 115, 22, .1) !important
}

.\!bg-orange-500\/100 {
    background-color: #f97316 !important
}

.\!bg-orange-500\/20 {
    background-color: rgba(249, 115, 22, .2) !important
}

.\!bg-orange-500\/25 {
    background-color: rgba(249, 115, 22, .25) !important
}

.\!bg-orange-500\/30 {
    background-color: rgba(249, 115, 22, .3) !important
}

.\!bg-orange-500\/40 {
    background-color: rgba(249, 115, 22, .4) !important
}

.\!bg-orange-500\/5 {
    background-color: rgba(249, 115, 22, .05) !important
}

.\!bg-orange-500\/50 {
    background-color: rgba(249, 115, 22, .5) !important
}

.\!bg-orange-500\/60 {
    background-color: rgba(249, 115, 22, .6) !important
}

.\!bg-orange-500\/70 {
    background-color: rgba(249, 115, 22, .7) !important
}

.\!bg-orange-500\/75 {
    background-color: rgba(249, 115, 22, .75) !important
}

.\!bg-orange-500\/80 {
    background-color: rgba(249, 115, 22, .8) !important
}

.\!bg-orange-500\/90 {
    background-color: rgba(249, 115, 22, .9) !important
}

.\!bg-orange-500\/95 {
    background-color: rgba(249, 115, 22, .95) !important
}

.\!bg-orange-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(234 88 12/var(--tw-bg-opacity)) !important
}

.\!bg-orange-600\/0 {
    background-color: rgba(234, 88, 12, 0) !important
}

.\!bg-orange-600\/10 {
    background-color: rgba(234, 88, 12, .1) !important
}

.\!bg-orange-600\/100 {
    background-color: #ea580c !important
}

.\!bg-orange-600\/20 {
    background-color: rgba(234, 88, 12, .2) !important
}

.\!bg-orange-600\/25 {
    background-color: rgba(234, 88, 12, .25) !important
}

.\!bg-orange-600\/30 {
    background-color: rgba(234, 88, 12, .3) !important
}

.\!bg-orange-600\/40 {
    background-color: rgba(234, 88, 12, .4) !important
}

.\!bg-orange-600\/5 {
    background-color: rgba(234, 88, 12, .05) !important
}

.\!bg-orange-600\/50 {
    background-color: rgba(234, 88, 12, .5) !important
}

.\!bg-orange-600\/60 {
    background-color: rgba(234, 88, 12, .6) !important
}

.\!bg-orange-600\/70 {
    background-color: rgba(234, 88, 12, .7) !important
}

.\!bg-orange-600\/75 {
    background-color: rgba(234, 88, 12, .75) !important
}

.\!bg-orange-600\/80 {
    background-color: rgba(234, 88, 12, .8) !important
}

.\!bg-orange-600\/90 {
    background-color: rgba(234, 88, 12, .9) !important
}

.\!bg-orange-600\/95 {
    background-color: rgba(234, 88, 12, .95) !important
}

.\!bg-orange-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(194 65 12/var(--tw-bg-opacity)) !important
}

.\!bg-orange-700\/0 {
    background-color: rgba(194, 65, 12, 0) !important
}

.\!bg-orange-700\/10 {
    background-color: rgba(194, 65, 12, .1) !important
}

.\!bg-orange-700\/100 {
    background-color: #c2410c !important
}

.\!bg-orange-700\/20 {
    background-color: rgba(194, 65, 12, .2) !important
}

.\!bg-orange-700\/25 {
    background-color: rgba(194, 65, 12, .25) !important
}

.\!bg-orange-700\/30 {
    background-color: rgba(194, 65, 12, .3) !important
}

.\!bg-orange-700\/40 {
    background-color: rgba(194, 65, 12, .4) !important
}

.\!bg-orange-700\/5 {
    background-color: rgba(194, 65, 12, .05) !important
}

.\!bg-orange-700\/50 {
    background-color: rgba(194, 65, 12, .5) !important
}

.\!bg-orange-700\/60 {
    background-color: rgba(194, 65, 12, .6) !important
}

.\!bg-orange-700\/70 {
    background-color: rgba(194, 65, 12, .7) !important
}

.\!bg-orange-700\/75 {
    background-color: rgba(194, 65, 12, .75) !important
}

.\!bg-orange-700\/80 {
    background-color: rgba(194, 65, 12, .8) !important
}

.\!bg-orange-700\/90 {
    background-color: rgba(194, 65, 12, .9) !important
}

.\!bg-orange-700\/95 {
    background-color: rgba(194, 65, 12, .95) !important
}

.\!bg-orange-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(154 52 18/var(--tw-bg-opacity)) !important
}

.\!bg-orange-800\/0 {
    background-color: rgba(154, 52, 18, 0) !important
}

.\!bg-orange-800\/10 {
    background-color: rgba(154, 52, 18, .1) !important
}

.\!bg-orange-800\/100 {
    background-color: #9a3412 !important
}

.\!bg-orange-800\/20 {
    background-color: rgba(154, 52, 18, .2) !important
}

.\!bg-orange-800\/25 {
    background-color: rgba(154, 52, 18, .25) !important
}

.\!bg-orange-800\/30 {
    background-color: rgba(154, 52, 18, .3) !important
}

.\!bg-orange-800\/40 {
    background-color: rgba(154, 52, 18, .4) !important
}

.\!bg-orange-800\/5 {
    background-color: rgba(154, 52, 18, .05) !important
}

.\!bg-orange-800\/50 {
    background-color: rgba(154, 52, 18, .5) !important
}

.\!bg-orange-800\/60 {
    background-color: rgba(154, 52, 18, .6) !important
}

.\!bg-orange-800\/70 {
    background-color: rgba(154, 52, 18, .7) !important
}

.\!bg-orange-800\/75 {
    background-color: rgba(154, 52, 18, .75) !important
}

.\!bg-orange-800\/80 {
    background-color: rgba(154, 52, 18, .8) !important
}

.\!bg-orange-800\/90 {
    background-color: rgba(154, 52, 18, .9) !important
}

.\!bg-orange-800\/95 {
    background-color: rgba(154, 52, 18, .95) !important
}

.\!bg-red-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(254 226 226/var(--tw-bg-opacity)) !important
}

.\!bg-red-100\/0 {
    background-color: hsla(0, 93%, 94%, 0) !important
}

.\!bg-red-100\/10 {
    background-color: hsla(0, 93%, 94%, .1) !important
}

.\!bg-red-100\/100 {
    background-color: #fee2e2 !important
}

.\!bg-red-100\/20 {
    background-color: hsla(0, 93%, 94%, .2) !important
}

.\!bg-red-100\/25 {
    background-color: hsla(0, 93%, 94%, .25) !important
}

.\!bg-red-100\/30 {
    background-color: hsla(0, 93%, 94%, .3) !important
}

.\!bg-red-100\/40 {
    background-color: hsla(0, 93%, 94%, .4) !important
}

.\!bg-red-100\/5 {
    background-color: hsla(0, 93%, 94%, .05) !important
}

.\!bg-red-100\/50 {
    background-color: hsla(0, 93%, 94%, .5) !important
}

.\!bg-red-100\/60 {
    background-color: hsla(0, 93%, 94%, .6) !important
}

.\!bg-red-100\/70 {
    background-color: hsla(0, 93%, 94%, .7) !important
}

.\!bg-red-100\/75 {
    background-color: hsla(0, 93%, 94%, .75) !important
}

.\!bg-red-100\/80 {
    background-color: hsla(0, 93%, 94%, .8) !important
}

.\!bg-red-100\/90 {
    background-color: hsla(0, 93%, 94%, .9) !important
}

.\!bg-red-100\/95 {
    background-color: hsla(0, 93%, 94%, .95) !important
}

.\!bg-red-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(254 202 202/var(--tw-bg-opacity)) !important
}

.\!bg-red-200\/0 {
    background-color: hsla(0, 96%, 89%, 0) !important
}

.\!bg-red-200\/10 {
    background-color: hsla(0, 96%, 89%, .1) !important
}

.\!bg-red-200\/100 {
    background-color: #fecaca !important
}

.\!bg-red-200\/20 {
    background-color: hsla(0, 96%, 89%, .2) !important
}

.\!bg-red-200\/25 {
    background-color: hsla(0, 96%, 89%, .25) !important
}

.\!bg-red-200\/30 {
    background-color: hsla(0, 96%, 89%, .3) !important
}

.\!bg-red-200\/40 {
    background-color: hsla(0, 96%, 89%, .4) !important
}

.\!bg-red-200\/5 {
    background-color: hsla(0, 96%, 89%, .05) !important
}

.\!bg-red-200\/50 {
    background-color: hsla(0, 96%, 89%, .5) !important
}

.\!bg-red-200\/60 {
    background-color: hsla(0, 96%, 89%, .6) !important
}

.\!bg-red-200\/70 {
    background-color: hsla(0, 96%, 89%, .7) !important
}

.\!bg-red-200\/75 {
    background-color: hsla(0, 96%, 89%, .75) !important
}

.\!bg-red-200\/80 {
    background-color: hsla(0, 96%, 89%, .8) !important
}

.\!bg-red-200\/90 {
    background-color: hsla(0, 96%, 89%, .9) !important
}

.\!bg-red-200\/95 {
    background-color: hsla(0, 96%, 89%, .95) !important
}

.\!bg-red-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(252 165 165/var(--tw-bg-opacity)) !important
}

.\!bg-red-300\/0 {
    background-color: hsla(0, 94%, 82%, 0) !important
}

.\!bg-red-300\/10 {
    background-color: hsla(0, 94%, 82%, .1) !important
}

.\!bg-red-300\/100 {
    background-color: #fca5a5 !important
}

.\!bg-red-300\/20 {
    background-color: hsla(0, 94%, 82%, .2) !important
}

.\!bg-red-300\/25 {
    background-color: hsla(0, 94%, 82%, .25) !important
}

.\!bg-red-300\/30 {
    background-color: hsla(0, 94%, 82%, .3) !important
}

.\!bg-red-300\/40 {
    background-color: hsla(0, 94%, 82%, .4) !important
}

.\!bg-red-300\/5 {
    background-color: hsla(0, 94%, 82%, .05) !important
}

.\!bg-red-300\/50 {
    background-color: hsla(0, 94%, 82%, .5) !important
}

.\!bg-red-300\/60 {
    background-color: hsla(0, 94%, 82%, .6) !important
}

.\!bg-red-300\/70 {
    background-color: hsla(0, 94%, 82%, .7) !important
}

.\!bg-red-300\/75 {
    background-color: hsla(0, 94%, 82%, .75) !important
}

.\!bg-red-300\/80 {
    background-color: hsla(0, 94%, 82%, .8) !important
}

.\!bg-red-300\/90 {
    background-color: hsla(0, 94%, 82%, .9) !important
}

.\!bg-red-300\/95 {
    background-color: hsla(0, 94%, 82%, .95) !important
}

.\!bg-red-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(248 113 113/var(--tw-bg-opacity)) !important
}

.\!bg-red-400\/0 {
    background-color: hsla(0, 91%, 71%, 0) !important
}

.\!bg-red-400\/10 {
    background-color: hsla(0, 91%, 71%, .1) !important
}

.\!bg-red-400\/100 {
    background-color: #f87171 !important
}

.\!bg-red-400\/20 {
    background-color: hsla(0, 91%, 71%, .2) !important
}

.\!bg-red-400\/25 {
    background-color: hsla(0, 91%, 71%, .25) !important
}

.\!bg-red-400\/30 {
    background-color: hsla(0, 91%, 71%, .3) !important
}

.\!bg-red-400\/40 {
    background-color: hsla(0, 91%, 71%, .4) !important
}

.\!bg-red-400\/5 {
    background-color: hsla(0, 91%, 71%, .05) !important
}

.\!bg-red-400\/50 {
    background-color: hsla(0, 91%, 71%, .5) !important
}

.\!bg-red-400\/60 {
    background-color: hsla(0, 91%, 71%, .6) !important
}

.\!bg-red-400\/70 {
    background-color: hsla(0, 91%, 71%, .7) !important
}

.\!bg-red-400\/75 {
    background-color: hsla(0, 91%, 71%, .75) !important
}

.\!bg-red-400\/80 {
    background-color: hsla(0, 91%, 71%, .8) !important
}

.\!bg-red-400\/90 {
    background-color: hsla(0, 91%, 71%, .9) !important
}

.\!bg-red-400\/95 {
    background-color: hsla(0, 91%, 71%, .95) !important
}

.\!bg-red-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(239 68 68/var(--tw-bg-opacity)) !important
}

.\!bg-red-500\/0 {
    background-color: rgba(239, 68, 68, 0) !important
}

.\!bg-red-500\/10 {
    background-color: rgba(239, 68, 68, .1) !important
}

.\!bg-red-500\/100 {
    background-color: #ef4444 !important
}

.\!bg-red-500\/20 {
    background-color: rgba(239, 68, 68, .2) !important
}

.\!bg-red-500\/25 {
    background-color: rgba(239, 68, 68, .25) !important
}

.\!bg-red-500\/30 {
    background-color: rgba(239, 68, 68, .3) !important
}

.\!bg-red-500\/40 {
    background-color: rgba(239, 68, 68, .4) !important
}

.\!bg-red-500\/5 {
    background-color: rgba(239, 68, 68, .05) !important
}

.\!bg-red-500\/50 {
    background-color: rgba(239, 68, 68, .5) !important
}

.\!bg-red-500\/60 {
    background-color: rgba(239, 68, 68, .6) !important
}

.\!bg-red-500\/70 {
    background-color: rgba(239, 68, 68, .7) !important
}

.\!bg-red-500\/75 {
    background-color: rgba(239, 68, 68, .75) !important
}

.\!bg-red-500\/80 {
    background-color: rgba(239, 68, 68, .8) !important
}

.\!bg-red-500\/90 {
    background-color: rgba(239, 68, 68, .9) !important
}

.\!bg-red-500\/95 {
    background-color: rgba(239, 68, 68, .95) !important
}

.\!bg-red-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(220 38 38/var(--tw-bg-opacity)) !important
}

.\!bg-red-600\/0 {
    background-color: rgba(220, 38, 38, 0) !important
}

.\!bg-red-600\/10 {
    background-color: rgba(220, 38, 38, .1) !important
}

.\!bg-red-600\/100 {
    background-color: #dc2626 !important
}

.\!bg-red-600\/20 {
    background-color: rgba(220, 38, 38, .2) !important
}

.\!bg-red-600\/25 {
    background-color: rgba(220, 38, 38, .25) !important
}

.\!bg-red-600\/30 {
    background-color: rgba(220, 38, 38, .3) !important
}

.\!bg-red-600\/40 {
    background-color: rgba(220, 38, 38, .4) !important
}

.\!bg-red-600\/5 {
    background-color: rgba(220, 38, 38, .05) !important
}

.\!bg-red-600\/50 {
    background-color: rgba(220, 38, 38, .5) !important
}

.\!bg-red-600\/60 {
    background-color: rgba(220, 38, 38, .6) !important
}

.\!bg-red-600\/70 {
    background-color: rgba(220, 38, 38, .7) !important
}

.\!bg-red-600\/75 {
    background-color: rgba(220, 38, 38, .75) !important
}

.\!bg-red-600\/80 {
    background-color: rgba(220, 38, 38, .8) !important
}

.\!bg-red-600\/90 {
    background-color: rgba(220, 38, 38, .9) !important
}

.\!bg-red-600\/95 {
    background-color: rgba(220, 38, 38, .95) !important
}

.\!bg-red-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(185 28 28/var(--tw-bg-opacity)) !important
}

.\!bg-red-700\/0 {
    background-color: rgba(185, 28, 28, 0) !important
}

.\!bg-red-700\/10 {
    background-color: rgba(185, 28, 28, .1) !important
}

.\!bg-red-700\/100 {
    background-color: #b91c1c !important
}

.\!bg-red-700\/20 {
    background-color: rgba(185, 28, 28, .2) !important
}

.\!bg-red-700\/25 {
    background-color: rgba(185, 28, 28, .25) !important
}

.\!bg-red-700\/30 {
    background-color: rgba(185, 28, 28, .3) !important
}

.\!bg-red-700\/40 {
    background-color: rgba(185, 28, 28, .4) !important
}

.\!bg-red-700\/5 {
    background-color: rgba(185, 28, 28, .05) !important
}

.\!bg-red-700\/50 {
    background-color: rgba(185, 28, 28, .5) !important
}

.\!bg-red-700\/60 {
    background-color: rgba(185, 28, 28, .6) !important
}

.\!bg-red-700\/70 {
    background-color: rgba(185, 28, 28, .7) !important
}

.\!bg-red-700\/75 {
    background-color: rgba(185, 28, 28, .75) !important
}

.\!bg-red-700\/80 {
    background-color: rgba(185, 28, 28, .8) !important
}

.\!bg-red-700\/90 {
    background-color: rgba(185, 28, 28, .9) !important
}

.\!bg-red-700\/95 {
    background-color: rgba(185, 28, 28, .95) !important
}

.\!bg-red-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(153 27 27/var(--tw-bg-opacity)) !important
}

.\!bg-red-800\/0 {
    background-color: rgba(153, 27, 27, 0) !important
}

.\!bg-red-800\/10 {
    background-color: rgba(153, 27, 27, .1) !important
}

.\!bg-red-800\/100 {
    background-color: #991b1b !important
}

.\!bg-red-800\/20 {
    background-color: rgba(153, 27, 27, .2) !important
}

.\!bg-red-800\/25 {
    background-color: rgba(153, 27, 27, .25) !important
}

.\!bg-red-800\/30 {
    background-color: rgba(153, 27, 27, .3) !important
}

.\!bg-red-800\/40 {
    background-color: rgba(153, 27, 27, .4) !important
}

.\!bg-red-800\/5 {
    background-color: rgba(153, 27, 27, .05) !important
}

.\!bg-red-800\/50 {
    background-color: rgba(153, 27, 27, .5) !important
}

.\!bg-red-800\/60 {
    background-color: rgba(153, 27, 27, .6) !important
}

.\!bg-red-800\/70 {
    background-color: rgba(153, 27, 27, .7) !important
}

.\!bg-red-800\/75 {
    background-color: rgba(153, 27, 27, .75) !important
}

.\!bg-red-800\/80 {
    background-color: rgba(153, 27, 27, .8) !important
}

.\!bg-red-800\/90 {
    background-color: rgba(153, 27, 27, .9) !important
}

.\!bg-red-800\/95 {
    background-color: rgba(153, 27, 27, .95) !important
}

.\!bg-slate-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(241 245 249/var(--tw-bg-opacity)) !important
}

.\!bg-slate-100\/0 {
    background-color: rgba(241, 245, 249, 0) !important
}

.\!bg-slate-100\/10 {
    background-color: rgba(241, 245, 249, .1) !important
}

.\!bg-slate-100\/100 {
    background-color: #f1f5f9 !important
}

.\!bg-slate-100\/20 {
    background-color: rgba(241, 245, 249, .2) !important
}

.\!bg-slate-100\/25 {
    background-color: rgba(241, 245, 249, .25) !important
}

.\!bg-slate-100\/30 {
    background-color: rgba(241, 245, 249, .3) !important
}

.\!bg-slate-100\/40 {
    background-color: rgba(241, 245, 249, .4) !important
}

.\!bg-slate-100\/5 {
    background-color: rgba(241, 245, 249, .05) !important
}

.\!bg-slate-100\/50 {
    background-color: rgba(241, 245, 249, .5) !important
}

.\!bg-slate-100\/60 {
    background-color: rgba(241, 245, 249, .6) !important
}

.\!bg-slate-100\/70 {
    background-color: rgba(241, 245, 249, .7) !important
}

.\!bg-slate-100\/75 {
    background-color: rgba(241, 245, 249, .75) !important
}

.\!bg-slate-100\/80 {
    background-color: rgba(241, 245, 249, .8) !important
}

.\!bg-slate-100\/90 {
    background-color: rgba(241, 245, 249, .9) !important
}

.\!bg-slate-100\/95 {
    background-color: rgba(241, 245, 249, .95) !important
}

.\!bg-slate-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(226 232 240/var(--tw-bg-opacity)) !important
}

.\!bg-slate-200\/0 {
    background-color: rgba(226, 232, 240, 0) !important
}

.\!bg-slate-200\/10 {
    background-color: rgba(226, 232, 240, .1) !important
}

.\!bg-slate-200\/100 {
    background-color: #e2e8f0 !important
}

.\!bg-slate-200\/20 {
    background-color: rgba(226, 232, 240, .2) !important
}

.\!bg-slate-200\/25 {
    background-color: rgba(226, 232, 240, .25) !important
}

.\!bg-slate-200\/30 {
    background-color: rgba(226, 232, 240, .3) !important
}

.\!bg-slate-200\/40 {
    background-color: rgba(226, 232, 240, .4) !important
}

.\!bg-slate-200\/5 {
    background-color: rgba(226, 232, 240, .05) !important
}

.\!bg-slate-200\/50 {
    background-color: rgba(226, 232, 240, .5) !important
}

.\!bg-slate-200\/60 {
    background-color: rgba(226, 232, 240, .6) !important
}

.\!bg-slate-200\/70 {
    background-color: rgba(226, 232, 240, .7) !important
}

.\!bg-slate-200\/75 {
    background-color: rgba(226, 232, 240, .75) !important
}

.\!bg-slate-200\/80 {
    background-color: rgba(226, 232, 240, .8) !important
}

.\!bg-slate-200\/90 {
    background-color: rgba(226, 232, 240, .9) !important
}

.\!bg-slate-200\/95 {
    background-color: rgba(226, 232, 240, .95) !important
}

.\!bg-slate-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(203 213 225/var(--tw-bg-opacity)) !important
}

.\!bg-slate-300\/0 {
    background-color: rgba(203, 213, 225, 0) !important
}

.\!bg-slate-300\/10 {
    background-color: rgba(203, 213, 225, .1) !important
}

.\!bg-slate-300\/100 {
    background-color: #cbd5e1 !important
}

.\!bg-slate-300\/20 {
    background-color: rgba(203, 213, 225, .2) !important
}

.\!bg-slate-300\/25 {
    background-color: rgba(203, 213, 225, .25) !important
}

.\!bg-slate-300\/30 {
    background-color: rgba(203, 213, 225, .3) !important
}

.\!bg-slate-300\/40 {
    background-color: rgba(203, 213, 225, .4) !important
}

.\!bg-slate-300\/5 {
    background-color: rgba(203, 213, 225, .05) !important
}

.\!bg-slate-300\/50 {
    background-color: rgba(203, 213, 225, .5) !important
}

.\!bg-slate-300\/60 {
    background-color: rgba(203, 213, 225, .6) !important
}

.\!bg-slate-300\/70 {
    background-color: rgba(203, 213, 225, .7) !important
}

.\!bg-slate-300\/75 {
    background-color: rgba(203, 213, 225, .75) !important
}

.\!bg-slate-300\/80 {
    background-color: rgba(203, 213, 225, .8) !important
}

.\!bg-slate-300\/90 {
    background-color: rgba(203, 213, 225, .9) !important
}

.\!bg-slate-300\/95 {
    background-color: rgba(203, 213, 225, .95) !important
}

.\!bg-slate-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(148 163 184/var(--tw-bg-opacity)) !important
}

.\!bg-slate-400\/0 {
    background-color: rgba(148, 163, 184, 0) !important
}

.\!bg-slate-400\/10 {
    background-color: rgba(148, 163, 184, .1) !important
}

.\!bg-slate-400\/100 {
    background-color: #94a3b8 !important
}

.\!bg-slate-400\/20 {
    background-color: rgba(148, 163, 184, .2) !important
}

.\!bg-slate-400\/25 {
    background-color: rgba(148, 163, 184, .25) !important
}

.\!bg-slate-400\/30 {
    background-color: rgba(148, 163, 184, .3) !important
}

.\!bg-slate-400\/40 {
    background-color: rgba(148, 163, 184, .4) !important
}

.\!bg-slate-400\/5 {
    background-color: rgba(148, 163, 184, .05) !important
}

.\!bg-slate-400\/50 {
    background-color: rgba(148, 163, 184, .5) !important
}

.\!bg-slate-400\/60 {
    background-color: rgba(148, 163, 184, .6) !important
}

.\!bg-slate-400\/70 {
    background-color: rgba(148, 163, 184, .7) !important
}

.\!bg-slate-400\/75 {
    background-color: rgba(148, 163, 184, .75) !important
}

.\!bg-slate-400\/80 {
    background-color: rgba(148, 163, 184, .8) !important
}

.\!bg-slate-400\/90 {
    background-color: rgba(148, 163, 184, .9) !important
}

.\!bg-slate-400\/95 {
    background-color: rgba(148, 163, 184, .95) !important
}

.\!bg-slate-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(100 116 139/var(--tw-bg-opacity)) !important
}

.\!bg-slate-500\/0 {
    background-color: rgba(100, 116, 139, 0) !important
}

.\!bg-slate-500\/10 {
    background-color: rgba(100, 116, 139, .1) !important
}

.\!bg-slate-500\/100 {
    background-color: #64748b !important
}

.\!bg-slate-500\/20 {
    background-color: rgba(100, 116, 139, .2) !important
}

.\!bg-slate-500\/25 {
    background-color: rgba(100, 116, 139, .25) !important
}

.\!bg-slate-500\/30 {
    background-color: rgba(100, 116, 139, .3) !important
}

.\!bg-slate-500\/40 {
    background-color: rgba(100, 116, 139, .4) !important
}

.\!bg-slate-500\/5 {
    background-color: rgba(100, 116, 139, .05) !important
}

.\!bg-slate-500\/50 {
    background-color: rgba(100, 116, 139, .5) !important
}

.\!bg-slate-500\/60 {
    background-color: rgba(100, 116, 139, .6) !important
}

.\!bg-slate-500\/70 {
    background-color: rgba(100, 116, 139, .7) !important
}

.\!bg-slate-500\/75 {
    background-color: rgba(100, 116, 139, .75) !important
}

.\!bg-slate-500\/80 {
    background-color: rgba(100, 116, 139, .8) !important
}

.\!bg-slate-500\/90 {
    background-color: rgba(100, 116, 139, .9) !important
}

.\!bg-slate-500\/95 {
    background-color: rgba(100, 116, 139, .95) !important
}

.\!bg-slate-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(71 85 105/var(--tw-bg-opacity)) !important
}

.\!bg-slate-600\/0 {
    background-color: rgba(71, 85, 105, 0) !important
}

.\!bg-slate-600\/10 {
    background-color: rgba(71, 85, 105, .1) !important
}

.\!bg-slate-600\/100 {
    background-color: #475569 !important
}

.\!bg-slate-600\/20 {
    background-color: rgba(71, 85, 105, .2) !important
}

.\!bg-slate-600\/25 {
    background-color: rgba(71, 85, 105, .25) !important
}

.\!bg-slate-600\/30 {
    background-color: rgba(71, 85, 105, .3) !important
}

.\!bg-slate-600\/40 {
    background-color: rgba(71, 85, 105, .4) !important
}

.\!bg-slate-600\/5 {
    background-color: rgba(71, 85, 105, .05) !important
}

.\!bg-slate-600\/50 {
    background-color: rgba(71, 85, 105, .5) !important
}

.\!bg-slate-600\/60 {
    background-color: rgba(71, 85, 105, .6) !important
}

.\!bg-slate-600\/70 {
    background-color: rgba(71, 85, 105, .7) !important
}

.\!bg-slate-600\/75 {
    background-color: rgba(71, 85, 105, .75) !important
}

.\!bg-slate-600\/80 {
    background-color: rgba(71, 85, 105, .8) !important
}

.\!bg-slate-600\/90 {
    background-color: rgba(71, 85, 105, .9) !important
}

.\!bg-slate-600\/95 {
    background-color: rgba(71, 85, 105, .95) !important
}

.\!bg-slate-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(51 65 85/var(--tw-bg-opacity)) !important
}

.\!bg-slate-700\/0 {
    background-color: rgba(51, 65, 85, 0) !important
}

.\!bg-slate-700\/10 {
    background-color: rgba(51, 65, 85, .1) !important
}

.\!bg-slate-700\/100 {
    background-color: #334155 !important
}

.\!bg-slate-700\/20 {
    background-color: rgba(51, 65, 85, .2) !important
}

.\!bg-slate-700\/25 {
    background-color: rgba(51, 65, 85, .25) !important
}

.\!bg-slate-700\/30 {
    background-color: rgba(51, 65, 85, .3) !important
}

.\!bg-slate-700\/40 {
    background-color: rgba(51, 65, 85, .4) !important
}

.\!bg-slate-700\/5 {
    background-color: rgba(51, 65, 85, .05) !important
}

.\!bg-slate-700\/50 {
    background-color: rgba(51, 65, 85, .5) !important
}

.\!bg-slate-700\/60 {
    background-color: rgba(51, 65, 85, .6) !important
}

.\!bg-slate-700\/70 {
    background-color: rgba(51, 65, 85, .7) !important
}

.\!bg-slate-700\/75 {
    background-color: rgba(51, 65, 85, .75) !important
}

.\!bg-slate-700\/80 {
    background-color: rgba(51, 65, 85, .8) !important
}

.\!bg-slate-700\/90 {
    background-color: rgba(51, 65, 85, .9) !important
}

.\!bg-slate-700\/95 {
    background-color: rgba(51, 65, 85, .95) !important
}

.\!bg-slate-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(30 41 59/var(--tw-bg-opacity)) !important
}

.\!bg-slate-800\/0 {
    background-color: rgba(30, 41, 59, 0) !important
}

.\!bg-slate-800\/10 {
    background-color: rgba(30, 41, 59, .1) !important
}

.\!bg-slate-800\/100 {
    background-color: #1e293b !important
}

.\!bg-slate-800\/20 {
    background-color: rgba(30, 41, 59, .2) !important
}

.\!bg-slate-800\/25 {
    background-color: rgba(30, 41, 59, .25) !important
}

.\!bg-slate-800\/30 {
    background-color: rgba(30, 41, 59, .3) !important
}

.\!bg-slate-800\/40 {
    background-color: rgba(30, 41, 59, .4) !important
}

.\!bg-slate-800\/5 {
    background-color: rgba(30, 41, 59, .05) !important
}

.\!bg-slate-800\/50 {
    background-color: rgba(30, 41, 59, .5) !important
}

.\!bg-slate-800\/60 {
    background-color: rgba(30, 41, 59, .6) !important
}

.\!bg-slate-800\/70 {
    background-color: rgba(30, 41, 59, .7) !important
}

.\!bg-slate-800\/75 {
    background-color: rgba(30, 41, 59, .75) !important
}

.\!bg-slate-800\/80 {
    background-color: rgba(30, 41, 59, .8) !important
}

.\!bg-slate-800\/90 {
    background-color: rgba(30, 41, 59, .9) !important
}

.\!bg-slate-800\/95 {
    background-color: rgba(30, 41, 59, .95) !important
}

.\!bg-violet-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(237 233 254/var(--tw-bg-opacity)) !important
}

.\!bg-violet-100\/0 {
    background-color: rgba(237, 233, 254, 0) !important
}

.\!bg-violet-100\/10 {
    background-color: rgba(237, 233, 254, .1) !important
}

.\!bg-violet-100\/100 {
    background-color: #ede9fe !important
}

.\!bg-violet-100\/20 {
    background-color: rgba(237, 233, 254, .2) !important
}

.\!bg-violet-100\/25 {
    background-color: rgba(237, 233, 254, .25) !important
}

.\!bg-violet-100\/30 {
    background-color: rgba(237, 233, 254, .3) !important
}

.\!bg-violet-100\/40 {
    background-color: rgba(237, 233, 254, .4) !important
}

.\!bg-violet-100\/5 {
    background-color: rgba(237, 233, 254, .05) !important
}

.\!bg-violet-100\/50 {
    background-color: rgba(237, 233, 254, .5) !important
}

.\!bg-violet-100\/60 {
    background-color: rgba(237, 233, 254, .6) !important
}

.\!bg-violet-100\/70 {
    background-color: rgba(237, 233, 254, .7) !important
}

.\!bg-violet-100\/75 {
    background-color: rgba(237, 233, 254, .75) !important
}

.\!bg-violet-100\/80 {
    background-color: rgba(237, 233, 254, .8) !important
}

.\!bg-violet-100\/90 {
    background-color: rgba(237, 233, 254, .9) !important
}

.\!bg-violet-100\/95 {
    background-color: rgba(237, 233, 254, .95) !important
}

.\!bg-violet-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(221 214 254/var(--tw-bg-opacity)) !important
}

.\!bg-violet-200\/0 {
    background-color: rgba(221, 214, 254, 0) !important
}

.\!bg-violet-200\/10 {
    background-color: rgba(221, 214, 254, .1) !important
}

.\!bg-violet-200\/100 {
    background-color: #ddd6fe !important
}

.\!bg-violet-200\/20 {
    background-color: rgba(221, 214, 254, .2) !important
}

.\!bg-violet-200\/25 {
    background-color: rgba(221, 214, 254, .25) !important
}

.\!bg-violet-200\/30 {
    background-color: rgba(221, 214, 254, .3) !important
}

.\!bg-violet-200\/40 {
    background-color: rgba(221, 214, 254, .4) !important
}

.\!bg-violet-200\/5 {
    background-color: rgba(221, 214, 254, .05) !important
}

.\!bg-violet-200\/50 {
    background-color: rgba(221, 214, 254, .5) !important
}

.\!bg-violet-200\/60 {
    background-color: rgba(221, 214, 254, .6) !important
}

.\!bg-violet-200\/70 {
    background-color: rgba(221, 214, 254, .7) !important
}

.\!bg-violet-200\/75 {
    background-color: rgba(221, 214, 254, .75) !important
}

.\!bg-violet-200\/80 {
    background-color: rgba(221, 214, 254, .8) !important
}

.\!bg-violet-200\/90 {
    background-color: rgba(221, 214, 254, .9) !important
}

.\!bg-violet-200\/95 {
    background-color: rgba(221, 214, 254, .95) !important
}

.\!bg-violet-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(196 181 253/var(--tw-bg-opacity)) !important
}

.\!bg-violet-300\/0 {
    background-color: rgba(196, 181, 253, 0) !important
}

.\!bg-violet-300\/10 {
    background-color: rgba(196, 181, 253, .1) !important
}

.\!bg-violet-300\/100 {
    background-color: #c4b5fd !important
}

.\!bg-violet-300\/20 {
    background-color: rgba(196, 181, 253, .2) !important
}

.\!bg-violet-300\/25 {
    background-color: rgba(196, 181, 253, .25) !important
}

.\!bg-violet-300\/30 {
    background-color: rgba(196, 181, 253, .3) !important
}

.\!bg-violet-300\/40 {
    background-color: rgba(196, 181, 253, .4) !important
}

.\!bg-violet-300\/5 {
    background-color: rgba(196, 181, 253, .05) !important
}

.\!bg-violet-300\/50 {
    background-color: rgba(196, 181, 253, .5) !important
}

.\!bg-violet-300\/60 {
    background-color: rgba(196, 181, 253, .6) !important
}

.\!bg-violet-300\/70 {
    background-color: rgba(196, 181, 253, .7) !important
}

.\!bg-violet-300\/75 {
    background-color: rgba(196, 181, 253, .75) !important
}

.\!bg-violet-300\/80 {
    background-color: rgba(196, 181, 253, .8) !important
}

.\!bg-violet-300\/90 {
    background-color: rgba(196, 181, 253, .9) !important
}

.\!bg-violet-300\/95 {
    background-color: rgba(196, 181, 253, .95) !important
}

.\!bg-violet-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(167 139 250/var(--tw-bg-opacity)) !important
}

.\!bg-violet-400\/0 {
    background-color: rgba(167, 139, 250, 0) !important
}

.\!bg-violet-400\/10 {
    background-color: rgba(167, 139, 250, .1) !important
}

.\!bg-violet-400\/100 {
    background-color: #a78bfa !important
}

.\!bg-violet-400\/20 {
    background-color: rgba(167, 139, 250, .2) !important
}

.\!bg-violet-400\/25 {
    background-color: rgba(167, 139, 250, .25) !important
}

.\!bg-violet-400\/30 {
    background-color: rgba(167, 139, 250, .3) !important
}

.\!bg-violet-400\/40 {
    background-color: rgba(167, 139, 250, .4) !important
}

.\!bg-violet-400\/5 {
    background-color: rgba(167, 139, 250, .05) !important
}

.\!bg-violet-400\/50 {
    background-color: rgba(167, 139, 250, .5) !important
}

.\!bg-violet-400\/60 {
    background-color: rgba(167, 139, 250, .6) !important
}

.\!bg-violet-400\/70 {
    background-color: rgba(167, 139, 250, .7) !important
}

.\!bg-violet-400\/75 {
    background-color: rgba(167, 139, 250, .75) !important
}

.\!bg-violet-400\/80 {
    background-color: rgba(167, 139, 250, .8) !important
}

.\!bg-violet-400\/90 {
    background-color: rgba(167, 139, 250, .9) !important
}

.\!bg-violet-400\/95 {
    background-color: rgba(167, 139, 250, .95) !important
}

.\!bg-violet-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(139 92 246/var(--tw-bg-opacity)) !important
}

.\!bg-violet-500\/0 {
    background-color: rgba(139, 92, 246, 0) !important
}

.\!bg-violet-500\/10 {
    background-color: rgba(139, 92, 246, .1) !important
}

.\!bg-violet-500\/100 {
    background-color: #8b5cf6 !important
}

.\!bg-violet-500\/20 {
    background-color: rgba(139, 92, 246, .2) !important
}

.\!bg-violet-500\/25 {
    background-color: rgba(139, 92, 246, .25) !important
}

.\!bg-violet-500\/30 {
    background-color: rgba(139, 92, 246, .3) !important
}

.\!bg-violet-500\/40 {
    background-color: rgba(139, 92, 246, .4) !important
}

.\!bg-violet-500\/5 {
    background-color: rgba(139, 92, 246, .05) !important
}

.\!bg-violet-500\/50 {
    background-color: rgba(139, 92, 246, .5) !important
}

.\!bg-violet-500\/60 {
    background-color: rgba(139, 92, 246, .6) !important
}

.\!bg-violet-500\/70 {
    background-color: rgba(139, 92, 246, .7) !important
}

.\!bg-violet-500\/75 {
    background-color: rgba(139, 92, 246, .75) !important
}

.\!bg-violet-500\/80 {
    background-color: rgba(139, 92, 246, .8) !important
}

.\!bg-violet-500\/90 {
    background-color: rgba(139, 92, 246, .9) !important
}

.\!bg-violet-500\/95 {
    background-color: rgba(139, 92, 246, .95) !important
}

.\!bg-violet-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(124 58 237/var(--tw-bg-opacity)) !important
}

.\!bg-violet-600\/0 {
    background-color: rgba(124, 58, 237, 0) !important
}

.\!bg-violet-600\/10 {
    background-color: rgba(124, 58, 237, .1) !important
}

.\!bg-violet-600\/100 {
    background-color: #7c3aed !important
}

.\!bg-violet-600\/20 {
    background-color: rgba(124, 58, 237, .2) !important
}

.\!bg-violet-600\/25 {
    background-color: rgba(124, 58, 237, .25) !important
}

.\!bg-violet-600\/30 {
    background-color: rgba(124, 58, 237, .3) !important
}

.\!bg-violet-600\/40 {
    background-color: rgba(124, 58, 237, .4) !important
}

.\!bg-violet-600\/5 {
    background-color: rgba(124, 58, 237, .05) !important
}

.\!bg-violet-600\/50 {
    background-color: rgba(124, 58, 237, .5) !important
}

.\!bg-violet-600\/60 {
    background-color: rgba(124, 58, 237, .6) !important
}

.\!bg-violet-600\/70 {
    background-color: rgba(124, 58, 237, .7) !important
}

.\!bg-violet-600\/75 {
    background-color: rgba(124, 58, 237, .75) !important
}

.\!bg-violet-600\/80 {
    background-color: rgba(124, 58, 237, .8) !important
}

.\!bg-violet-600\/90 {
    background-color: rgba(124, 58, 237, .9) !important
}

.\!bg-violet-600\/95 {
    background-color: rgba(124, 58, 237, .95) !important
}

.\!bg-violet-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(109 40 217/var(--tw-bg-opacity)) !important
}

.\!bg-violet-700\/0 {
    background-color: rgba(109, 40, 217, 0) !important
}

.\!bg-violet-700\/10 {
    background-color: rgba(109, 40, 217, .1) !important
}

.\!bg-violet-700\/100 {
    background-color: #6d28d9 !important
}

.\!bg-violet-700\/20 {
    background-color: rgba(109, 40, 217, .2) !important
}

.\!bg-violet-700\/25 {
    background-color: rgba(109, 40, 217, .25) !important
}

.\!bg-violet-700\/30 {
    background-color: rgba(109, 40, 217, .3) !important
}

.\!bg-violet-700\/40 {
    background-color: rgba(109, 40, 217, .4) !important
}

.\!bg-violet-700\/5 {
    background-color: rgba(109, 40, 217, .05) !important
}

.\!bg-violet-700\/50 {
    background-color: rgba(109, 40, 217, .5) !important
}

.\!bg-violet-700\/60 {
    background-color: rgba(109, 40, 217, .6) !important
}

.\!bg-violet-700\/70 {
    background-color: rgba(109, 40, 217, .7) !important
}

.\!bg-violet-700\/75 {
    background-color: rgba(109, 40, 217, .75) !important
}

.\!bg-violet-700\/80 {
    background-color: rgba(109, 40, 217, .8) !important
}

.\!bg-violet-700\/90 {
    background-color: rgba(109, 40, 217, .9) !important
}

.\!bg-violet-700\/95 {
    background-color: rgba(109, 40, 217, .95) !important
}

.\!bg-violet-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(91 33 182/var(--tw-bg-opacity)) !important
}

.\!bg-violet-800\/0 {
    background-color: rgba(91, 33, 182, 0) !important
}

.\!bg-violet-800\/10 {
    background-color: rgba(91, 33, 182, .1) !important
}

.\!bg-violet-800\/100 {
    background-color: #5b21b6 !important
}

.\!bg-violet-800\/20 {
    background-color: rgba(91, 33, 182, .2) !important
}

.\!bg-violet-800\/25 {
    background-color: rgba(91, 33, 182, .25) !important
}

.\!bg-violet-800\/30 {
    background-color: rgba(91, 33, 182, .3) !important
}

.\!bg-violet-800\/40 {
    background-color: rgba(91, 33, 182, .4) !important
}

.\!bg-violet-800\/5 {
    background-color: rgba(91, 33, 182, .05) !important
}

.\!bg-violet-800\/50 {
    background-color: rgba(91, 33, 182, .5) !important
}

.\!bg-violet-800\/60 {
    background-color: rgba(91, 33, 182, .6) !important
}

.\!bg-violet-800\/70 {
    background-color: rgba(91, 33, 182, .7) !important
}

.\!bg-violet-800\/75 {
    background-color: rgba(91, 33, 182, .75) !important
}

.\!bg-violet-800\/80 {
    background-color: rgba(91, 33, 182, .8) !important
}

.\!bg-violet-800\/90 {
    background-color: rgba(91, 33, 182, .9) !important
}

.\!bg-violet-800\/95 {
    background-color: rgba(91, 33, 182, .95) !important
}

.\!bg-yellow-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(254 249 195/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-100\/0 {
    background-color: hsla(55, 97%, 88%, 0) !important
}

.\!bg-yellow-100\/10 {
    background-color: hsla(55, 97%, 88%, .1) !important
}

.\!bg-yellow-100\/100 {
    background-color: #fef9c3 !important
}

.\!bg-yellow-100\/20 {
    background-color: hsla(55, 97%, 88%, .2) !important
}

.\!bg-yellow-100\/25 {
    background-color: hsla(55, 97%, 88%, .25) !important
}

.\!bg-yellow-100\/30 {
    background-color: hsla(55, 97%, 88%, .3) !important
}

.\!bg-yellow-100\/40 {
    background-color: hsla(55, 97%, 88%, .4) !important
}

.\!bg-yellow-100\/5 {
    background-color: hsla(55, 97%, 88%, .05) !important
}

.\!bg-yellow-100\/50 {
    background-color: hsla(55, 97%, 88%, .5) !important
}

.\!bg-yellow-100\/60 {
    background-color: hsla(55, 97%, 88%, .6) !important
}

.\!bg-yellow-100\/70 {
    background-color: hsla(55, 97%, 88%, .7) !important
}

.\!bg-yellow-100\/75 {
    background-color: hsla(55, 97%, 88%, .75) !important
}

.\!bg-yellow-100\/80 {
    background-color: hsla(55, 97%, 88%, .8) !important
}

.\!bg-yellow-100\/90 {
    background-color: hsla(55, 97%, 88%, .9) !important
}

.\!bg-yellow-100\/95 {
    background-color: hsla(55, 97%, 88%, .95) !important
}

.\!bg-yellow-200 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(254 240 138/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-200\/0 {
    background-color: hsla(53, 98%, 77%, 0) !important
}

.\!bg-yellow-200\/10 {
    background-color: hsla(53, 98%, 77%, .1) !important
}

.\!bg-yellow-200\/100 {
    background-color: #fef08a !important
}

.\!bg-yellow-200\/20 {
    background-color: hsla(53, 98%, 77%, .2) !important
}

.\!bg-yellow-200\/25 {
    background-color: hsla(53, 98%, 77%, .25) !important
}

.\!bg-yellow-200\/30 {
    background-color: hsla(53, 98%, 77%, .3) !important
}

.\!bg-yellow-200\/40 {
    background-color: hsla(53, 98%, 77%, .4) !important
}

.\!bg-yellow-200\/5 {
    background-color: hsla(53, 98%, 77%, .05) !important
}

.\!bg-yellow-200\/50 {
    background-color: hsla(53, 98%, 77%, .5) !important
}

.\!bg-yellow-200\/60 {
    background-color: hsla(53, 98%, 77%, .6) !important
}

.\!bg-yellow-200\/70 {
    background-color: hsla(53, 98%, 77%, .7) !important
}

.\!bg-yellow-200\/75 {
    background-color: hsla(53, 98%, 77%, .75) !important
}

.\!bg-yellow-200\/80 {
    background-color: hsla(53, 98%, 77%, .8) !important
}

.\!bg-yellow-200\/90 {
    background-color: hsla(53, 98%, 77%, .9) !important
}

.\!bg-yellow-200\/95 {
    background-color: hsla(53, 98%, 77%, .95) !important
}

.\!bg-yellow-300 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(253 224 71/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-300\/0 {
    background-color: rgba(253, 224, 71, 0) !important
}

.\!bg-yellow-300\/10 {
    background-color: rgba(253, 224, 71, .1) !important
}

.\!bg-yellow-300\/100 {
    background-color: #fde047 !important
}

.\!bg-yellow-300\/20 {
    background-color: rgba(253, 224, 71, .2) !important
}

.\!bg-yellow-300\/25 {
    background-color: rgba(253, 224, 71, .25) !important
}

.\!bg-yellow-300\/30 {
    background-color: rgba(253, 224, 71, .3) !important
}

.\!bg-yellow-300\/40 {
    background-color: rgba(253, 224, 71, .4) !important
}

.\!bg-yellow-300\/5 {
    background-color: rgba(253, 224, 71, .05) !important
}

.\!bg-yellow-300\/50 {
    background-color: rgba(253, 224, 71, .5) !important
}

.\!bg-yellow-300\/60 {
    background-color: rgba(253, 224, 71, .6) !important
}

.\!bg-yellow-300\/70 {
    background-color: rgba(253, 224, 71, .7) !important
}

.\!bg-yellow-300\/75 {
    background-color: rgba(253, 224, 71, .75) !important
}

.\!bg-yellow-300\/80 {
    background-color: rgba(253, 224, 71, .8) !important
}

.\!bg-yellow-300\/90 {
    background-color: rgba(253, 224, 71, .9) !important
}

.\!bg-yellow-300\/95 {
    background-color: rgba(253, 224, 71, .95) !important
}

.\!bg-yellow-400 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(250 204 21/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-400\/0 {
    background-color: rgba(250, 204, 21, 0) !important
}

.\!bg-yellow-400\/10 {
    background-color: rgba(250, 204, 21, .1) !important
}

.\!bg-yellow-400\/100 {
    background-color: #facc15 !important
}

.\!bg-yellow-400\/20 {
    background-color: rgba(250, 204, 21, .2) !important
}

.\!bg-yellow-400\/25 {
    background-color: rgba(250, 204, 21, .25) !important
}

.\!bg-yellow-400\/30 {
    background-color: rgba(250, 204, 21, .3) !important
}

.\!bg-yellow-400\/40 {
    background-color: rgba(250, 204, 21, .4) !important
}

.\!bg-yellow-400\/5 {
    background-color: rgba(250, 204, 21, .05) !important
}

.\!bg-yellow-400\/50 {
    background-color: rgba(250, 204, 21, .5) !important
}

.\!bg-yellow-400\/60 {
    background-color: rgba(250, 204, 21, .6) !important
}

.\!bg-yellow-400\/70 {
    background-color: rgba(250, 204, 21, .7) !important
}

.\!bg-yellow-400\/75 {
    background-color: rgba(250, 204, 21, .75) !important
}

.\!bg-yellow-400\/80 {
    background-color: rgba(250, 204, 21, .8) !important
}

.\!bg-yellow-400\/90 {
    background-color: rgba(250, 204, 21, .9) !important
}

.\!bg-yellow-400\/95 {
    background-color: rgba(250, 204, 21, .95) !important
}

.\!bg-yellow-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(234 179 8/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-500\/0 {
    background-color: rgba(234, 179, 8, 0) !important
}

.\!bg-yellow-500\/10 {
    background-color: rgba(234, 179, 8, .1) !important
}

.\!bg-yellow-500\/100 {
    background-color: #eab308 !important
}

.\!bg-yellow-500\/20 {
    background-color: rgba(234, 179, 8, .2) !important
}

.\!bg-yellow-500\/25 {
    background-color: rgba(234, 179, 8, .25) !important
}

.\!bg-yellow-500\/30 {
    background-color: rgba(234, 179, 8, .3) !important
}

.\!bg-yellow-500\/40 {
    background-color: rgba(234, 179, 8, .4) !important
}

.\!bg-yellow-500\/5 {
    background-color: rgba(234, 179, 8, .05) !important
}

.\!bg-yellow-500\/50 {
    background-color: rgba(234, 179, 8, .5) !important
}

.\!bg-yellow-500\/60 {
    background-color: rgba(234, 179, 8, .6) !important
}

.\!bg-yellow-500\/70 {
    background-color: rgba(234, 179, 8, .7) !important
}

.\!bg-yellow-500\/75 {
    background-color: rgba(234, 179, 8, .75) !important
}

.\!bg-yellow-500\/80 {
    background-color: rgba(234, 179, 8, .8) !important
}

.\!bg-yellow-500\/90 {
    background-color: rgba(234, 179, 8, .9) !important
}

.\!bg-yellow-500\/95 {
    background-color: rgba(234, 179, 8, .95) !important
}

.\!bg-yellow-600 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(202 138 4/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-600\/0 {
    background-color: rgba(202, 138, 4, 0) !important
}

.\!bg-yellow-600\/10 {
    background-color: rgba(202, 138, 4, .1) !important
}

.\!bg-yellow-600\/100 {
    background-color: #ca8a04 !important
}

.\!bg-yellow-600\/20 {
    background-color: rgba(202, 138, 4, .2) !important
}

.\!bg-yellow-600\/25 {
    background-color: rgba(202, 138, 4, .25) !important
}

.\!bg-yellow-600\/30 {
    background-color: rgba(202, 138, 4, .3) !important
}

.\!bg-yellow-600\/40 {
    background-color: rgba(202, 138, 4, .4) !important
}

.\!bg-yellow-600\/5 {
    background-color: rgba(202, 138, 4, .05) !important
}

.\!bg-yellow-600\/50 {
    background-color: rgba(202, 138, 4, .5) !important
}

.\!bg-yellow-600\/60 {
    background-color: rgba(202, 138, 4, .6) !important
}

.\!bg-yellow-600\/70 {
    background-color: rgba(202, 138, 4, .7) !important
}

.\!bg-yellow-600\/75 {
    background-color: rgba(202, 138, 4, .75) !important
}

.\!bg-yellow-600\/80 {
    background-color: rgba(202, 138, 4, .8) !important
}

.\!bg-yellow-600\/90 {
    background-color: rgba(202, 138, 4, .9) !important
}

.\!bg-yellow-600\/95 {
    background-color: rgba(202, 138, 4, .95) !important
}

.\!bg-yellow-700 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(161 98 7/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-700\/0 {
    background-color: rgba(161, 98, 7, 0) !important
}

.\!bg-yellow-700\/10 {
    background-color: rgba(161, 98, 7, .1) !important
}

.\!bg-yellow-700\/100 {
    background-color: #a16207 !important
}

.\!bg-yellow-700\/20 {
    background-color: rgba(161, 98, 7, .2) !important
}

.\!bg-yellow-700\/25 {
    background-color: rgba(161, 98, 7, .25) !important
}

.\!bg-yellow-700\/30 {
    background-color: rgba(161, 98, 7, .3) !important
}

.\!bg-yellow-700\/40 {
    background-color: rgba(161, 98, 7, .4) !important
}

.\!bg-yellow-700\/5 {
    background-color: rgba(161, 98, 7, .05) !important
}

.\!bg-yellow-700\/50 {
    background-color: rgba(161, 98, 7, .5) !important
}

.\!bg-yellow-700\/60 {
    background-color: rgba(161, 98, 7, .6) !important
}

.\!bg-yellow-700\/70 {
    background-color: rgba(161, 98, 7, .7) !important
}

.\!bg-yellow-700\/75 {
    background-color: rgba(161, 98, 7, .75) !important
}

.\!bg-yellow-700\/80 {
    background-color: rgba(161, 98, 7, .8) !important
}

.\!bg-yellow-700\/90 {
    background-color: rgba(161, 98, 7, .9) !important
}

.\!bg-yellow-700\/95 {
    background-color: rgba(161, 98, 7, .95) !important
}

.\!bg-yellow-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(133 77 14/var(--tw-bg-opacity)) !important
}

.\!bg-yellow-800\/0 {
    background-color: rgba(133, 77, 14, 0) !important
}

.\!bg-yellow-800\/10 {
    background-color: rgba(133, 77, 14, .1) !important
}

.\!bg-yellow-800\/100 {
    background-color: #854d0e !important
}

.\!bg-yellow-800\/20 {
    background-color: rgba(133, 77, 14, .2) !important
}

.\!bg-yellow-800\/25 {
    background-color: rgba(133, 77, 14, .25) !important
}

.\!bg-yellow-800\/30 {
    background-color: rgba(133, 77, 14, .3) !important
}

.\!bg-yellow-800\/40 {
    background-color: rgba(133, 77, 14, .4) !important
}

.\!bg-yellow-800\/5 {
    background-color: rgba(133, 77, 14, .05) !important
}

.\!bg-yellow-800\/50 {
    background-color: rgba(133, 77, 14, .5) !important
}

.\!bg-yellow-800\/60 {
    background-color: rgba(133, 77, 14, .6) !important
}

.\!bg-yellow-800\/70 {
    background-color: rgba(133, 77, 14, .7) !important
}

.\!bg-yellow-800\/75 {
    background-color: rgba(133, 77, 14, .75) !important
}

.\!bg-yellow-800\/80 {
    background-color: rgba(133, 77, 14, .8) !important
}

.\!bg-yellow-800\/90 {
    background-color: rgba(133, 77, 14, .9) !important
}

.\!bg-yellow-800\/95 {
    background-color: rgba(133, 77, 14, .95) !important
}

.bg-\[\#1a1a1a\] {
    --tw-bg-opacity: 1;
    background-color: rgb(26 26 26/var(--tw-bg-opacity))
}

.bg-\[\#1d9bf0\] {
    --tw-bg-opacity: 1;
    background-color: rgb(29 155 240/var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity))
}

.bg-black\/40 {
    background-color: rgba(0, 0, 0, .4)
}

.bg-black\/50 {
    background-color: rgba(0, 0, 0, .5)
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, .6)
}

.bg-black\/70 {
    background-color: rgba(0, 0, 0, .7)
}

.bg-black\/80 {
    background-color: rgba(0, 0, 0, .8)
}

.bg-black\/90 {
    background-color: rgba(0, 0, 0, .9)
}

.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254/var(--tw-bg-opacity))
}

.bg-blue-100\/0 {
    background-color: rgba(219, 234, 254, 0)
}

.bg-blue-100\/10 {
    background-color: rgba(219, 234, 254, .1)
}

.bg-blue-100\/100 {
    background-color: #dbeafe
}

.bg-blue-100\/20 {
    background-color: rgba(219, 234, 254, .2)
}

.bg-blue-100\/25 {
    background-color: rgba(219, 234, 254, .25)
}

.bg-blue-100\/30 {
    background-color: rgba(219, 234, 254, .3)
}

.bg-blue-100\/40 {
    background-color: rgba(219, 234, 254, .4)
}

.bg-blue-100\/5 {
    background-color: rgba(219, 234, 254, .05)
}

.bg-blue-100\/50 {
    background-color: rgba(219, 234, 254, .5)
}

.bg-blue-100\/60 {
    background-color: rgba(219, 234, 254, .6)
}

.bg-blue-100\/70 {
    background-color: rgba(219, 234, 254, .7)
}

.bg-blue-100\/75 {
    background-color: rgba(219, 234, 254, .75)
}

.bg-blue-100\/80 {
    background-color: rgba(219, 234, 254, .8)
}

.bg-blue-100\/90 {
    background-color: rgba(219, 234, 254, .9)
}

.bg-blue-100\/95 {
    background-color: rgba(219, 234, 254, .95)
}

.bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254/var(--tw-bg-opacity))
}

.bg-blue-200\/0 {
    background-color: rgba(191, 219, 254, 0)
}

.bg-blue-200\/10 {
    background-color: rgba(191, 219, 254, .1)
}

.bg-blue-200\/100 {
    background-color: #bfdbfe
}

.bg-blue-200\/20 {
    background-color: rgba(191, 219, 254, .2)
}

.bg-blue-200\/25 {
    background-color: rgba(191, 219, 254, .25)
}

.bg-blue-200\/30 {
    background-color: rgba(191, 219, 254, .3)
}

.bg-blue-200\/40 {
    background-color: rgba(191, 219, 254, .4)
}

.bg-blue-200\/5 {
    background-color: rgba(191, 219, 254, .05)
}

.bg-blue-200\/50 {
    background-color: rgba(191, 219, 254, .5)
}

.bg-blue-200\/60 {
    background-color: rgba(191, 219, 254, .6)
}

.bg-blue-200\/70 {
    background-color: rgba(191, 219, 254, .7)
}

.bg-blue-200\/75 {
    background-color: rgba(191, 219, 254, .75)
}

.bg-blue-200\/80 {
    background-color: rgba(191, 219, 254, .8)
}

.bg-blue-200\/90 {
    background-color: rgba(191, 219, 254, .9)
}

.bg-blue-200\/95 {
    background-color: rgba(191, 219, 254, .95)
}

.bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253/var(--tw-bg-opacity))
}

.bg-blue-300\/0 {
    background-color: rgba(147, 197, 253, 0)
}

.bg-blue-300\/10 {
    background-color: rgba(147, 197, 253, .1)
}

.bg-blue-300\/100 {
    background-color: #93c5fd
}

.bg-blue-300\/20 {
    background-color: rgba(147, 197, 253, .2)
}

.bg-blue-300\/25 {
    background-color: rgba(147, 197, 253, .25)
}

.bg-blue-300\/30 {
    background-color: rgba(147, 197, 253, .3)
}

.bg-blue-300\/40 {
    background-color: rgba(147, 197, 253, .4)
}

.bg-blue-300\/5 {
    background-color: rgba(147, 197, 253, .05)
}

.bg-blue-300\/50 {
    background-color: rgba(147, 197, 253, .5)
}

.bg-blue-300\/60 {
    background-color: rgba(147, 197, 253, .6)
}

.bg-blue-300\/70 {
    background-color: rgba(147, 197, 253, .7)
}

.bg-blue-300\/75 {
    background-color: rgba(147, 197, 253, .75)
}

.bg-blue-300\/80 {
    background-color: rgba(147, 197, 253, .8)
}

.bg-blue-300\/90 {
    background-color: rgba(147, 197, 253, .9)
}

.bg-blue-300\/95 {
    background-color: rgba(147, 197, 253, .95)
}

.bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 165 250/var(--tw-bg-opacity))
}

.bg-blue-400\/0 {
    background-color: rgba(96, 165, 250, 0)
}

.bg-blue-400\/10 {
    background-color: rgba(96, 165, 250, .1)
}

.bg-blue-400\/100 {
    background-color: #60a5fa
}

.bg-blue-400\/20 {
    background-color: rgba(96, 165, 250, .2)
}

.bg-blue-400\/25 {
    background-color: rgba(96, 165, 250, .25)
}

.bg-blue-400\/30 {
    background-color: rgba(96, 165, 250, .3)
}

.bg-blue-400\/40 {
    background-color: rgba(96, 165, 250, .4)
}

.bg-blue-400\/5 {
    background-color: rgba(96, 165, 250, .05)
}

.bg-blue-400\/50 {
    background-color: rgba(96, 165, 250, .5)
}

.bg-blue-400\/60 {
    background-color: rgba(96, 165, 250, .6)
}

.bg-blue-400\/70 {
    background-color: rgba(96, 165, 250, .7)
}

.bg-blue-400\/75 {
    background-color: rgba(96, 165, 250, .75)
}

.bg-blue-400\/80 {
    background-color: rgba(96, 165, 250, .8)
}

.bg-blue-400\/90 {
    background-color: rgba(96, 165, 250, .9)
}

.bg-blue-400\/95 {
    background-color: rgba(96, 165, 250, .95)
}

.bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246/var(--tw-bg-opacity))
}

.bg-blue-500\/0 {
    background-color: rgba(59, 130, 246, 0)
}

.bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, .1)
}

.bg-blue-500\/100 {
    background-color: #3b82f6
}

.bg-blue-500\/20 {
    background-color: rgba(59, 130, 246, .2)
}

.bg-blue-500\/25 {
    background-color: rgba(59, 130, 246, .25)
}

.bg-blue-500\/30 {
    background-color: rgba(59, 130, 246, .3)
}

.bg-blue-500\/40 {
    background-color: rgba(59, 130, 246, .4)
}

.bg-blue-500\/5 {
    background-color: rgba(59, 130, 246, .05)
}

.bg-blue-500\/50 {
    background-color: rgba(59, 130, 246, .5)
}

.bg-blue-500\/60 {
    background-color: rgba(59, 130, 246, .6)
}

.bg-blue-500\/70 {
    background-color: rgba(59, 130, 246, .7)
}

.bg-blue-500\/75 {
    background-color: rgba(59, 130, 246, .75)
}

.bg-blue-500\/80 {
    background-color: rgba(59, 130, 246, .8)
}

.bg-blue-500\/90 {
    background-color: rgba(59, 130, 246, .9)
}

.bg-blue-500\/95 {
    background-color: rgba(59, 130, 246, .95)
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235/var(--tw-bg-opacity))
}

.bg-blue-600\/0 {
    background-color: rgba(37, 99, 235, 0)
}

.bg-blue-600\/10 {
    background-color: rgba(37, 99, 235, .1)
}

.bg-blue-600\/100 {
    background-color: #2563eb
}

.bg-blue-600\/20 {
    background-color: rgba(37, 99, 235, .2)
}

.bg-blue-600\/25 {
    background-color: rgba(37, 99, 235, .25)
}

.bg-blue-600\/30 {
    background-color: rgba(37, 99, 235, .3)
}

.bg-blue-600\/40 {
    background-color: rgba(37, 99, 235, .4)
}

.bg-blue-600\/5 {
    background-color: rgba(37, 99, 235, .05)
}

.bg-blue-600\/50 {
    background-color: rgba(37, 99, 235, .5)
}

.bg-blue-600\/60 {
    background-color: rgba(37, 99, 235, .6)
}

.bg-blue-600\/70 {
    background-color: rgba(37, 99, 235, .7)
}

.bg-blue-600\/75 {
    background-color: rgba(37, 99, 235, .75)
}

.bg-blue-600\/80 {
    background-color: rgba(37, 99, 235, .8)
}

.bg-blue-600\/90 {
    background-color: rgba(37, 99, 235, .9)
}

.bg-blue-600\/95 {
    background-color: rgba(37, 99, 235, .95)
}

.bg-blue-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216/var(--tw-bg-opacity))
}

.bg-blue-700\/0 {
    background-color: rgba(29, 78, 216, 0)
}

.bg-blue-700\/10 {
    background-color: rgba(29, 78, 216, .1)
}

.bg-blue-700\/100 {
    background-color: #1d4ed8
}

.bg-blue-700\/20 {
    background-color: rgba(29, 78, 216, .2)
}

.bg-blue-700\/25 {
    background-color: rgba(29, 78, 216, .25)
}

.bg-blue-700\/30 {
    background-color: rgba(29, 78, 216, .3)
}

.bg-blue-700\/40 {
    background-color: rgba(29, 78, 216, .4)
}

.bg-blue-700\/5 {
    background-color: rgba(29, 78, 216, .05)
}

.bg-blue-700\/50 {
    background-color: rgba(29, 78, 216, .5)
}

.bg-blue-700\/60 {
    background-color: rgba(29, 78, 216, .6)
}

.bg-blue-700\/70 {
    background-color: rgba(29, 78, 216, .7)
}

.bg-blue-700\/75 {
    background-color: rgba(29, 78, 216, .75)
}

.bg-blue-700\/80 {
    background-color: rgba(29, 78, 216, .8)
}

.bg-blue-700\/90 {
    background-color: rgba(29, 78, 216, .9)
}

.bg-blue-700\/95 {
    background-color: rgba(29, 78, 216, .95)
}

.bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175/var(--tw-bg-opacity))
}

.bg-blue-800\/0 {
    background-color: rgba(30, 64, 175, 0)
}

.bg-blue-800\/10 {
    background-color: rgba(30, 64, 175, .1)
}

.bg-blue-800\/100 {
    background-color: #1e40af
}

.bg-blue-800\/20 {
    background-color: rgba(30, 64, 175, .2)
}

.bg-blue-800\/25 {
    background-color: rgba(30, 64, 175, .25)
}

.bg-blue-800\/30 {
    background-color: rgba(30, 64, 175, .3)
}

.bg-blue-800\/40 {
    background-color: rgba(30, 64, 175, .4)
}

.bg-blue-800\/5 {
    background-color: rgba(30, 64, 175, .05)
}

.bg-blue-800\/50 {
    background-color: rgba(30, 64, 175, .5)
}

.bg-blue-800\/60 {
    background-color: rgba(30, 64, 175, .6)
}

.bg-blue-800\/70 {
    background-color: rgba(30, 64, 175, .7)
}

.bg-blue-800\/75 {
    background-color: rgba(30, 64, 175, .75)
}

.bg-blue-800\/80 {
    background-color: rgba(30, 64, 175, .8)
}

.bg-blue-800\/90 {
    background-color: rgba(30, 64, 175, .9)
}

.bg-blue-800\/95 {
    background-color: rgba(30, 64, 175, .95)
}

.bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229/var(--tw-bg-opacity))
}

.bg-emerald-100\/0 {
    background-color: rgba(209, 250, 229, 0)
}

.bg-emerald-100\/10 {
    background-color: rgba(209, 250, 229, .1)
}

.bg-emerald-100\/100 {
    background-color: #d1fae5
}

.bg-emerald-100\/20 {
    background-color: rgba(209, 250, 229, .2)
}

.bg-emerald-100\/25 {
    background-color: rgba(209, 250, 229, .25)
}

.bg-emerald-100\/30 {
    background-color: rgba(209, 250, 229, .3)
}

.bg-emerald-100\/40 {
    background-color: rgba(209, 250, 229, .4)
}

.bg-emerald-100\/5 {
    background-color: rgba(209, 250, 229, .05)
}

.bg-emerald-100\/50 {
    background-color: rgba(209, 250, 229, .5)
}

.bg-emerald-100\/60 {
    background-color: rgba(209, 250, 229, .6)
}

.bg-emerald-100\/70 {
    background-color: rgba(209, 250, 229, .7)
}

.bg-emerald-100\/75 {
    background-color: rgba(209, 250, 229, .75)
}

.bg-emerald-100\/80 {
    background-color: rgba(209, 250, 229, .8)
}

.bg-emerald-100\/90 {
    background-color: rgba(209, 250, 229, .9)
}

.bg-emerald-100\/95 {
    background-color: rgba(209, 250, 229, .95)
}

.bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208/var(--tw-bg-opacity))
}

.bg-emerald-200\/0 {
    background-color: rgba(167, 243, 208, 0)
}

.bg-emerald-200\/10 {
    background-color: rgba(167, 243, 208, .1)
}

.bg-emerald-200\/100 {
    background-color: #a7f3d0
}

.bg-emerald-200\/20 {
    background-color: rgba(167, 243, 208, .2)
}

.bg-emerald-200\/25 {
    background-color: rgba(167, 243, 208, .25)
}

.bg-emerald-200\/30 {
    background-color: rgba(167, 243, 208, .3)
}

.bg-emerald-200\/40 {
    background-color: rgba(167, 243, 208, .4)
}

.bg-emerald-200\/5 {
    background-color: rgba(167, 243, 208, .05)
}

.bg-emerald-200\/50 {
    background-color: rgba(167, 243, 208, .5)
}

.bg-emerald-200\/60 {
    background-color: rgba(167, 243, 208, .6)
}

.bg-emerald-200\/70 {
    background-color: rgba(167, 243, 208, .7)
}

.bg-emerald-200\/75 {
    background-color: rgba(167, 243, 208, .75)
}

.bg-emerald-200\/80 {
    background-color: rgba(167, 243, 208, .8)
}

.bg-emerald-200\/90 {
    background-color: rgba(167, 243, 208, .9)
}

.bg-emerald-200\/95 {
    background-color: rgba(167, 243, 208, .95)
}

.bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183/var(--tw-bg-opacity))
}

.bg-emerald-300\/0 {
    background-color: rgba(110, 231, 183, 0)
}

.bg-emerald-300\/10 {
    background-color: rgba(110, 231, 183, .1)
}

.bg-emerald-300\/100 {
    background-color: #6ee7b7
}

.bg-emerald-300\/20 {
    background-color: rgba(110, 231, 183, .2)
}

.bg-emerald-300\/25 {
    background-color: rgba(110, 231, 183, .25)
}

.bg-emerald-300\/30 {
    background-color: rgba(110, 231, 183, .3)
}

.bg-emerald-300\/40 {
    background-color: rgba(110, 231, 183, .4)
}

.bg-emerald-300\/5 {
    background-color: rgba(110, 231, 183, .05)
}

.bg-emerald-300\/50 {
    background-color: rgba(110, 231, 183, .5)
}

.bg-emerald-300\/60 {
    background-color: rgba(110, 231, 183, .6)
}

.bg-emerald-300\/70 {
    background-color: rgba(110, 231, 183, .7)
}

.bg-emerald-300\/75 {
    background-color: rgba(110, 231, 183, .75)
}

.bg-emerald-300\/80 {
    background-color: rgba(110, 231, 183, .8)
}

.bg-emerald-300\/90 {
    background-color: rgba(110, 231, 183, .9)
}

.bg-emerald-300\/95 {
    background-color: rgba(110, 231, 183, .95)
}

.bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153/var(--tw-bg-opacity))
}

.bg-emerald-400\/0 {
    background-color: rgba(52, 211, 153, 0)
}

.bg-emerald-400\/10 {
    background-color: rgba(52, 211, 153, .1)
}

.bg-emerald-400\/100 {
    background-color: #34d399
}

.bg-emerald-400\/20 {
    background-color: rgba(52, 211, 153, .2)
}

.bg-emerald-400\/25 {
    background-color: rgba(52, 211, 153, .25)
}

.bg-emerald-400\/30 {
    background-color: rgba(52, 211, 153, .3)
}

.bg-emerald-400\/40 {
    background-color: rgba(52, 211, 153, .4)
}

.bg-emerald-400\/5 {
    background-color: rgba(52, 211, 153, .05)
}

.bg-emerald-400\/50 {
    background-color: rgba(52, 211, 153, .5)
}

.bg-emerald-400\/60 {
    background-color: rgba(52, 211, 153, .6)
}

.bg-emerald-400\/70 {
    background-color: rgba(52, 211, 153, .7)
}

.bg-emerald-400\/75 {
    background-color: rgba(52, 211, 153, .75)
}

.bg-emerald-400\/80 {
    background-color: rgba(52, 211, 153, .8)
}

.bg-emerald-400\/90 {
    background-color: rgba(52, 211, 153, .9)
}

.bg-emerald-400\/95 {
    background-color: rgba(52, 211, 153, .95)
}

.bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129/var(--tw-bg-opacity))
}

.bg-emerald-500\/0 {
    background-color: rgba(16, 185, 129, 0)
}

.bg-emerald-500\/10 {
    background-color: rgba(16, 185, 129, .1)
}

.bg-emerald-500\/100 {
    background-color: #10b981
}

.bg-emerald-500\/20 {
    background-color: rgba(16, 185, 129, .2)
}

.bg-emerald-500\/25 {
    background-color: rgba(16, 185, 129, .25)
}

.bg-emerald-500\/30 {
    background-color: rgba(16, 185, 129, .3)
}

.bg-emerald-500\/40 {
    background-color: rgba(16, 185, 129, .4)
}

.bg-emerald-500\/5 {
    background-color: rgba(16, 185, 129, .05)
}

.bg-emerald-500\/50 {
    background-color: rgba(16, 185, 129, .5)
}

.bg-emerald-500\/60 {
    background-color: rgba(16, 185, 129, .6)
}

.bg-emerald-500\/70 {
    background-color: rgba(16, 185, 129, .7)
}

.bg-emerald-500\/75 {
    background-color: rgba(16, 185, 129, .75)
}

.bg-emerald-500\/80 {
    background-color: rgba(16, 185, 129, .8)
}

.bg-emerald-500\/90 {
    background-color: rgba(16, 185, 129, .9)
}

.bg-emerald-500\/95 {
    background-color: rgba(16, 185, 129, .95)
}

.bg-emerald-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(5 150 105/var(--tw-bg-opacity))
}

.bg-emerald-600\/0 {
    background-color: rgba(5, 150, 105, 0)
}

.bg-emerald-600\/10 {
    background-color: rgba(5, 150, 105, .1)
}

.bg-emerald-600\/100 {
    background-color: #059669
}

.bg-emerald-600\/20 {
    background-color: rgba(5, 150, 105, .2)
}

.bg-emerald-600\/25 {
    background-color: rgba(5, 150, 105, .25)
}

.bg-emerald-600\/30 {
    background-color: rgba(5, 150, 105, .3)
}

.bg-emerald-600\/40 {
    background-color: rgba(5, 150, 105, .4)
}

.bg-emerald-600\/5 {
    background-color: rgba(5, 150, 105, .05)
}

.bg-emerald-600\/50 {
    background-color: rgba(5, 150, 105, .5)
}

.bg-emerald-600\/60 {
    background-color: rgba(5, 150, 105, .6)
}

.bg-emerald-600\/70 {
    background-color: rgba(5, 150, 105, .7)
}

.bg-emerald-600\/75 {
    background-color: rgba(5, 150, 105, .75)
}

.bg-emerald-600\/80 {
    background-color: rgba(5, 150, 105, .8)
}

.bg-emerald-600\/90 {
    background-color: rgba(5, 150, 105, .9)
}

.bg-emerald-600\/95 {
    background-color: rgba(5, 150, 105, .95)
}

.bg-emerald-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87/var(--tw-bg-opacity))
}

.bg-emerald-700\/0 {
    background-color: rgba(4, 120, 87, 0)
}

.bg-emerald-700\/10 {
    background-color: rgba(4, 120, 87, .1)
}

.bg-emerald-700\/100 {
    background-color: #047857
}

.bg-emerald-700\/20 {
    background-color: rgba(4, 120, 87, .2)
}

.bg-emerald-700\/25 {
    background-color: rgba(4, 120, 87, .25)
}

.bg-emerald-700\/30 {
    background-color: rgba(4, 120, 87, .3)
}

.bg-emerald-700\/40 {
    background-color: rgba(4, 120, 87, .4)
}

.bg-emerald-700\/5 {
    background-color: rgba(4, 120, 87, .05)
}

.bg-emerald-700\/50 {
    background-color: rgba(4, 120, 87, .5)
}

.bg-emerald-700\/60 {
    background-color: rgba(4, 120, 87, .6)
}

.bg-emerald-700\/70 {
    background-color: rgba(4, 120, 87, .7)
}

.bg-emerald-700\/75 {
    background-color: rgba(4, 120, 87, .75)
}

.bg-emerald-700\/80 {
    background-color: rgba(4, 120, 87, .8)
}

.bg-emerald-700\/90 {
    background-color: rgba(4, 120, 87, .9)
}

.bg-emerald-700\/95 {
    background-color: rgba(4, 120, 87, .95)
}

.bg-emerald-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(6 95 70/var(--tw-bg-opacity))
}

.bg-emerald-800\/0 {
    background-color: rgba(6, 95, 70, 0)
}

.bg-emerald-800\/10 {
    background-color: rgba(6, 95, 70, .1)
}

.bg-emerald-800\/100 {
    background-color: #065f46
}

.bg-emerald-800\/20 {
    background-color: rgba(6, 95, 70, .2)
}

.bg-emerald-800\/25 {
    background-color: rgba(6, 95, 70, .25)
}

.bg-emerald-800\/30 {
    background-color: rgba(6, 95, 70, .3)
}

.bg-emerald-800\/40 {
    background-color: rgba(6, 95, 70, .4)
}

.bg-emerald-800\/5 {
    background-color: rgba(6, 95, 70, .05)
}

.bg-emerald-800\/50 {
    background-color: rgba(6, 95, 70, .5)
}

.bg-emerald-800\/60 {
    background-color: rgba(6, 95, 70, .6)
}

.bg-emerald-800\/70 {
    background-color: rgba(6, 95, 70, .7)
}

.bg-emerald-800\/75 {
    background-color: rgba(6, 95, 70, .75)
}

.bg-emerald-800\/80 {
    background-color: rgba(6, 95, 70, .8)
}

.bg-emerald-800\/90 {
    background-color: rgba(6, 95, 70, .9)
}

.bg-emerald-800\/95 {
    background-color: rgba(6, 95, 70, .95)
}

.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235/var(--tw-bg-opacity))
}

.bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175/var(--tw-bg-opacity))
}

.bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231/var(--tw-bg-opacity))
}

.bg-green-100\/0 {
    background-color: rgba(220, 252, 231, 0)
}

.bg-green-100\/10 {
    background-color: rgba(220, 252, 231, .1)
}

.bg-green-100\/100 {
    background-color: #dcfce7
}

.bg-green-100\/20 {
    background-color: rgba(220, 252, 231, .2)
}

.bg-green-100\/25 {
    background-color: rgba(220, 252, 231, .25)
}

.bg-green-100\/30 {
    background-color: rgba(220, 252, 231, .3)
}

.bg-green-100\/40 {
    background-color: rgba(220, 252, 231, .4)
}

.bg-green-100\/5 {
    background-color: rgba(220, 252, 231, .05)
}

.bg-green-100\/50 {
    background-color: rgba(220, 252, 231, .5)
}

.bg-green-100\/60 {
    background-color: rgba(220, 252, 231, .6)
}

.bg-green-100\/70 {
    background-color: rgba(220, 252, 231, .7)
}

.bg-green-100\/75 {
    background-color: rgba(220, 252, 231, .75)
}

.bg-green-100\/80 {
    background-color: rgba(220, 252, 231, .8)
}

.bg-green-100\/90 {
    background-color: rgba(220, 252, 231, .9)
}

.bg-green-100\/95 {
    background-color: rgba(220, 252, 231, .95)
}

.bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208/var(--tw-bg-opacity))
}

.bg-green-200\/0 {
    background-color: rgba(187, 247, 208, 0)
}

.bg-green-200\/10 {
    background-color: rgba(187, 247, 208, .1)
}

.bg-green-200\/100 {
    background-color: #bbf7d0
}

.bg-green-200\/20 {
    background-color: rgba(187, 247, 208, .2)
}

.bg-green-200\/25 {
    background-color: rgba(187, 247, 208, .25)
}

.bg-green-200\/30 {
    background-color: rgba(187, 247, 208, .3)
}

.bg-green-200\/40 {
    background-color: rgba(187, 247, 208, .4)
}

.bg-green-200\/5 {
    background-color: rgba(187, 247, 208, .05)
}

.bg-green-200\/50 {
    background-color: rgba(187, 247, 208, .5)
}

.bg-green-200\/60 {
    background-color: rgba(187, 247, 208, .6)
}

.bg-green-200\/70 {
    background-color: rgba(187, 247, 208, .7)
}

.bg-green-200\/75 {
    background-color: rgba(187, 247, 208, .75)
}

.bg-green-200\/80 {
    background-color: rgba(187, 247, 208, .8)
}

.bg-green-200\/90 {
    background-color: rgba(187, 247, 208, .9)
}

.bg-green-200\/95 {
    background-color: rgba(187, 247, 208, .95)
}

.bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172/var(--tw-bg-opacity))
}

.bg-green-300\/0 {
    background-color: rgba(134, 239, 172, 0)
}

.bg-green-300\/10 {
    background-color: rgba(134, 239, 172, .1)
}

.bg-green-300\/100 {
    background-color: #86efac
}

.bg-green-300\/20 {
    background-color: rgba(134, 239, 172, .2)
}

.bg-green-300\/25 {
    background-color: rgba(134, 239, 172, .25)
}

.bg-green-300\/30 {
    background-color: rgba(134, 239, 172, .3)
}

.bg-green-300\/40 {
    background-color: rgba(134, 239, 172, .4)
}

.bg-green-300\/5 {
    background-color: rgba(134, 239, 172, .05)
}

.bg-green-300\/50 {
    background-color: rgba(134, 239, 172, .5)
}

.bg-green-300\/60 {
    background-color: rgba(134, 239, 172, .6)
}

.bg-green-300\/70 {
    background-color: rgba(134, 239, 172, .7)
}

.bg-green-300\/75 {
    background-color: rgba(134, 239, 172, .75)
}

.bg-green-300\/80 {
    background-color: rgba(134, 239, 172, .8)
}

.bg-green-300\/90 {
    background-color: rgba(134, 239, 172, .9)
}

.bg-green-300\/95 {
    background-color: rgba(134, 239, 172, .95)
}

.bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128/var(--tw-bg-opacity))
}

.bg-green-400\/0 {
    background-color: rgba(74, 222, 128, 0)
}

.bg-green-400\/10 {
    background-color: rgba(74, 222, 128, .1)
}

.bg-green-400\/100 {
    background-color: #4ade80
}

.bg-green-400\/20 {
    background-color: rgba(74, 222, 128, .2)
}

.bg-green-400\/25 {
    background-color: rgba(74, 222, 128, .25)
}

.bg-green-400\/30 {
    background-color: rgba(74, 222, 128, .3)
}

.bg-green-400\/40 {
    background-color: rgba(74, 222, 128, .4)
}

.bg-green-400\/5 {
    background-color: rgba(74, 222, 128, .05)
}

.bg-green-400\/50 {
    background-color: rgba(74, 222, 128, .5)
}

.bg-green-400\/60 {
    background-color: rgba(74, 222, 128, .6)
}

.bg-green-400\/70 {
    background-color: rgba(74, 222, 128, .7)
}

.bg-green-400\/75 {
    background-color: rgba(74, 222, 128, .75)
}

.bg-green-400\/80 {
    background-color: rgba(74, 222, 128, .8)
}

.bg-green-400\/90 {
    background-color: rgba(74, 222, 128, .9)
}

.bg-green-400\/95 {
    background-color: rgba(74, 222, 128, .95)
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94/var(--tw-bg-opacity))
}

.bg-green-500\/0 {
    background-color: rgba(34, 197, 94, 0)
}

.bg-green-500\/10 {
    background-color: rgba(34, 197, 94, .1)
}

.bg-green-500\/100 {
    background-color: #22c55e
}

.bg-green-500\/20 {
    background-color: rgba(34, 197, 94, .2)
}

.bg-green-500\/25 {
    background-color: rgba(34, 197, 94, .25)
}

.bg-green-500\/30 {
    background-color: rgba(34, 197, 94, .3)
}

.bg-green-500\/40 {
    background-color: rgba(34, 197, 94, .4)
}

.bg-green-500\/5 {
    background-color: rgba(34, 197, 94, .05)
}

.bg-green-500\/50 {
    background-color: rgba(34, 197, 94, .5)
}

.bg-green-500\/60 {
    background-color: rgba(34, 197, 94, .6)
}

.bg-green-500\/70 {
    background-color: rgba(34, 197, 94, .7)
}

.bg-green-500\/75 {
    background-color: rgba(34, 197, 94, .75)
}

.bg-green-500\/80 {
    background-color: rgba(34, 197, 94, .8)
}

.bg-green-500\/90 {
    background-color: rgba(34, 197, 94, .9)
}

.bg-green-500\/95 {
    background-color: rgba(34, 197, 94, .95)
}

.bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74/var(--tw-bg-opacity))
}

.bg-green-600\/0 {
    background-color: rgba(22, 163, 74, 0)
}

.bg-green-600\/10 {
    background-color: rgba(22, 163, 74, .1)
}

.bg-green-600\/100 {
    background-color: #16a34a
}

.bg-green-600\/20 {
    background-color: rgba(22, 163, 74, .2)
}

.bg-green-600\/25 {
    background-color: rgba(22, 163, 74, .25)
}

.bg-green-600\/30 {
    background-color: rgba(22, 163, 74, .3)
}

.bg-green-600\/40 {
    background-color: rgba(22, 163, 74, .4)
}

.bg-green-600\/5 {
    background-color: rgba(22, 163, 74, .05)
}

.bg-green-600\/50 {
    background-color: rgba(22, 163, 74, .5)
}

.bg-green-600\/60 {
    background-color: rgba(22, 163, 74, .6)
}

.bg-green-600\/70 {
    background-color: rgba(22, 163, 74, .7)
}

.bg-green-600\/75 {
    background-color: rgba(22, 163, 74, .75)
}

.bg-green-600\/80 {
    background-color: rgba(22, 163, 74, .8)
}

.bg-green-600\/90 {
    background-color: rgba(22, 163, 74, .9)
}

.bg-green-600\/95 {
    background-color: rgba(22, 163, 74, .95)
}

.bg-green-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 128 61/var(--tw-bg-opacity))
}

.bg-green-700\/0 {
    background-color: rgba(21, 128, 61, 0)
}

.bg-green-700\/10 {
    background-color: rgba(21, 128, 61, .1)
}

.bg-green-700\/100 {
    background-color: #15803d
}

.bg-green-700\/20 {
    background-color: rgba(21, 128, 61, .2)
}

.bg-green-700\/25 {
    background-color: rgba(21, 128, 61, .25)
}

.bg-green-700\/30 {
    background-color: rgba(21, 128, 61, .3)
}

.bg-green-700\/40 {
    background-color: rgba(21, 128, 61, .4)
}

.bg-green-700\/5 {
    background-color: rgba(21, 128, 61, .05)
}

.bg-green-700\/50 {
    background-color: rgba(21, 128, 61, .5)
}

.bg-green-700\/60 {
    background-color: rgba(21, 128, 61, .6)
}

.bg-green-700\/70 {
    background-color: rgba(21, 128, 61, .7)
}

.bg-green-700\/75 {
    background-color: rgba(21, 128, 61, .75)
}

.bg-green-700\/80 {
    background-color: rgba(21, 128, 61, .8)
}

.bg-green-700\/90 {
    background-color: rgba(21, 128, 61, .9)
}

.bg-green-700\/95 {
    background-color: rgba(21, 128, 61, .95)
}

.bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52/var(--tw-bg-opacity))
}

.bg-green-800\/0 {
    background-color: rgba(22, 101, 52, 0)
}

.bg-green-800\/10 {
    background-color: rgba(22, 101, 52, .1)
}

.bg-green-800\/100 {
    background-color: #166534
}

.bg-green-800\/20 {
    background-color: rgba(22, 101, 52, .2)
}

.bg-green-800\/25 {
    background-color: rgba(22, 101, 52, .25)
}

.bg-green-800\/30 {
    background-color: rgba(22, 101, 52, .3)
}

.bg-green-800\/40 {
    background-color: rgba(22, 101, 52, .4)
}

.bg-green-800\/5 {
    background-color: rgba(22, 101, 52, .05)
}

.bg-green-800\/50 {
    background-color: rgba(22, 101, 52, .5)
}

.bg-green-800\/60 {
    background-color: rgba(22, 101, 52, .6)
}

.bg-green-800\/70 {
    background-color: rgba(22, 101, 52, .7)
}

.bg-green-800\/75 {
    background-color: rgba(22, 101, 52, .75)
}

.bg-green-800\/80 {
    background-color: rgba(22, 101, 52, .8)
}

.bg-green-800\/90 {
    background-color: rgba(22, 101, 52, .9)
}

.bg-green-800\/95 {
    background-color: rgba(22, 101, 52, .95)
}

.bg-indigo-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252/var(--tw-bg-opacity))
}

.bg-lime-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 252 203/var(--tw-bg-opacity))
}

.bg-lime-100\/0 {
    background-color: hsla(80, 89%, 89%, 0)
}

.bg-lime-100\/10 {
    background-color: hsla(80, 89%, 89%, .1)
}

.bg-lime-100\/100 {
    background-color: #ecfccb
}

.bg-lime-100\/20 {
    background-color: hsla(80, 89%, 89%, .2)
}

.bg-lime-100\/25 {
    background-color: hsla(80, 89%, 89%, .25)
}

.bg-lime-100\/30 {
    background-color: hsla(80, 89%, 89%, .3)
}

.bg-lime-100\/40 {
    background-color: hsla(80, 89%, 89%, .4)
}

.bg-lime-100\/5 {
    background-color: hsla(80, 89%, 89%, .05)
}

.bg-lime-100\/50 {
    background-color: hsla(80, 89%, 89%, .5)
}

.bg-lime-100\/60 {
    background-color: hsla(80, 89%, 89%, .6)
}

.bg-lime-100\/70 {
    background-color: hsla(80, 89%, 89%, .7)
}

.bg-lime-100\/75 {
    background-color: hsla(80, 89%, 89%, .75)
}

.bg-lime-100\/80 {
    background-color: hsla(80, 89%, 89%, .8)
}

.bg-lime-100\/90 {
    background-color: hsla(80, 89%, 89%, .9)
}

.bg-lime-100\/95 {
    background-color: hsla(80, 89%, 89%, .95)
}

.bg-lime-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(217 249 157/var(--tw-bg-opacity))
}

.bg-lime-200\/0 {
    background-color: hsla(81, 88%, 80%, 0)
}

.bg-lime-200\/10 {
    background-color: hsla(81, 88%, 80%, .1)
}

.bg-lime-200\/100 {
    background-color: #d9f99d
}

.bg-lime-200\/20 {
    background-color: hsla(81, 88%, 80%, .2)
}

.bg-lime-200\/25 {
    background-color: hsla(81, 88%, 80%, .25)
}

.bg-lime-200\/30 {
    background-color: hsla(81, 88%, 80%, .3)
}

.bg-lime-200\/40 {
    background-color: hsla(81, 88%, 80%, .4)
}

.bg-lime-200\/5 {
    background-color: hsla(81, 88%, 80%, .05)
}

.bg-lime-200\/50 {
    background-color: hsla(81, 88%, 80%, .5)
}

.bg-lime-200\/60 {
    background-color: hsla(81, 88%, 80%, .6)
}

.bg-lime-200\/70 {
    background-color: hsla(81, 88%, 80%, .7)
}

.bg-lime-200\/75 {
    background-color: hsla(81, 88%, 80%, .75)
}

.bg-lime-200\/80 {
    background-color: hsla(81, 88%, 80%, .8)
}

.bg-lime-200\/90 {
    background-color: hsla(81, 88%, 80%, .9)
}

.bg-lime-200\/95 {
    background-color: hsla(81, 88%, 80%, .95)
}

.bg-lime-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(190 242 100/var(--tw-bg-opacity))
}

.bg-lime-300\/0 {
    background-color: hsla(82, 85%, 67%, 0)
}

.bg-lime-300\/10 {
    background-color: hsla(82, 85%, 67%, .1)
}

.bg-lime-300\/100 {
    background-color: #bef264
}

.bg-lime-300\/20 {
    background-color: hsla(82, 85%, 67%, .2)
}

.bg-lime-300\/25 {
    background-color: hsla(82, 85%, 67%, .25)
}

.bg-lime-300\/30 {
    background-color: hsla(82, 85%, 67%, .3)
}

.bg-lime-300\/40 {
    background-color: hsla(82, 85%, 67%, .4)
}

.bg-lime-300\/5 {
    background-color: hsla(82, 85%, 67%, .05)
}

.bg-lime-300\/50 {
    background-color: hsla(82, 85%, 67%, .5)
}

.bg-lime-300\/60 {
    background-color: hsla(82, 85%, 67%, .6)
}

.bg-lime-300\/70 {
    background-color: hsla(82, 85%, 67%, .7)
}

.bg-lime-300\/75 {
    background-color: hsla(82, 85%, 67%, .75)
}

.bg-lime-300\/80 {
    background-color: hsla(82, 85%, 67%, .8)
}

.bg-lime-300\/90 {
    background-color: hsla(82, 85%, 67%, .9)
}

.bg-lime-300\/95 {
    background-color: hsla(82, 85%, 67%, .95)
}

.bg-lime-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(163 230 53/var(--tw-bg-opacity))
}

.bg-lime-400\/0 {
    background-color: rgba(163, 230, 53, 0)
}

.bg-lime-400\/10 {
    background-color: rgba(163, 230, 53, .1)
}

.bg-lime-400\/100 {
    background-color: #a3e635
}

.bg-lime-400\/20 {
    background-color: rgba(163, 230, 53, .2)
}

.bg-lime-400\/25 {
    background-color: rgba(163, 230, 53, .25)
}

.bg-lime-400\/30 {
    background-color: rgba(163, 230, 53, .3)
}

.bg-lime-400\/40 {
    background-color: rgba(163, 230, 53, .4)
}

.bg-lime-400\/5 {
    background-color: rgba(163, 230, 53, .05)
}

.bg-lime-400\/50 {
    background-color: rgba(163, 230, 53, .5)
}

.bg-lime-400\/60 {
    background-color: rgba(163, 230, 53, .6)
}

.bg-lime-400\/70 {
    background-color: rgba(163, 230, 53, .7)
}

.bg-lime-400\/75 {
    background-color: rgba(163, 230, 53, .75)
}

.bg-lime-400\/80 {
    background-color: rgba(163, 230, 53, .8)
}

.bg-lime-400\/90 {
    background-color: rgba(163, 230, 53, .9)
}

.bg-lime-400\/95 {
    background-color: rgba(163, 230, 53, .95)
}

.bg-lime-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22/var(--tw-bg-opacity))
}

.bg-lime-500\/0 {
    background-color: rgba(132, 204, 22, 0)
}

.bg-lime-500\/10 {
    background-color: rgba(132, 204, 22, .1)
}

.bg-lime-500\/100 {
    background-color: #84cc16
}

.bg-lime-500\/20 {
    background-color: rgba(132, 204, 22, .2)
}

.bg-lime-500\/25 {
    background-color: rgba(132, 204, 22, .25)
}

.bg-lime-500\/30 {
    background-color: rgba(132, 204, 22, .3)
}

.bg-lime-500\/40 {
    background-color: rgba(132, 204, 22, .4)
}

.bg-lime-500\/5 {
    background-color: rgba(132, 204, 22, .05)
}

.bg-lime-500\/50 {
    background-color: rgba(132, 204, 22, .5)
}

.bg-lime-500\/60 {
    background-color: rgba(132, 204, 22, .6)
}

.bg-lime-500\/70 {
    background-color: rgba(132, 204, 22, .7)
}

.bg-lime-500\/75 {
    background-color: rgba(132, 204, 22, .75)
}

.bg-lime-500\/80 {
    background-color: rgba(132, 204, 22, .8)
}

.bg-lime-500\/90 {
    background-color: rgba(132, 204, 22, .9)
}

.bg-lime-500\/95 {
    background-color: rgba(132, 204, 22, .95)
}

.bg-lime-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13/var(--tw-bg-opacity))
}

.bg-lime-600\/0 {
    background-color: rgba(101, 163, 13, 0)
}

.bg-lime-600\/10 {
    background-color: rgba(101, 163, 13, .1)
}

.bg-lime-600\/100 {
    background-color: #65a30d
}

.bg-lime-600\/20 {
    background-color: rgba(101, 163, 13, .2)
}

.bg-lime-600\/25 {
    background-color: rgba(101, 163, 13, .25)
}

.bg-lime-600\/30 {
    background-color: rgba(101, 163, 13, .3)
}

.bg-lime-600\/40 {
    background-color: rgba(101, 163, 13, .4)
}

.bg-lime-600\/5 {
    background-color: rgba(101, 163, 13, .05)
}

.bg-lime-600\/50 {
    background-color: rgba(101, 163, 13, .5)
}

.bg-lime-600\/60 {
    background-color: rgba(101, 163, 13, .6)
}

.bg-lime-600\/70 {
    background-color: rgba(101, 163, 13, .7)
}

.bg-lime-600\/75 {
    background-color: rgba(101, 163, 13, .75)
}

.bg-lime-600\/80 {
    background-color: rgba(101, 163, 13, .8)
}

.bg-lime-600\/90 {
    background-color: rgba(101, 163, 13, .9)
}

.bg-lime-600\/95 {
    background-color: rgba(101, 163, 13, .95)
}

.bg-lime-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15/var(--tw-bg-opacity))
}

.bg-lime-700\/0 {
    background-color: rgba(77, 124, 15, 0)
}

.bg-lime-700\/10 {
    background-color: rgba(77, 124, 15, .1)
}

.bg-lime-700\/100 {
    background-color: #4d7c0f
}

.bg-lime-700\/20 {
    background-color: rgba(77, 124, 15, .2)
}

.bg-lime-700\/25 {
    background-color: rgba(77, 124, 15, .25)
}

.bg-lime-700\/30 {
    background-color: rgba(77, 124, 15, .3)
}

.bg-lime-700\/40 {
    background-color: rgba(77, 124, 15, .4)
}

.bg-lime-700\/5 {
    background-color: rgba(77, 124, 15, .05)
}

.bg-lime-700\/50 {
    background-color: rgba(77, 124, 15, .5)
}

.bg-lime-700\/60 {
    background-color: rgba(77, 124, 15, .6)
}

.bg-lime-700\/70 {
    background-color: rgba(77, 124, 15, .7)
}

.bg-lime-700\/75 {
    background-color: rgba(77, 124, 15, .75)
}

.bg-lime-700\/80 {
    background-color: rgba(77, 124, 15, .8)
}

.bg-lime-700\/90 {
    background-color: rgba(77, 124, 15, .9)
}

.bg-lime-700\/95 {
    background-color: rgba(77, 124, 15, .95)
}

.bg-lime-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 98 18/var(--tw-bg-opacity))
}

.bg-lime-800\/0 {
    background-color: rgba(63, 98, 18, 0)
}

.bg-lime-800\/10 {
    background-color: rgba(63, 98, 18, .1)
}

.bg-lime-800\/100 {
    background-color: #3f6212
}

.bg-lime-800\/20 {
    background-color: rgba(63, 98, 18, .2)
}

.bg-lime-800\/25 {
    background-color: rgba(63, 98, 18, .25)
}

.bg-lime-800\/30 {
    background-color: rgba(63, 98, 18, .3)
}

.bg-lime-800\/40 {
    background-color: rgba(63, 98, 18, .4)
}

.bg-lime-800\/5 {
    background-color: rgba(63, 98, 18, .05)
}

.bg-lime-800\/50 {
    background-color: rgba(63, 98, 18, .5)
}

.bg-lime-800\/60 {
    background-color: rgba(63, 98, 18, .6)
}

.bg-lime-800\/70 {
    background-color: rgba(63, 98, 18, .7)
}

.bg-lime-800\/75 {
    background-color: rgba(63, 98, 18, .75)
}

.bg-lime-800\/80 {
    background-color: rgba(63, 98, 18, .8)
}

.bg-lime-800\/90 {
    background-color: rgba(63, 98, 18, .9)
}

.bg-lime-800\/95 {
    background-color: rgba(63, 98, 18, .95)
}

.bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213/var(--tw-bg-opacity))
}

.bg-orange-100\/0 {
    background-color: rgba(255, 237, 213, 0)
}

.bg-orange-100\/10 {
    background-color: rgba(255, 237, 213, .1)
}

.bg-orange-100\/100 {
    background-color: #ffedd5
}

.bg-orange-100\/20 {
    background-color: rgba(255, 237, 213, .2)
}

.bg-orange-100\/25 {
    background-color: rgba(255, 237, 213, .25)
}

.bg-orange-100\/30 {
    background-color: rgba(255, 237, 213, .3)
}

.bg-orange-100\/40 {
    background-color: rgba(255, 237, 213, .4)
}

.bg-orange-100\/5 {
    background-color: rgba(255, 237, 213, .05)
}

.bg-orange-100\/50 {
    background-color: rgba(255, 237, 213, .5)
}

.bg-orange-100\/60 {
    background-color: rgba(255, 237, 213, .6)
}

.bg-orange-100\/70 {
    background-color: rgba(255, 237, 213, .7)
}

.bg-orange-100\/75 {
    background-color: rgba(255, 237, 213, .75)
}

.bg-orange-100\/80 {
    background-color: rgba(255, 237, 213, .8)
}

.bg-orange-100\/90 {
    background-color: rgba(255, 237, 213, .9)
}

.bg-orange-100\/95 {
    background-color: rgba(255, 237, 213, .95)
}

.bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170/var(--tw-bg-opacity))
}

.bg-orange-200\/0 {
    background-color: hsla(32, 98%, 83%, 0)
}

.bg-orange-200\/10 {
    background-color: hsla(32, 98%, 83%, .1)
}

.bg-orange-200\/100 {
    background-color: #fed7aa
}

.bg-orange-200\/20 {
    background-color: hsla(32, 98%, 83%, .2)
}

.bg-orange-200\/25 {
    background-color: hsla(32, 98%, 83%, .25)
}

.bg-orange-200\/30 {
    background-color: hsla(32, 98%, 83%, .3)
}

.bg-orange-200\/40 {
    background-color: hsla(32, 98%, 83%, .4)
}

.bg-orange-200\/5 {
    background-color: hsla(32, 98%, 83%, .05)
}

.bg-orange-200\/50 {
    background-color: hsla(32, 98%, 83%, .5)
}

.bg-orange-200\/60 {
    background-color: hsla(32, 98%, 83%, .6)
}

.bg-orange-200\/70 {
    background-color: hsla(32, 98%, 83%, .7)
}

.bg-orange-200\/75 {
    background-color: hsla(32, 98%, 83%, .75)
}

.bg-orange-200\/80 {
    background-color: hsla(32, 98%, 83%, .8)
}

.bg-orange-200\/90 {
    background-color: hsla(32, 98%, 83%, .9)
}

.bg-orange-200\/95 {
    background-color: hsla(32, 98%, 83%, .95)
}

.bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116/var(--tw-bg-opacity))
}

.bg-orange-300\/0 {
    background-color: hsla(31, 97%, 72%, 0)
}

.bg-orange-300\/10 {
    background-color: hsla(31, 97%, 72%, .1)
}

.bg-orange-300\/100 {
    background-color: #fdba74
}

.bg-orange-300\/20 {
    background-color: hsla(31, 97%, 72%, .2)
}

.bg-orange-300\/25 {
    background-color: hsla(31, 97%, 72%, .25)
}

.bg-orange-300\/30 {
    background-color: hsla(31, 97%, 72%, .3)
}

.bg-orange-300\/40 {
    background-color: hsla(31, 97%, 72%, .4)
}

.bg-orange-300\/5 {
    background-color: hsla(31, 97%, 72%, .05)
}

.bg-orange-300\/50 {
    background-color: hsla(31, 97%, 72%, .5)
}

.bg-orange-300\/60 {
    background-color: hsla(31, 97%, 72%, .6)
}

.bg-orange-300\/70 {
    background-color: hsla(31, 97%, 72%, .7)
}

.bg-orange-300\/75 {
    background-color: hsla(31, 97%, 72%, .75)
}

.bg-orange-300\/80 {
    background-color: hsla(31, 97%, 72%, .8)
}

.bg-orange-300\/90 {
    background-color: hsla(31, 97%, 72%, .9)
}

.bg-orange-300\/95 {
    background-color: hsla(31, 97%, 72%, .95)
}

.bg-orange-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60/var(--tw-bg-opacity))
}

.bg-orange-400\/0 {
    background-color: rgba(251, 146, 60, 0)
}

.bg-orange-400\/10 {
    background-color: rgba(251, 146, 60, .1)
}

.bg-orange-400\/100 {
    background-color: #fb923c
}

.bg-orange-400\/20 {
    background-color: rgba(251, 146, 60, .2)
}

.bg-orange-400\/25 {
    background-color: rgba(251, 146, 60, .25)
}

.bg-orange-400\/30 {
    background-color: rgba(251, 146, 60, .3)
}

.bg-orange-400\/40 {
    background-color: rgba(251, 146, 60, .4)
}

.bg-orange-400\/5 {
    background-color: rgba(251, 146, 60, .05)
}

.bg-orange-400\/50 {
    background-color: rgba(251, 146, 60, .5)
}

.bg-orange-400\/60 {
    background-color: rgba(251, 146, 60, .6)
}

.bg-orange-400\/70 {
    background-color: rgba(251, 146, 60, .7)
}

.bg-orange-400\/75 {
    background-color: rgba(251, 146, 60, .75)
}

.bg-orange-400\/80 {
    background-color: rgba(251, 146, 60, .8)
}

.bg-orange-400\/90 {
    background-color: rgba(251, 146, 60, .9)
}

.bg-orange-400\/95 {
    background-color: rgba(251, 146, 60, .95)
}

.bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22/var(--tw-bg-opacity))
}

.bg-orange-500\/0 {
    background-color: rgba(249, 115, 22, 0)
}

.bg-orange-500\/10 {
    background-color: rgba(249, 115, 22, .1)
}

.bg-orange-500\/100 {
    background-color: #f97316
}

.bg-orange-500\/20 {
    background-color: rgba(249, 115, 22, .2)
}

.bg-orange-500\/25 {
    background-color: rgba(249, 115, 22, .25)
}

.bg-orange-500\/30 {
    background-color: rgba(249, 115, 22, .3)
}

.bg-orange-500\/40 {
    background-color: rgba(249, 115, 22, .4)
}

.bg-orange-500\/5 {
    background-color: rgba(249, 115, 22, .05)
}

.bg-orange-500\/50 {
    background-color: rgba(249, 115, 22, .5)
}

.bg-orange-500\/60 {
    background-color: rgba(249, 115, 22, .6)
}

.bg-orange-500\/70 {
    background-color: rgba(249, 115, 22, .7)
}

.bg-orange-500\/75 {
    background-color: rgba(249, 115, 22, .75)
}

.bg-orange-500\/80 {
    background-color: rgba(249, 115, 22, .8)
}

.bg-orange-500\/90 {
    background-color: rgba(249, 115, 22, .9)
}

.bg-orange-500\/95 {
    background-color: rgba(249, 115, 22, .95)
}

.bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12/var(--tw-bg-opacity))
}

.bg-orange-600\/0 {
    background-color: rgba(234, 88, 12, 0)
}

.bg-orange-600\/10 {
    background-color: rgba(234, 88, 12, .1)
}

.bg-orange-600\/100 {
    background-color: #ea580c
}

.bg-orange-600\/20 {
    background-color: rgba(234, 88, 12, .2)
}

.bg-orange-600\/25 {
    background-color: rgba(234, 88, 12, .25)
}

.bg-orange-600\/30 {
    background-color: rgba(234, 88, 12, .3)
}

.bg-orange-600\/40 {
    background-color: rgba(234, 88, 12, .4)
}

.bg-orange-600\/5 {
    background-color: rgba(234, 88, 12, .05)
}

.bg-orange-600\/50 {
    background-color: rgba(234, 88, 12, .5)
}

.bg-orange-600\/60 {
    background-color: rgba(234, 88, 12, .6)
}

.bg-orange-600\/70 {
    background-color: rgba(234, 88, 12, .7)
}

.bg-orange-600\/75 {
    background-color: rgba(234, 88, 12, .75)
}

.bg-orange-600\/80 {
    background-color: rgba(234, 88, 12, .8)
}

.bg-orange-600\/90 {
    background-color: rgba(234, 88, 12, .9)
}

.bg-orange-600\/95 {
    background-color: rgba(234, 88, 12, .95)
}

.bg-orange-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12/var(--tw-bg-opacity))
}

.bg-orange-700\/0 {
    background-color: rgba(194, 65, 12, 0)
}

.bg-orange-700\/10 {
    background-color: rgba(194, 65, 12, .1)
}

.bg-orange-700\/100 {
    background-color: #c2410c
}

.bg-orange-700\/20 {
    background-color: rgba(194, 65, 12, .2)
}

.bg-orange-700\/25 {
    background-color: rgba(194, 65, 12, .25)
}

.bg-orange-700\/30 {
    background-color: rgba(194, 65, 12, .3)
}

.bg-orange-700\/40 {
    background-color: rgba(194, 65, 12, .4)
}

.bg-orange-700\/5 {
    background-color: rgba(194, 65, 12, .05)
}

.bg-orange-700\/50 {
    background-color: rgba(194, 65, 12, .5)
}

.bg-orange-700\/60 {
    background-color: rgba(194, 65, 12, .6)
}

.bg-orange-700\/70 {
    background-color: rgba(194, 65, 12, .7)
}

.bg-orange-700\/75 {
    background-color: rgba(194, 65, 12, .75)
}

.bg-orange-700\/80 {
    background-color: rgba(194, 65, 12, .8)
}

.bg-orange-700\/90 {
    background-color: rgba(194, 65, 12, .9)
}

.bg-orange-700\/95 {
    background-color: rgba(194, 65, 12, .95)
}

.bg-orange-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(154 52 18/var(--tw-bg-opacity))
}

.bg-orange-800\/0 {
    background-color: rgba(154, 52, 18, 0)
}

.bg-orange-800\/10 {
    background-color: rgba(154, 52, 18, .1)
}

.bg-orange-800\/100 {
    background-color: #9a3412
}

.bg-orange-800\/20 {
    background-color: rgba(154, 52, 18, .2)
}

.bg-orange-800\/25 {
    background-color: rgba(154, 52, 18, .25)
}

.bg-orange-800\/30 {
    background-color: rgba(154, 52, 18, .3)
}

.bg-orange-800\/40 {
    background-color: rgba(154, 52, 18, .4)
}

.bg-orange-800\/5 {
    background-color: rgba(154, 52, 18, .05)
}

.bg-orange-800\/50 {
    background-color: rgba(154, 52, 18, .5)
}

.bg-orange-800\/60 {
    background-color: rgba(154, 52, 18, .6)
}

.bg-orange-800\/70 {
    background-color: rgba(154, 52, 18, .7)
}

.bg-orange-800\/75 {
    background-color: rgba(154, 52, 18, .75)
}

.bg-orange-800\/80 {
    background-color: rgba(154, 52, 18, .8)
}

.bg-orange-800\/90 {
    background-color: rgba(154, 52, 18, .9)
}

.bg-orange-800\/95 {
    background-color: rgba(154, 52, 18, .95)
}

.bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255/var(--tw-bg-opacity))
}

.bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226/var(--tw-bg-opacity))
}

.bg-red-100\/0 {
    background-color: hsla(0, 93%, 94%, 0)
}

.bg-red-100\/10 {
    background-color: hsla(0, 93%, 94%, .1)
}

.bg-red-100\/100 {
    background-color: #fee2e2
}

.bg-red-100\/20 {
    background-color: hsla(0, 93%, 94%, .2)
}

.bg-red-100\/25 {
    background-color: hsla(0, 93%, 94%, .25)
}

.bg-red-100\/30 {
    background-color: hsla(0, 93%, 94%, .3)
}

.bg-red-100\/40 {
    background-color: hsla(0, 93%, 94%, .4)
}

.bg-red-100\/5 {
    background-color: hsla(0, 93%, 94%, .05)
}

.bg-red-100\/50 {
    background-color: hsla(0, 93%, 94%, .5)
}

.bg-red-100\/60 {
    background-color: hsla(0, 93%, 94%, .6)
}

.bg-red-100\/70 {
    background-color: hsla(0, 93%, 94%, .7)
}

.bg-red-100\/75 {
    background-color: hsla(0, 93%, 94%, .75)
}

.bg-red-100\/80 {
    background-color: hsla(0, 93%, 94%, .8)
}

.bg-red-100\/90 {
    background-color: hsla(0, 93%, 94%, .9)
}

.bg-red-100\/95 {
    background-color: hsla(0, 93%, 94%, .95)
}

.bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202/var(--tw-bg-opacity))
}

.bg-red-200\/0 {
    background-color: hsla(0, 96%, 89%, 0)
}

.bg-red-200\/10 {
    background-color: hsla(0, 96%, 89%, .1)
}

.bg-red-200\/100 {
    background-color: #fecaca
}

.bg-red-200\/20 {
    background-color: hsla(0, 96%, 89%, .2)
}

.bg-red-200\/25 {
    background-color: hsla(0, 96%, 89%, .25)
}

.bg-red-200\/30 {
    background-color: hsla(0, 96%, 89%, .3)
}

.bg-red-200\/40 {
    background-color: hsla(0, 96%, 89%, .4)
}

.bg-red-200\/5 {
    background-color: hsla(0, 96%, 89%, .05)
}

.bg-red-200\/50 {
    background-color: hsla(0, 96%, 89%, .5)
}

.bg-red-200\/60 {
    background-color: hsla(0, 96%, 89%, .6)
}

.bg-red-200\/70 {
    background-color: hsla(0, 96%, 89%, .7)
}

.bg-red-200\/75 {
    background-color: hsla(0, 96%, 89%, .75)
}

.bg-red-200\/80 {
    background-color: hsla(0, 96%, 89%, .8)
}

.bg-red-200\/90 {
    background-color: hsla(0, 96%, 89%, .9)
}

.bg-red-200\/95 {
    background-color: hsla(0, 96%, 89%, .95)
}

.bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165/var(--tw-bg-opacity))
}

.bg-red-300\/0 {
    background-color: hsla(0, 94%, 82%, 0)
}

.bg-red-300\/10 {
    background-color: hsla(0, 94%, 82%, .1)
}

.bg-red-300\/100 {
    background-color: #fca5a5
}

.bg-red-300\/20 {
    background-color: hsla(0, 94%, 82%, .2)
}

.bg-red-300\/25 {
    background-color: hsla(0, 94%, 82%, .25)
}

.bg-red-300\/30 {
    background-color: hsla(0, 94%, 82%, .3)
}

.bg-red-300\/40 {
    background-color: hsla(0, 94%, 82%, .4)
}

.bg-red-300\/5 {
    background-color: hsla(0, 94%, 82%, .05)
}

.bg-red-300\/50 {
    background-color: hsla(0, 94%, 82%, .5)
}

.bg-red-300\/60 {
    background-color: hsla(0, 94%, 82%, .6)
}

.bg-red-300\/70 {
    background-color: hsla(0, 94%, 82%, .7)
}

.bg-red-300\/75 {
    background-color: hsla(0, 94%, 82%, .75)
}

.bg-red-300\/80 {
    background-color: hsla(0, 94%, 82%, .8)
}

.bg-red-300\/90 {
    background-color: hsla(0, 94%, 82%, .9)
}

.bg-red-300\/95 {
    background-color: hsla(0, 94%, 82%, .95)
}

.bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113/var(--tw-bg-opacity))
}

.bg-red-400\/0 {
    background-color: hsla(0, 91%, 71%, 0)
}

.bg-red-400\/10 {
    background-color: hsla(0, 91%, 71%, .1)
}

.bg-red-400\/100 {
    background-color: #f87171
}

.bg-red-400\/20 {
    background-color: hsla(0, 91%, 71%, .2)
}

.bg-red-400\/25 {
    background-color: hsla(0, 91%, 71%, .25)
}

.bg-red-400\/30 {
    background-color: hsla(0, 91%, 71%, .3)
}

.bg-red-400\/40 {
    background-color: hsla(0, 91%, 71%, .4)
}

.bg-red-400\/5 {
    background-color: hsla(0, 91%, 71%, .05)
}

.bg-red-400\/50 {
    background-color: hsla(0, 91%, 71%, .5)
}

.bg-red-400\/60 {
    background-color: hsla(0, 91%, 71%, .6)
}

.bg-red-400\/70 {
    background-color: hsla(0, 91%, 71%, .7)
}

.bg-red-400\/75 {
    background-color: hsla(0, 91%, 71%, .75)
}

.bg-red-400\/80 {
    background-color: hsla(0, 91%, 71%, .8)
}

.bg-red-400\/90 {
    background-color: hsla(0, 91%, 71%, .9)
}

.bg-red-400\/95 {
    background-color: hsla(0, 91%, 71%, .95)
}

.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68/var(--tw-bg-opacity))
}

.bg-red-500\/0 {
    background-color: rgba(239, 68, 68, 0)
}

.bg-red-500\/10 {
    background-color: rgba(239, 68, 68, .1)
}

.bg-red-500\/100 {
    background-color: #ef4444
}

.bg-red-500\/20 {
    background-color: rgba(239, 68, 68, .2)
}

.bg-red-500\/25 {
    background-color: rgba(239, 68, 68, .25)
}

.bg-red-500\/30 {
    background-color: rgba(239, 68, 68, .3)
}

.bg-red-500\/40 {
    background-color: rgba(239, 68, 68, .4)
}

.bg-red-500\/5 {
    background-color: rgba(239, 68, 68, .05)
}

.bg-red-500\/50 {
    background-color: rgba(239, 68, 68, .5)
}

.bg-red-500\/60 {
    background-color: rgba(239, 68, 68, .6)
}

.bg-red-500\/70 {
    background-color: rgba(239, 68, 68, .7)
}

.bg-red-500\/75 {
    background-color: rgba(239, 68, 68, .75)
}

.bg-red-500\/80 {
    background-color: rgba(239, 68, 68, .8)
}

.bg-red-500\/90 {
    background-color: rgba(239, 68, 68, .9)
}

.bg-red-500\/95 {
    background-color: rgba(239, 68, 68, .95)
}

.bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38/var(--tw-bg-opacity))
}

.bg-red-600\/0 {
    background-color: rgba(220, 38, 38, 0)
}

.bg-red-600\/10 {
    background-color: rgba(220, 38, 38, .1)
}

.bg-red-600\/100 {
    background-color: #dc2626
}

.bg-red-600\/20 {
    background-color: rgba(220, 38, 38, .2)
}

.bg-red-600\/25 {
    background-color: rgba(220, 38, 38, .25)
}

.bg-red-600\/30 {
    background-color: rgba(220, 38, 38, .3)
}

.bg-red-600\/40 {
    background-color: rgba(220, 38, 38, .4)
}

.bg-red-600\/5 {
    background-color: rgba(220, 38, 38, .05)
}

.bg-red-600\/50 {
    background-color: rgba(220, 38, 38, .5)
}

.bg-red-600\/60 {
    background-color: rgba(220, 38, 38, .6)
}

.bg-red-600\/70 {
    background-color: rgba(220, 38, 38, .7)
}

.bg-red-600\/75 {
    background-color: rgba(220, 38, 38, .75)
}

.bg-red-600\/80 {
    background-color: rgba(220, 38, 38, .8)
}

.bg-red-600\/90 {
    background-color: rgba(220, 38, 38, .9)
}

.bg-red-600\/95 {
    background-color: rgba(220, 38, 38, .95)
}

.bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28/var(--tw-bg-opacity))
}

.bg-red-700\/0 {
    background-color: rgba(185, 28, 28, 0)
}

.bg-red-700\/10 {
    background-color: rgba(185, 28, 28, .1)
}

.bg-red-700\/100 {
    background-color: #b91c1c
}

.bg-red-700\/20 {
    background-color: rgba(185, 28, 28, .2)
}

.bg-red-700\/25 {
    background-color: rgba(185, 28, 28, .25)
}

.bg-red-700\/30 {
    background-color: rgba(185, 28, 28, .3)
}

.bg-red-700\/40 {
    background-color: rgba(185, 28, 28, .4)
}

.bg-red-700\/5 {
    background-color: rgba(185, 28, 28, .05)
}

.bg-red-700\/50 {
    background-color: rgba(185, 28, 28, .5)
}

.bg-red-700\/60 {
    background-color: rgba(185, 28, 28, .6)
}

.bg-red-700\/70 {
    background-color: rgba(185, 28, 28, .7)
}

.bg-red-700\/75 {
    background-color: rgba(185, 28, 28, .75)
}

.bg-red-700\/80 {
    background-color: rgba(185, 28, 28, .8)
}

.bg-red-700\/90 {
    background-color: rgba(185, 28, 28, .9)
}

.bg-red-700\/95 {
    background-color: rgba(185, 28, 28, .95)
}

.bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27/var(--tw-bg-opacity))
}

.bg-red-800\/0 {
    background-color: rgba(153, 27, 27, 0)
}

.bg-red-800\/10 {
    background-color: rgba(153, 27, 27, .1)
}

.bg-red-800\/100 {
    background-color: #991b1b
}

.bg-red-800\/20 {
    background-color: rgba(153, 27, 27, .2)
}

.bg-red-800\/25 {
    background-color: rgba(153, 27, 27, .25)
}

.bg-red-800\/30 {
    background-color: rgba(153, 27, 27, .3)
}

.bg-red-800\/40 {
    background-color: rgba(153, 27, 27, .4)
}

.bg-red-800\/5 {
    background-color: rgba(153, 27, 27, .05)
}

.bg-red-800\/50 {
    background-color: rgba(153, 27, 27, .5)
}

.bg-red-800\/60 {
    background-color: rgba(153, 27, 27, .6)
}

.bg-red-800\/70 {
    background-color: rgba(153, 27, 27, .7)
}

.bg-red-800\/75 {
    background-color: rgba(153, 27, 27, .75)
}

.bg-red-800\/80 {
    background-color: rgba(153, 27, 27, .8)
}

.bg-red-800\/90 {
    background-color: rgba(153, 27, 27, .9)
}

.bg-red-800\/95 {
    background-color: rgba(153, 27, 27, .95)
}

.bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249/var(--tw-bg-opacity))
}

.bg-slate-100\/0 {
    background-color: rgba(241, 245, 249, 0)
}

.bg-slate-100\/10 {
    background-color: rgba(241, 245, 249, .1)
}

.bg-slate-100\/100 {
    background-color: #f1f5f9
}

.bg-slate-100\/20 {
    background-color: rgba(241, 245, 249, .2)
}

.bg-slate-100\/25 {
    background-color: rgba(241, 245, 249, .25)
}

.bg-slate-100\/30 {
    background-color: rgba(241, 245, 249, .3)
}

.bg-slate-100\/40 {
    background-color: rgba(241, 245, 249, .4)
}

.bg-slate-100\/5 {
    background-color: rgba(241, 245, 249, .05)
}

.bg-slate-100\/50 {
    background-color: rgba(241, 245, 249, .5)
}

.bg-slate-100\/60 {
    background-color: rgba(241, 245, 249, .6)
}

.bg-slate-100\/70 {
    background-color: rgba(241, 245, 249, .7)
}

.bg-slate-100\/75 {
    background-color: rgba(241, 245, 249, .75)
}

.bg-slate-100\/80 {
    background-color: rgba(241, 245, 249, .8)
}

.bg-slate-100\/90 {
    background-color: rgba(241, 245, 249, .9)
}

.bg-slate-100\/95 {
    background-color: rgba(241, 245, 249, .95)
}

.bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240/var(--tw-bg-opacity))
}

.bg-slate-200\/0 {
    background-color: rgba(226, 232, 240, 0)
}

.bg-slate-200\/10 {
    background-color: rgba(226, 232, 240, .1)
}

.bg-slate-200\/100 {
    background-color: #e2e8f0
}

.bg-slate-200\/20 {
    background-color: rgba(226, 232, 240, .2)
}

.bg-slate-200\/25 {
    background-color: rgba(226, 232, 240, .25)
}

.bg-slate-200\/30 {
    background-color: rgba(226, 232, 240, .3)
}

.bg-slate-200\/40 {
    background-color: rgba(226, 232, 240, .4)
}

.bg-slate-200\/5 {
    background-color: rgba(226, 232, 240, .05)
}

.bg-slate-200\/50 {
    background-color: rgba(226, 232, 240, .5)
}

.bg-slate-200\/60 {
    background-color: rgba(226, 232, 240, .6)
}

.bg-slate-200\/70 {
    background-color: rgba(226, 232, 240, .7)
}

.bg-slate-200\/75 {
    background-color: rgba(226, 232, 240, .75)
}

.bg-slate-200\/80 {
    background-color: rgba(226, 232, 240, .8)
}

.bg-slate-200\/90 {
    background-color: rgba(226, 232, 240, .9)
}

.bg-slate-200\/95 {
    background-color: rgba(226, 232, 240, .95)
}

.bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225/var(--tw-bg-opacity))
}

.bg-slate-300\/0 {
    background-color: rgba(203, 213, 225, 0)
}

.bg-slate-300\/10 {
    background-color: rgba(203, 213, 225, .1)
}

.bg-slate-300\/100 {
    background-color: #cbd5e1
}

.bg-slate-300\/20 {
    background-color: rgba(203, 213, 225, .2)
}

.bg-slate-300\/25 {
    background-color: rgba(203, 213, 225, .25)
}

.bg-slate-300\/30 {
    background-color: rgba(203, 213, 225, .3)
}

.bg-slate-300\/40 {
    background-color: rgba(203, 213, 225, .4)
}

.bg-slate-300\/5 {
    background-color: rgba(203, 213, 225, .05)
}

.bg-slate-300\/50 {
    background-color: rgba(203, 213, 225, .5)
}

.bg-slate-300\/60 {
    background-color: rgba(203, 213, 225, .6)
}

.bg-slate-300\/70 {
    background-color: rgba(203, 213, 225, .7)
}

.bg-slate-300\/75 {
    background-color: rgba(203, 213, 225, .75)
}

.bg-slate-300\/80 {
    background-color: rgba(203, 213, 225, .8)
}

.bg-slate-300\/90 {
    background-color: rgba(203, 213, 225, .9)
}

.bg-slate-300\/95 {
    background-color: rgba(203, 213, 225, .95)
}

.bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184/var(--tw-bg-opacity))
}

.bg-slate-400\/0 {
    background-color: rgba(148, 163, 184, 0)
}

.bg-slate-400\/10 {
    background-color: rgba(148, 163, 184, .1)
}

.bg-slate-400\/100 {
    background-color: #94a3b8
}

.bg-slate-400\/20 {
    background-color: rgba(148, 163, 184, .2)
}

.bg-slate-400\/25 {
    background-color: rgba(148, 163, 184, .25)
}

.bg-slate-400\/30 {
    background-color: rgba(148, 163, 184, .3)
}

.bg-slate-400\/40 {
    background-color: rgba(148, 163, 184, .4)
}

.bg-slate-400\/5 {
    background-color: rgba(148, 163, 184, .05)
}

.bg-slate-400\/50 {
    background-color: rgba(148, 163, 184, .5)
}

.bg-slate-400\/60 {
    background-color: rgba(148, 163, 184, .6)
}

.bg-slate-400\/70 {
    background-color: rgba(148, 163, 184, .7)
}

.bg-slate-400\/75 {
    background-color: rgba(148, 163, 184, .75)
}

.bg-slate-400\/80 {
    background-color: rgba(148, 163, 184, .8)
}

.bg-slate-400\/90 {
    background-color: rgba(148, 163, 184, .9)
}

.bg-slate-400\/95 {
    background-color: rgba(148, 163, 184, .95)
}

.bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139/var(--tw-bg-opacity))
}

.bg-slate-500\/0 {
    background-color: rgba(100, 116, 139, 0)
}

.bg-slate-500\/10 {
    background-color: rgba(100, 116, 139, .1)
}

.bg-slate-500\/100 {
    background-color: #64748b
}

.bg-slate-500\/20 {
    background-color: rgba(100, 116, 139, .2)
}

.bg-slate-500\/25 {
    background-color: rgba(100, 116, 139, .25)
}

.bg-slate-500\/30 {
    background-color: rgba(100, 116, 139, .3)
}

.bg-slate-500\/40 {
    background-color: rgba(100, 116, 139, .4)
}

.bg-slate-500\/5 {
    background-color: rgba(100, 116, 139, .05)
}

.bg-slate-500\/50 {
    background-color: rgba(100, 116, 139, .5)
}

.bg-slate-500\/60 {
    background-color: rgba(100, 116, 139, .6)
}

.bg-slate-500\/70 {
    background-color: rgba(100, 116, 139, .7)
}

.bg-slate-500\/75 {
    background-color: rgba(100, 116, 139, .75)
}

.bg-slate-500\/80 {
    background-color: rgba(100, 116, 139, .8)
}

.bg-slate-500\/90 {
    background-color: rgba(100, 116, 139, .9)
}

.bg-slate-500\/95 {
    background-color: rgba(100, 116, 139, .95)
}

.bg-slate-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(71 85 105/var(--tw-bg-opacity))
}

.bg-slate-600\/0 {
    background-color: rgba(71, 85, 105, 0)
}

.bg-slate-600\/10 {
    background-color: rgba(71, 85, 105, .1)
}

.bg-slate-600\/100 {
    background-color: #475569
}

.bg-slate-600\/20 {
    background-color: rgba(71, 85, 105, .2)
}

.bg-slate-600\/25 {
    background-color: rgba(71, 85, 105, .25)
}

.bg-slate-600\/30 {
    background-color: rgba(71, 85, 105, .3)
}

.bg-slate-600\/40 {
    background-color: rgba(71, 85, 105, .4)
}

.bg-slate-600\/5 {
    background-color: rgba(71, 85, 105, .05)
}

.bg-slate-600\/50 {
    background-color: rgba(71, 85, 105, .5)
}

.bg-slate-600\/60 {
    background-color: rgba(71, 85, 105, .6)
}

.bg-slate-600\/70 {
    background-color: rgba(71, 85, 105, .7)
}

.bg-slate-600\/75 {
    background-color: rgba(71, 85, 105, .75)
}

.bg-slate-600\/80 {
    background-color: rgba(71, 85, 105, .8)
}

.bg-slate-600\/90 {
    background-color: rgba(71, 85, 105, .9)
}

.bg-slate-600\/95 {
    background-color: rgba(71, 85, 105, .95)
}

.bg-slate-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(51 65 85/var(--tw-bg-opacity))
}

.bg-slate-700\/0 {
    background-color: rgba(51, 65, 85, 0)
}

.bg-slate-700\/10 {
    background-color: rgba(51, 65, 85, .1)
}

.bg-slate-700\/100 {
    background-color: #334155
}

.bg-slate-700\/20 {
    background-color: rgba(51, 65, 85, .2)
}

.bg-slate-700\/25 {
    background-color: rgba(51, 65, 85, .25)
}

.bg-slate-700\/30 {
    background-color: rgba(51, 65, 85, .3)
}

.bg-slate-700\/40 {
    background-color: rgba(51, 65, 85, .4)
}

.bg-slate-700\/5 {
    background-color: rgba(51, 65, 85, .05)
}

.bg-slate-700\/50 {
    background-color: rgba(51, 65, 85, .5)
}

.bg-slate-700\/60 {
    background-color: rgba(51, 65, 85, .6)
}

.bg-slate-700\/70 {
    background-color: rgba(51, 65, 85, .7)
}

.bg-slate-700\/75 {
    background-color: rgba(51, 65, 85, .75)
}

.bg-slate-700\/80 {
    background-color: rgba(51, 65, 85, .8)
}

.bg-slate-700\/90 {
    background-color: rgba(51, 65, 85, .9)
}

.bg-slate-700\/95 {
    background-color: rgba(51, 65, 85, .95)
}

.bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59/var(--tw-bg-opacity))
}

.bg-slate-800\/0 {
    background-color: rgba(30, 41, 59, 0)
}

.bg-slate-800\/10 {
    background-color: rgba(30, 41, 59, .1)
}

.bg-slate-800\/100 {
    background-color: #1e293b
}

.bg-slate-800\/20 {
    background-color: rgba(30, 41, 59, .2)
}

.bg-slate-800\/25 {
    background-color: rgba(30, 41, 59, .25)
}

.bg-slate-800\/30 {
    background-color: rgba(30, 41, 59, .3)
}

.bg-slate-800\/40 {
    background-color: rgba(30, 41, 59, .4)
}

.bg-slate-800\/5 {
    background-color: rgba(30, 41, 59, .05)
}

.bg-slate-800\/50 {
    background-color: rgba(30, 41, 59, .5)
}

.bg-slate-800\/60 {
    background-color: rgba(30, 41, 59, .6)
}

.bg-slate-800\/70 {
    background-color: rgba(30, 41, 59, .7)
}

.bg-slate-800\/75 {
    background-color: rgba(30, 41, 59, .75)
}

.bg-slate-800\/80 {
    background-color: rgba(30, 41, 59, .8)
}

.bg-slate-800\/90 {
    background-color: rgba(30, 41, 59, .9)
}

.bg-slate-800\/95 {
    background-color: rgba(30, 41, 59, .95)
}

.bg-transparent {
    background-color: transparent
}

.bg-violet-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(237 233 254/var(--tw-bg-opacity))
}

.bg-violet-100\/0 {
    background-color: rgba(237, 233, 254, 0)
}

.bg-violet-100\/10 {
    background-color: rgba(237, 233, 254, .1)
}

.bg-violet-100\/100 {
    background-color: #ede9fe
}

.bg-violet-100\/20 {
    background-color: rgba(237, 233, 254, .2)
}

.bg-violet-100\/25 {
    background-color: rgba(237, 233, 254, .25)
}

.bg-violet-100\/30 {
    background-color: rgba(237, 233, 254, .3)
}

.bg-violet-100\/40 {
    background-color: rgba(237, 233, 254, .4)
}

.bg-violet-100\/5 {
    background-color: rgba(237, 233, 254, .05)
}

.bg-violet-100\/50 {
    background-color: rgba(237, 233, 254, .5)
}

.bg-violet-100\/60 {
    background-color: rgba(237, 233, 254, .6)
}

.bg-violet-100\/70 {
    background-color: rgba(237, 233, 254, .7)
}

.bg-violet-100\/75 {
    background-color: rgba(237, 233, 254, .75)
}

.bg-violet-100\/80 {
    background-color: rgba(237, 233, 254, .8)
}

.bg-violet-100\/90 {
    background-color: rgba(237, 233, 254, .9)
}

.bg-violet-100\/95 {
    background-color: rgba(237, 233, 254, .95)
}

.bg-violet-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(221 214 254/var(--tw-bg-opacity))
}

.bg-violet-200\/0 {
    background-color: rgba(221, 214, 254, 0)
}

.bg-violet-200\/10 {
    background-color: rgba(221, 214, 254, .1)
}

.bg-violet-200\/100 {
    background-color: #ddd6fe
}

.bg-violet-200\/20 {
    background-color: rgba(221, 214, 254, .2)
}

.bg-violet-200\/25 {
    background-color: rgba(221, 214, 254, .25)
}

.bg-violet-200\/30 {
    background-color: rgba(221, 214, 254, .3)
}

.bg-violet-200\/40 {
    background-color: rgba(221, 214, 254, .4)
}

.bg-violet-200\/5 {
    background-color: rgba(221, 214, 254, .05)
}

.bg-violet-200\/50 {
    background-color: rgba(221, 214, 254, .5)
}

.bg-violet-200\/60 {
    background-color: rgba(221, 214, 254, .6)
}

.bg-violet-200\/70 {
    background-color: rgba(221, 214, 254, .7)
}

.bg-violet-200\/75 {
    background-color: rgba(221, 214, 254, .75)
}

.bg-violet-200\/80 {
    background-color: rgba(221, 214, 254, .8)
}

.bg-violet-200\/90 {
    background-color: rgba(221, 214, 254, .9)
}

.bg-violet-200\/95 {
    background-color: rgba(221, 214, 254, .95)
}

.bg-violet-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(196 181 253/var(--tw-bg-opacity))
}

.bg-violet-300\/0 {
    background-color: rgba(196, 181, 253, 0)
}

.bg-violet-300\/10 {
    background-color: rgba(196, 181, 253, .1)
}

.bg-violet-300\/100 {
    background-color: #c4b5fd
}

.bg-violet-300\/20 {
    background-color: rgba(196, 181, 253, .2)
}

.bg-violet-300\/25 {
    background-color: rgba(196, 181, 253, .25)
}

.bg-violet-300\/30 {
    background-color: rgba(196, 181, 253, .3)
}

.bg-violet-300\/40 {
    background-color: rgba(196, 181, 253, .4)
}

.bg-violet-300\/5 {
    background-color: rgba(196, 181, 253, .05)
}

.bg-violet-300\/50 {
    background-color: rgba(196, 181, 253, .5)
}

.bg-violet-300\/60 {
    background-color: rgba(196, 181, 253, .6)
}

.bg-violet-300\/70 {
    background-color: rgba(196, 181, 253, .7)
}

.bg-violet-300\/75 {
    background-color: rgba(196, 181, 253, .75)
}

.bg-violet-300\/80 {
    background-color: rgba(196, 181, 253, .8)
}

.bg-violet-300\/90 {
    background-color: rgba(196, 181, 253, .9)
}

.bg-violet-300\/95 {
    background-color: rgba(196, 181, 253, .95)
}

.bg-violet-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 139 250/var(--tw-bg-opacity))
}

.bg-violet-400\/0 {
    background-color: rgba(167, 139, 250, 0)
}

.bg-violet-400\/10 {
    background-color: rgba(167, 139, 250, .1)
}

.bg-violet-400\/100 {
    background-color: #a78bfa
}

.bg-violet-400\/20 {
    background-color: rgba(167, 139, 250, .2)
}

.bg-violet-400\/25 {
    background-color: rgba(167, 139, 250, .25)
}

.bg-violet-400\/30 {
    background-color: rgba(167, 139, 250, .3)
}

.bg-violet-400\/40 {
    background-color: rgba(167, 139, 250, .4)
}

.bg-violet-400\/5 {
    background-color: rgba(167, 139, 250, .05)
}

.bg-violet-400\/50 {
    background-color: rgba(167, 139, 250, .5)
}

.bg-violet-400\/60 {
    background-color: rgba(167, 139, 250, .6)
}

.bg-violet-400\/70 {
    background-color: rgba(167, 139, 250, .7)
}

.bg-violet-400\/75 {
    background-color: rgba(167, 139, 250, .75)
}

.bg-violet-400\/80 {
    background-color: rgba(167, 139, 250, .8)
}

.bg-violet-400\/90 {
    background-color: rgba(167, 139, 250, .9)
}

.bg-violet-400\/95 {
    background-color: rgba(167, 139, 250, .95)
}

.bg-violet-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246/var(--tw-bg-opacity))
}

.bg-violet-500\/0 {
    background-color: rgba(139, 92, 246, 0)
}

.bg-violet-500\/10 {
    background-color: rgba(139, 92, 246, .1)
}

.bg-violet-500\/100 {
    background-color: #8b5cf6
}

.bg-violet-500\/20 {
    background-color: rgba(139, 92, 246, .2)
}

.bg-violet-500\/25 {
    background-color: rgba(139, 92, 246, .25)
}

.bg-violet-500\/30 {
    background-color: rgba(139, 92, 246, .3)
}

.bg-violet-500\/40 {
    background-color: rgba(139, 92, 246, .4)
}

.bg-violet-500\/5 {
    background-color: rgba(139, 92, 246, .05)
}

.bg-violet-500\/50 {
    background-color: rgba(139, 92, 246, .5)
}

.bg-violet-500\/60 {
    background-color: rgba(139, 92, 246, .6)
}

.bg-violet-500\/70 {
    background-color: rgba(139, 92, 246, .7)
}

.bg-violet-500\/75 {
    background-color: rgba(139, 92, 246, .75)
}

.bg-violet-500\/80 {
    background-color: rgba(139, 92, 246, .8)
}

.bg-violet-500\/90 {
    background-color: rgba(139, 92, 246, .9)
}

.bg-violet-500\/95 {
    background-color: rgba(139, 92, 246, .95)
}

.bg-violet-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 58 237/var(--tw-bg-opacity))
}

.bg-violet-600\/0 {
    background-color: rgba(124, 58, 237, 0)
}

.bg-violet-600\/10 {
    background-color: rgba(124, 58, 237, .1)
}

.bg-violet-600\/100 {
    background-color: #7c3aed
}

.bg-violet-600\/20 {
    background-color: rgba(124, 58, 237, .2)
}

.bg-violet-600\/25 {
    background-color: rgba(124, 58, 237, .25)
}

.bg-violet-600\/30 {
    background-color: rgba(124, 58, 237, .3)
}

.bg-violet-600\/40 {
    background-color: rgba(124, 58, 237, .4)
}

.bg-violet-600\/5 {
    background-color: rgba(124, 58, 237, .05)
}

.bg-violet-600\/50 {
    background-color: rgba(124, 58, 237, .5)
}

.bg-violet-600\/60 {
    background-color: rgba(124, 58, 237, .6)
}

.bg-violet-600\/70 {
    background-color: rgba(124, 58, 237, .7)
}

.bg-violet-600\/75 {
    background-color: rgba(124, 58, 237, .75)
}

.bg-violet-600\/80 {
    background-color: rgba(124, 58, 237, .8)
}

.bg-violet-600\/90 {
    background-color: rgba(124, 58, 237, .9)
}

.bg-violet-600\/95 {
    background-color: rgba(124, 58, 237, .95)
}

.bg-violet-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(109 40 217/var(--tw-bg-opacity))
}

.bg-violet-700\/0 {
    background-color: rgba(109, 40, 217, 0)
}

.bg-violet-700\/10 {
    background-color: rgba(109, 40, 217, .1)
}

.bg-violet-700\/100 {
    background-color: #6d28d9
}

.bg-violet-700\/20 {
    background-color: rgba(109, 40, 217, .2)
}

.bg-violet-700\/25 {
    background-color: rgba(109, 40, 217, .25)
}

.bg-violet-700\/30 {
    background-color: rgba(109, 40, 217, .3)
}

.bg-violet-700\/40 {
    background-color: rgba(109, 40, 217, .4)
}

.bg-violet-700\/5 {
    background-color: rgba(109, 40, 217, .05)
}

.bg-violet-700\/50 {
    background-color: rgba(109, 40, 217, .5)
}

.bg-violet-700\/60 {
    background-color: rgba(109, 40, 217, .6)
}

.bg-violet-700\/70 {
    background-color: rgba(109, 40, 217, .7)
}

.bg-violet-700\/75 {
    background-color: rgba(109, 40, 217, .75)
}

.bg-violet-700\/80 {
    background-color: rgba(109, 40, 217, .8)
}

.bg-violet-700\/90 {
    background-color: rgba(109, 40, 217, .9)
}

.bg-violet-700\/95 {
    background-color: rgba(109, 40, 217, .95)
}

.bg-violet-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(91 33 182/var(--tw-bg-opacity))
}

.bg-violet-800\/0 {
    background-color: rgba(91, 33, 182, 0)
}

.bg-violet-800\/10 {
    background-color: rgba(91, 33, 182, .1)
}

.bg-violet-800\/100 {
    background-color: #5b21b6
}

.bg-violet-800\/20 {
    background-color: rgba(91, 33, 182, .2)
}

.bg-violet-800\/25 {
    background-color: rgba(91, 33, 182, .25)
}

.bg-violet-800\/30 {
    background-color: rgba(91, 33, 182, .3)
}

.bg-violet-800\/40 {
    background-color: rgba(91, 33, 182, .4)
}

.bg-violet-800\/5 {
    background-color: rgba(91, 33, 182, .05)
}

.bg-violet-800\/50 {
    background-color: rgba(91, 33, 182, .5)
}

.bg-violet-800\/60 {
    background-color: rgba(91, 33, 182, .6)
}

.bg-violet-800\/70 {
    background-color: rgba(91, 33, 182, .7)
}

.bg-violet-800\/75 {
    background-color: rgba(91, 33, 182, .75)
}

.bg-violet-800\/80 {
    background-color: rgba(91, 33, 182, .8)
}

.bg-violet-800\/90 {
    background-color: rgba(91, 33, 182, .9)
}

.bg-violet-800\/95 {
    background-color: rgba(91, 33, 182, .95)
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-white\/10 {
    background-color: hsla(0, 0%, 100%, .1)
}

.bg-white\/20 {
    background-color: hsla(0, 0%, 100%, .2)
}

.bg-white\/30 {
    background-color: hsla(0, 0%, 100%, .3)
}

.bg-white\/5 {
    background-color: hsla(0, 0%, 100%, .05)
}

.bg-white\/60 {
    background-color: hsla(0, 0%, 100%, .6)
}

.bg-white\/90 {
    background-color: hsla(0, 0%, 100%, .9)
}

.bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195/var(--tw-bg-opacity))
}

.bg-yellow-100\/0 {
    background-color: hsla(55, 97%, 88%, 0)
}

.bg-yellow-100\/10 {
    background-color: hsla(55, 97%, 88%, .1)
}

.bg-yellow-100\/100 {
    background-color: #fef9c3
}

.bg-yellow-100\/20 {
    background-color: hsla(55, 97%, 88%, .2)
}

.bg-yellow-100\/25 {
    background-color: hsla(55, 97%, 88%, .25)
}

.bg-yellow-100\/30 {
    background-color: hsla(55, 97%, 88%, .3)
}

.bg-yellow-100\/40 {
    background-color: hsla(55, 97%, 88%, .4)
}

.bg-yellow-100\/5 {
    background-color: hsla(55, 97%, 88%, .05)
}

.bg-yellow-100\/50 {
    background-color: hsla(55, 97%, 88%, .5)
}

.bg-yellow-100\/60 {
    background-color: hsla(55, 97%, 88%, .6)
}

.bg-yellow-100\/70 {
    background-color: hsla(55, 97%, 88%, .7)
}

.bg-yellow-100\/75 {
    background-color: hsla(55, 97%, 88%, .75)
}

.bg-yellow-100\/80 {
    background-color: hsla(55, 97%, 88%, .8)
}

.bg-yellow-100\/90 {
    background-color: hsla(55, 97%, 88%, .9)
}

.bg-yellow-100\/95 {
    background-color: hsla(55, 97%, 88%, .95)
}

.bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138/var(--tw-bg-opacity))
}

.bg-yellow-200\/0 {
    background-color: hsla(53, 98%, 77%, 0)
}

.bg-yellow-200\/10 {
    background-color: hsla(53, 98%, 77%, .1)
}

.bg-yellow-200\/100 {
    background-color: #fef08a
}

.bg-yellow-200\/20 {
    background-color: hsla(53, 98%, 77%, .2)
}

.bg-yellow-200\/25 {
    background-color: hsla(53, 98%, 77%, .25)
}

.bg-yellow-200\/30 {
    background-color: hsla(53, 98%, 77%, .3)
}

.bg-yellow-200\/40 {
    background-color: hsla(53, 98%, 77%, .4)
}

.bg-yellow-200\/5 {
    background-color: hsla(53, 98%, 77%, .05)
}

.bg-yellow-200\/50 {
    background-color: hsla(53, 98%, 77%, .5)
}

.bg-yellow-200\/60 {
    background-color: hsla(53, 98%, 77%, .6)
}

.bg-yellow-200\/70 {
    background-color: hsla(53, 98%, 77%, .7)
}

.bg-yellow-200\/75 {
    background-color: hsla(53, 98%, 77%, .75)
}

.bg-yellow-200\/80 {
    background-color: hsla(53, 98%, 77%, .8)
}

.bg-yellow-200\/90 {
    background-color: hsla(53, 98%, 77%, .9)
}

.bg-yellow-200\/95 {
    background-color: hsla(53, 98%, 77%, .95)
}

.bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71/var(--tw-bg-opacity))
}

.bg-yellow-300\/0 {
    background-color: rgba(253, 224, 71, 0)
}

.bg-yellow-300\/10 {
    background-color: rgba(253, 224, 71, .1)
}

.bg-yellow-300\/100 {
    background-color: #fde047
}

.bg-yellow-300\/20 {
    background-color: rgba(253, 224, 71, .2)
}

.bg-yellow-300\/25 {
    background-color: rgba(253, 224, 71, .25)
}

.bg-yellow-300\/30 {
    background-color: rgba(253, 224, 71, .3)
}

.bg-yellow-300\/40 {
    background-color: rgba(253, 224, 71, .4)
}

.bg-yellow-300\/5 {
    background-color: rgba(253, 224, 71, .05)
}

.bg-yellow-300\/50 {
    background-color: rgba(253, 224, 71, .5)
}

.bg-yellow-300\/60 {
    background-color: rgba(253, 224, 71, .6)
}

.bg-yellow-300\/70 {
    background-color: rgba(253, 224, 71, .7)
}

.bg-yellow-300\/75 {
    background-color: rgba(253, 224, 71, .75)
}

.bg-yellow-300\/80 {
    background-color: rgba(253, 224, 71, .8)
}

.bg-yellow-300\/90 {
    background-color: rgba(253, 224, 71, .9)
}

.bg-yellow-300\/95 {
    background-color: rgba(253, 224, 71, .95)
}

.bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21/var(--tw-bg-opacity))
}

.bg-yellow-400\/0 {
    background-color: rgba(250, 204, 21, 0)
}

.bg-yellow-400\/10 {
    background-color: rgba(250, 204, 21, .1)
}

.bg-yellow-400\/100 {
    background-color: #facc15
}

.bg-yellow-400\/20 {
    background-color: rgba(250, 204, 21, .2)
}

.bg-yellow-400\/25 {
    background-color: rgba(250, 204, 21, .25)
}

.bg-yellow-400\/30 {
    background-color: rgba(250, 204, 21, .3)
}

.bg-yellow-400\/40 {
    background-color: rgba(250, 204, 21, .4)
}

.bg-yellow-400\/5 {
    background-color: rgba(250, 204, 21, .05)
}

.bg-yellow-400\/50 {
    background-color: rgba(250, 204, 21, .5)
}

.bg-yellow-400\/60 {
    background-color: rgba(250, 204, 21, .6)
}

.bg-yellow-400\/70 {
    background-color: rgba(250, 204, 21, .7)
}

.bg-yellow-400\/75 {
    background-color: rgba(250, 204, 21, .75)
}

.bg-yellow-400\/80 {
    background-color: rgba(250, 204, 21, .8)
}

.bg-yellow-400\/90 {
    background-color: rgba(250, 204, 21, .9)
}

.bg-yellow-400\/95 {
    background-color: rgba(250, 204, 21, .95)
}

.bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8/var(--tw-bg-opacity))
}

.bg-yellow-500\/0 {
    background-color: rgba(234, 179, 8, 0)
}

.bg-yellow-500\/10 {
    background-color: rgba(234, 179, 8, .1)
}

.bg-yellow-500\/100 {
    background-color: #eab308
}

.bg-yellow-500\/20 {
    background-color: rgba(234, 179, 8, .2)
}

.bg-yellow-500\/25 {
    background-color: rgba(234, 179, 8, .25)
}

.bg-yellow-500\/30 {
    background-color: rgba(234, 179, 8, .3)
}

.bg-yellow-500\/40 {
    background-color: rgba(234, 179, 8, .4)
}

.bg-yellow-500\/5 {
    background-color: rgba(234, 179, 8, .05)
}

.bg-yellow-500\/50 {
    background-color: rgba(234, 179, 8, .5)
}

.bg-yellow-500\/60 {
    background-color: rgba(234, 179, 8, .6)
}

.bg-yellow-500\/70 {
    background-color: rgba(234, 179, 8, .7)
}

.bg-yellow-500\/75 {
    background-color: rgba(234, 179, 8, .75)
}

.bg-yellow-500\/80 {
    background-color: rgba(234, 179, 8, .8)
}

.bg-yellow-500\/90 {
    background-color: rgba(234, 179, 8, .9)
}

.bg-yellow-500\/95 {
    background-color: rgba(234, 179, 8, .95)
}

.bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4/var(--tw-bg-opacity))
}

.bg-yellow-600\/0 {
    background-color: rgba(202, 138, 4, 0)
}

.bg-yellow-600\/10 {
    background-color: rgba(202, 138, 4, .1)
}

.bg-yellow-600\/100 {
    background-color: #ca8a04
}

.bg-yellow-600\/20 {
    background-color: rgba(202, 138, 4, .2)
}

.bg-yellow-600\/25 {
    background-color: rgba(202, 138, 4, .25)
}

.bg-yellow-600\/30 {
    background-color: rgba(202, 138, 4, .3)
}

.bg-yellow-600\/40 {
    background-color: rgba(202, 138, 4, .4)
}

.bg-yellow-600\/5 {
    background-color: rgba(202, 138, 4, .05)
}

.bg-yellow-600\/50 {
    background-color: rgba(202, 138, 4, .5)
}

.bg-yellow-600\/60 {
    background-color: rgba(202, 138, 4, .6)
}

.bg-yellow-600\/70 {
    background-color: rgba(202, 138, 4, .7)
}

.bg-yellow-600\/75 {
    background-color: rgba(202, 138, 4, .75)
}

.bg-yellow-600\/80 {
    background-color: rgba(202, 138, 4, .8)
}

.bg-yellow-600\/90 {
    background-color: rgba(202, 138, 4, .9)
}

.bg-yellow-600\/95 {
    background-color: rgba(202, 138, 4, .95)
}

.bg-yellow-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(161 98 7/var(--tw-bg-opacity))
}

.bg-yellow-700\/0 {
    background-color: rgba(161, 98, 7, 0)
}

.bg-yellow-700\/10 {
    background-color: rgba(161, 98, 7, .1)
}

.bg-yellow-700\/100 {
    background-color: #a16207
}

.bg-yellow-700\/20 {
    background-color: rgba(161, 98, 7, .2)
}

.bg-yellow-700\/25 {
    background-color: rgba(161, 98, 7, .25)
}

.bg-yellow-700\/30 {
    background-color: rgba(161, 98, 7, .3)
}

.bg-yellow-700\/40 {
    background-color: rgba(161, 98, 7, .4)
}

.bg-yellow-700\/5 {
    background-color: rgba(161, 98, 7, .05)
}

.bg-yellow-700\/50 {
    background-color: rgba(161, 98, 7, .5)
}

.bg-yellow-700\/60 {
    background-color: rgba(161, 98, 7, .6)
}

.bg-yellow-700\/70 {
    background-color: rgba(161, 98, 7, .7)
}

.bg-yellow-700\/75 {
    background-color: rgba(161, 98, 7, .75)
}

.bg-yellow-700\/80 {
    background-color: rgba(161, 98, 7, .8)
}

.bg-yellow-700\/90 {
    background-color: rgba(161, 98, 7, .9)
}

.bg-yellow-700\/95 {
    background-color: rgba(161, 98, 7, .95)
}

.bg-yellow-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(133 77 14/var(--tw-bg-opacity))
}

.bg-yellow-800\/0 {
    background-color: rgba(133, 77, 14, 0)
}

.bg-yellow-800\/10 {
    background-color: rgba(133, 77, 14, .1)
}

.bg-yellow-800\/100 {
    background-color: #854d0e
}

.bg-yellow-800\/20 {
    background-color: rgba(133, 77, 14, .2)
}

.bg-yellow-800\/25 {
    background-color: rgba(133, 77, 14, .25)
}

.bg-yellow-800\/30 {
    background-color: rgba(133, 77, 14, .3)
}

.bg-yellow-800\/40 {
    background-color: rgba(133, 77, 14, .4)
}

.bg-yellow-800\/5 {
    background-color: rgba(133, 77, 14, .05)
}

.bg-yellow-800\/50 {
    background-color: rgba(133, 77, 14, .5)
}

.bg-yellow-800\/60 {
    background-color: rgba(133, 77, 14, .6)
}

.bg-yellow-800\/70 {
    background-color: rgba(133, 77, 14, .7)
}

.bg-yellow-800\/75 {
    background-color: rgba(133, 77, 14, .75)
}

.bg-yellow-800\/80 {
    background-color: rgba(133, 77, 14, .8)
}

.bg-yellow-800\/90 {
    background-color: rgba(133, 77, 14, .9)
}

.bg-yellow-800\/95 {
    background-color: rgba(133, 77, 14, .95)
}

.bg-\[radial-gradient\(ellipse_at_center\2c _var\(--tw-gradient-stops\)\)\] {
    background-image: radial-gradient(ellipse at center, var(--tw-gradient-stops))
}

.bg-\[url\(data\:image\/svg\+xml\2c \%3Csvg\%20xmlns\%3D\%22http\%3A\%2F\%2Fwww\.w3\.org\%2F2000\%2Fsvg\%22\%20viewBox\%3D\%220\%200\%2072\%2072\%22\%3E\%3Cpath\%20fill\%3D\%22none\%22\%20d\%3D\%22M0\%200h72v72H0z\%22\%2F\%3E\%3Cpath\%20class\%3D\%22icon\%22\%20fill\%3D\%22\%23fff\%22\%20d\%3D\%22M68\.812\%2015\.14c-2\.348\%201\.04-4\.87\%201\.744-7\.52\%202\.06\%202\.704-1\.62\%204\.78-4\.186\%205\.757-7\.243-2\.53\%201\.5-5\.33\%202\.592-8\.314\%203\.176C56\.35\%2010\.59\%2052\.948\%209\%2049\.182\%209c-7\.23\%200-13\.092\%205\.86-13\.092\%2013\.093\%200\%201\.026\.118\%202\.02\.338\%202\.98C25\.543\%2024\.527\%2015\.9\%2019\.318\%209\.44\%2011\.396c-1\.125\%201\.936-1\.77\%204\.184-1\.77\%206\.58\%200\%204\.543\%202\.312\%208\.552\%205\.824\%2010\.9-2\.146-\.07-4\.165-\.658-5\.93-1\.64-\.002\.056-\.002\.11-\.002\.163\%200\%206\.345\%204\.513\%2011\.638\%2010\.504\%2012\.84-1\.1\.298-2\.256\.457-3\.45\.457-\.845\%200-1\.666-\.078-2\.464-\.23\%201\.667\%205\.2\%206\.5\%208\.985\%2012\.23\%209\.09-4\.482\%203\.51-10\.13\%205\.605-16\.26\%205\.605-1\.055\%200-2\.096-\.06-3\.122-\.184\%205\.794\%203\.717\%2012\.676\%205\.882\%2020\.067\%205\.882\%2024\.083\%200\%2037\.25-19\.95\%2037\.25-37\.25\%200-\.565-\.013-1\.133-\.038-1\.693\%202\.558-1\.847\%204\.778-4\.15\%206\.532-6\.774z\%22\%2F\%3E\%3C\%2Fsvg\%3E\)\] {
    background-image: url("")
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops))
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.\!from-blue-100 {
    --tw-gradient-from: #dbeafe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/0 {
    --tw-gradient-from: rgba(219, 234, 254, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/10 {
    --tw-gradient-from: rgba(219, 234, 254, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/100 {
    --tw-gradient-from: #dbeafe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/20 {
    --tw-gradient-from: rgba(219, 234, 254, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/25 {
    --tw-gradient-from: rgba(219, 234, 254, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/30 {
    --tw-gradient-from: rgba(219, 234, 254, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/40 {
    --tw-gradient-from: rgba(219, 234, 254, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/5 {
    --tw-gradient-from: rgba(219, 234, 254, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/50 {
    --tw-gradient-from: rgba(219, 234, 254, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/60 {
    --tw-gradient-from: rgba(219, 234, 254, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/70 {
    --tw-gradient-from: rgba(219, 234, 254, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/75 {
    --tw-gradient-from: rgba(219, 234, 254, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/80 {
    --tw-gradient-from: rgba(219, 234, 254, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/90 {
    --tw-gradient-from: rgba(219, 234, 254, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-100\/95 {
    --tw-gradient-from: rgba(219, 234, 254, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200 {
    --tw-gradient-from: #bfdbfe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/0 {
    --tw-gradient-from: rgba(191, 219, 254, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/10 {
    --tw-gradient-from: rgba(191, 219, 254, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/100 {
    --tw-gradient-from: #bfdbfe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/20 {
    --tw-gradient-from: rgba(191, 219, 254, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/25 {
    --tw-gradient-from: rgba(191, 219, 254, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/30 {
    --tw-gradient-from: rgba(191, 219, 254, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/40 {
    --tw-gradient-from: rgba(191, 219, 254, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/5 {
    --tw-gradient-from: rgba(191, 219, 254, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/50 {
    --tw-gradient-from: rgba(191, 219, 254, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/60 {
    --tw-gradient-from: rgba(191, 219, 254, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/70 {
    --tw-gradient-from: rgba(191, 219, 254, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/75 {
    --tw-gradient-from: rgba(191, 219, 254, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/80 {
    --tw-gradient-from: rgba(191, 219, 254, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/90 {
    --tw-gradient-from: rgba(191, 219, 254, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-200\/95 {
    --tw-gradient-from: rgba(191, 219, 254, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300 {
    --tw-gradient-from: #93c5fd var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/0 {
    --tw-gradient-from: rgba(147, 197, 253, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/10 {
    --tw-gradient-from: rgba(147, 197, 253, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/100 {
    --tw-gradient-from: #93c5fd var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/20 {
    --tw-gradient-from: rgba(147, 197, 253, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/25 {
    --tw-gradient-from: rgba(147, 197, 253, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/30 {
    --tw-gradient-from: rgba(147, 197, 253, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/40 {
    --tw-gradient-from: rgba(147, 197, 253, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/5 {
    --tw-gradient-from: rgba(147, 197, 253, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/50 {
    --tw-gradient-from: rgba(147, 197, 253, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/60 {
    --tw-gradient-from: rgba(147, 197, 253, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/70 {
    --tw-gradient-from: rgba(147, 197, 253, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/75 {
    --tw-gradient-from: rgba(147, 197, 253, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/80 {
    --tw-gradient-from: rgba(147, 197, 253, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/90 {
    --tw-gradient-from: rgba(147, 197, 253, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-300\/95 {
    --tw-gradient-from: rgba(147, 197, 253, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400 {
    --tw-gradient-from: #60a5fa var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/0 {
    --tw-gradient-from: rgba(96, 165, 250, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/10 {
    --tw-gradient-from: rgba(96, 165, 250, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/100 {
    --tw-gradient-from: #60a5fa var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/20 {
    --tw-gradient-from: rgba(96, 165, 250, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/25 {
    --tw-gradient-from: rgba(96, 165, 250, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/30 {
    --tw-gradient-from: rgba(96, 165, 250, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/40 {
    --tw-gradient-from: rgba(96, 165, 250, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/5 {
    --tw-gradient-from: rgba(96, 165, 250, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/50 {
    --tw-gradient-from: rgba(96, 165, 250, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/60 {
    --tw-gradient-from: rgba(96, 165, 250, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/70 {
    --tw-gradient-from: rgba(96, 165, 250, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/75 {
    --tw-gradient-from: rgba(96, 165, 250, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/80 {
    --tw-gradient-from: rgba(96, 165, 250, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/90 {
    --tw-gradient-from: rgba(96, 165, 250, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-400\/95 {
    --tw-gradient-from: rgba(96, 165, 250, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500 {
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/0 {
    --tw-gradient-from: rgba(59, 130, 246, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/10 {
    --tw-gradient-from: rgba(59, 130, 246, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/100 {
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/20 {
    --tw-gradient-from: rgba(59, 130, 246, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/25 {
    --tw-gradient-from: rgba(59, 130, 246, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/30 {
    --tw-gradient-from: rgba(59, 130, 246, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/40 {
    --tw-gradient-from: rgba(59, 130, 246, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/5 {
    --tw-gradient-from: rgba(59, 130, 246, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/50 {
    --tw-gradient-from: rgba(59, 130, 246, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/60 {
    --tw-gradient-from: rgba(59, 130, 246, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/70 {
    --tw-gradient-from: rgba(59, 130, 246, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/75 {
    --tw-gradient-from: rgba(59, 130, 246, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/80 {
    --tw-gradient-from: rgba(59, 130, 246, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/90 {
    --tw-gradient-from: rgba(59, 130, 246, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-500\/95 {
    --tw-gradient-from: rgba(59, 130, 246, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600 {
    --tw-gradient-from: #2563eb var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/0 {
    --tw-gradient-from: rgba(37, 99, 235, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/10 {
    --tw-gradient-from: rgba(37, 99, 235, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/100 {
    --tw-gradient-from: #2563eb var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/20 {
    --tw-gradient-from: rgba(37, 99, 235, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/25 {
    --tw-gradient-from: rgba(37, 99, 235, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/30 {
    --tw-gradient-from: rgba(37, 99, 235, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/40 {
    --tw-gradient-from: rgba(37, 99, 235, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/5 {
    --tw-gradient-from: rgba(37, 99, 235, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/50 {
    --tw-gradient-from: rgba(37, 99, 235, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/60 {
    --tw-gradient-from: rgba(37, 99, 235, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/70 {
    --tw-gradient-from: rgba(37, 99, 235, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/75 {
    --tw-gradient-from: rgba(37, 99, 235, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/80 {
    --tw-gradient-from: rgba(37, 99, 235, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/90 {
    --tw-gradient-from: rgba(37, 99, 235, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-600\/95 {
    --tw-gradient-from: rgba(37, 99, 235, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700 {
    --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/0 {
    --tw-gradient-from: rgba(29, 78, 216, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/10 {
    --tw-gradient-from: rgba(29, 78, 216, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/100 {
    --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/20 {
    --tw-gradient-from: rgba(29, 78, 216, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/25 {
    --tw-gradient-from: rgba(29, 78, 216, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/30 {
    --tw-gradient-from: rgba(29, 78, 216, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/40 {
    --tw-gradient-from: rgba(29, 78, 216, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/5 {
    --tw-gradient-from: rgba(29, 78, 216, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/50 {
    --tw-gradient-from: rgba(29, 78, 216, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/60 {
    --tw-gradient-from: rgba(29, 78, 216, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/70 {
    --tw-gradient-from: rgba(29, 78, 216, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/75 {
    --tw-gradient-from: rgba(29, 78, 216, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/80 {
    --tw-gradient-from: rgba(29, 78, 216, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/90 {
    --tw-gradient-from: rgba(29, 78, 216, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-700\/95 {
    --tw-gradient-from: rgba(29, 78, 216, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800 {
    --tw-gradient-from: #1e40af var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/0 {
    --tw-gradient-from: rgba(30, 64, 175, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/10 {
    --tw-gradient-from: rgba(30, 64, 175, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/100 {
    --tw-gradient-from: #1e40af var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/20 {
    --tw-gradient-from: rgba(30, 64, 175, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/25 {
    --tw-gradient-from: rgba(30, 64, 175, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/30 {
    --tw-gradient-from: rgba(30, 64, 175, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/40 {
    --tw-gradient-from: rgba(30, 64, 175, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/5 {
    --tw-gradient-from: rgba(30, 64, 175, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/50 {
    --tw-gradient-from: rgba(30, 64, 175, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/60 {
    --tw-gradient-from: rgba(30, 64, 175, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/70 {
    --tw-gradient-from: rgba(30, 64, 175, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/75 {
    --tw-gradient-from: rgba(30, 64, 175, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/80 {
    --tw-gradient-from: rgba(30, 64, 175, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/90 {
    --tw-gradient-from: rgba(30, 64, 175, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-blue-800\/95 {
    --tw-gradient-from: rgba(30, 64, 175, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100 {
    --tw-gradient-from: #d1fae5 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/0 {
    --tw-gradient-from: rgba(209, 250, 229, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/10 {
    --tw-gradient-from: rgba(209, 250, 229, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/100 {
    --tw-gradient-from: #d1fae5 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/20 {
    --tw-gradient-from: rgba(209, 250, 229, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/25 {
    --tw-gradient-from: rgba(209, 250, 229, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/30 {
    --tw-gradient-from: rgba(209, 250, 229, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/40 {
    --tw-gradient-from: rgba(209, 250, 229, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/5 {
    --tw-gradient-from: rgba(209, 250, 229, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/50 {
    --tw-gradient-from: rgba(209, 250, 229, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/60 {
    --tw-gradient-from: rgba(209, 250, 229, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/70 {
    --tw-gradient-from: rgba(209, 250, 229, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/75 {
    --tw-gradient-from: rgba(209, 250, 229, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/80 {
    --tw-gradient-from: rgba(209, 250, 229, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/90 {
    --tw-gradient-from: rgba(209, 250, 229, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-100\/95 {
    --tw-gradient-from: rgba(209, 250, 229, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200 {
    --tw-gradient-from: #a7f3d0 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/0 {
    --tw-gradient-from: rgba(167, 243, 208, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/10 {
    --tw-gradient-from: rgba(167, 243, 208, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/100 {
    --tw-gradient-from: #a7f3d0 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/20 {
    --tw-gradient-from: rgba(167, 243, 208, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/25 {
    --tw-gradient-from: rgba(167, 243, 208, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/30 {
    --tw-gradient-from: rgba(167, 243, 208, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/40 {
    --tw-gradient-from: rgba(167, 243, 208, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/5 {
    --tw-gradient-from: rgba(167, 243, 208, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/50 {
    --tw-gradient-from: rgba(167, 243, 208, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/60 {
    --tw-gradient-from: rgba(167, 243, 208, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/70 {
    --tw-gradient-from: rgba(167, 243, 208, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/75 {
    --tw-gradient-from: rgba(167, 243, 208, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/80 {
    --tw-gradient-from: rgba(167, 243, 208, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/90 {
    --tw-gradient-from: rgba(167, 243, 208, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-200\/95 {
    --tw-gradient-from: rgba(167, 243, 208, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300 {
    --tw-gradient-from: #6ee7b7 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/0 {
    --tw-gradient-from: rgba(110, 231, 183, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/10 {
    --tw-gradient-from: rgba(110, 231, 183, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/100 {
    --tw-gradient-from: #6ee7b7 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/20 {
    --tw-gradient-from: rgba(110, 231, 183, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/25 {
    --tw-gradient-from: rgba(110, 231, 183, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/30 {
    --tw-gradient-from: rgba(110, 231, 183, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/40 {
    --tw-gradient-from: rgba(110, 231, 183, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/5 {
    --tw-gradient-from: rgba(110, 231, 183, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/50 {
    --tw-gradient-from: rgba(110, 231, 183, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/60 {
    --tw-gradient-from: rgba(110, 231, 183, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/70 {
    --tw-gradient-from: rgba(110, 231, 183, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/75 {
    --tw-gradient-from: rgba(110, 231, 183, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/80 {
    --tw-gradient-from: rgba(110, 231, 183, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/90 {
    --tw-gradient-from: rgba(110, 231, 183, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-300\/95 {
    --tw-gradient-from: rgba(110, 231, 183, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400 {
    --tw-gradient-from: #34d399 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/0 {
    --tw-gradient-from: rgba(52, 211, 153, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/10 {
    --tw-gradient-from: rgba(52, 211, 153, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/100 {
    --tw-gradient-from: #34d399 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/20 {
    --tw-gradient-from: rgba(52, 211, 153, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/25 {
    --tw-gradient-from: rgba(52, 211, 153, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/30 {
    --tw-gradient-from: rgba(52, 211, 153, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/40 {
    --tw-gradient-from: rgba(52, 211, 153, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/5 {
    --tw-gradient-from: rgba(52, 211, 153, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/50 {
    --tw-gradient-from: rgba(52, 211, 153, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/60 {
    --tw-gradient-from: rgba(52, 211, 153, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/70 {
    --tw-gradient-from: rgba(52, 211, 153, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/75 {
    --tw-gradient-from: rgba(52, 211, 153, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/80 {
    --tw-gradient-from: rgba(52, 211, 153, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/90 {
    --tw-gradient-from: rgba(52, 211, 153, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-400\/95 {
    --tw-gradient-from: rgba(52, 211, 153, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500 {
    --tw-gradient-from: #10b981 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/0 {
    --tw-gradient-from: rgba(16, 185, 129, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/10 {
    --tw-gradient-from: rgba(16, 185, 129, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/100 {
    --tw-gradient-from: #10b981 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/20 {
    --tw-gradient-from: rgba(16, 185, 129, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/25 {
    --tw-gradient-from: rgba(16, 185, 129, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/30 {
    --tw-gradient-from: rgba(16, 185, 129, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/40 {
    --tw-gradient-from: rgba(16, 185, 129, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/5 {
    --tw-gradient-from: rgba(16, 185, 129, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/50 {
    --tw-gradient-from: rgba(16, 185, 129, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/60 {
    --tw-gradient-from: rgba(16, 185, 129, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/70 {
    --tw-gradient-from: rgba(16, 185, 129, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/75 {
    --tw-gradient-from: rgba(16, 185, 129, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/80 {
    --tw-gradient-from: rgba(16, 185, 129, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/90 {
    --tw-gradient-from: rgba(16, 185, 129, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-500\/95 {
    --tw-gradient-from: rgba(16, 185, 129, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600 {
    --tw-gradient-from: #059669 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/0 {
    --tw-gradient-from: rgba(5, 150, 105, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/10 {
    --tw-gradient-from: rgba(5, 150, 105, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/100 {
    --tw-gradient-from: #059669 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/20 {
    --tw-gradient-from: rgba(5, 150, 105, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/25 {
    --tw-gradient-from: rgba(5, 150, 105, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/30 {
    --tw-gradient-from: rgba(5, 150, 105, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/40 {
    --tw-gradient-from: rgba(5, 150, 105, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/5 {
    --tw-gradient-from: rgba(5, 150, 105, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/50 {
    --tw-gradient-from: rgba(5, 150, 105, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/60 {
    --tw-gradient-from: rgba(5, 150, 105, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/70 {
    --tw-gradient-from: rgba(5, 150, 105, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/75 {
    --tw-gradient-from: rgba(5, 150, 105, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/80 {
    --tw-gradient-from: rgba(5, 150, 105, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/90 {
    --tw-gradient-from: rgba(5, 150, 105, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-600\/95 {
    --tw-gradient-from: rgba(5, 150, 105, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700 {
    --tw-gradient-from: #047857 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/0 {
    --tw-gradient-from: rgba(4, 120, 87, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/10 {
    --tw-gradient-from: rgba(4, 120, 87, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/100 {
    --tw-gradient-from: #047857 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/20 {
    --tw-gradient-from: rgba(4, 120, 87, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/25 {
    --tw-gradient-from: rgba(4, 120, 87, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/30 {
    --tw-gradient-from: rgba(4, 120, 87, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/40 {
    --tw-gradient-from: rgba(4, 120, 87, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/5 {
    --tw-gradient-from: rgba(4, 120, 87, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/50 {
    --tw-gradient-from: rgba(4, 120, 87, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/60 {
    --tw-gradient-from: rgba(4, 120, 87, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/70 {
    --tw-gradient-from: rgba(4, 120, 87, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/75 {
    --tw-gradient-from: rgba(4, 120, 87, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/80 {
    --tw-gradient-from: rgba(4, 120, 87, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/90 {
    --tw-gradient-from: rgba(4, 120, 87, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-700\/95 {
    --tw-gradient-from: rgba(4, 120, 87, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800 {
    --tw-gradient-from: #065f46 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/0 {
    --tw-gradient-from: rgba(6, 95, 70, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/10 {
    --tw-gradient-from: rgba(6, 95, 70, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/100 {
    --tw-gradient-from: #065f46 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/20 {
    --tw-gradient-from: rgba(6, 95, 70, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/25 {
    --tw-gradient-from: rgba(6, 95, 70, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/30 {
    --tw-gradient-from: rgba(6, 95, 70, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/40 {
    --tw-gradient-from: rgba(6, 95, 70, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/5 {
    --tw-gradient-from: rgba(6, 95, 70, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/50 {
    --tw-gradient-from: rgba(6, 95, 70, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/60 {
    --tw-gradient-from: rgba(6, 95, 70, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/70 {
    --tw-gradient-from: rgba(6, 95, 70, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/75 {
    --tw-gradient-from: rgba(6, 95, 70, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/80 {
    --tw-gradient-from: rgba(6, 95, 70, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/90 {
    --tw-gradient-from: rgba(6, 95, 70, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-emerald-800\/95 {
    --tw-gradient-from: rgba(6, 95, 70, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100 {
    --tw-gradient-from: #dcfce7 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/0 {
    --tw-gradient-from: rgba(220, 252, 231, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/10 {
    --tw-gradient-from: rgba(220, 252, 231, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/100 {
    --tw-gradient-from: #dcfce7 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/20 {
    --tw-gradient-from: rgba(220, 252, 231, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/25 {
    --tw-gradient-from: rgba(220, 252, 231, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/30 {
    --tw-gradient-from: rgba(220, 252, 231, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/40 {
    --tw-gradient-from: rgba(220, 252, 231, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/5 {
    --tw-gradient-from: rgba(220, 252, 231, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/50 {
    --tw-gradient-from: rgba(220, 252, 231, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/60 {
    --tw-gradient-from: rgba(220, 252, 231, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/70 {
    --tw-gradient-from: rgba(220, 252, 231, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/75 {
    --tw-gradient-from: rgba(220, 252, 231, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/80 {
    --tw-gradient-from: rgba(220, 252, 231, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/90 {
    --tw-gradient-from: rgba(220, 252, 231, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-100\/95 {
    --tw-gradient-from: rgba(220, 252, 231, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200 {
    --tw-gradient-from: #bbf7d0 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/0 {
    --tw-gradient-from: rgba(187, 247, 208, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/10 {
    --tw-gradient-from: rgba(187, 247, 208, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/100 {
    --tw-gradient-from: #bbf7d0 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/20 {
    --tw-gradient-from: rgba(187, 247, 208, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/25 {
    --tw-gradient-from: rgba(187, 247, 208, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/30 {
    --tw-gradient-from: rgba(187, 247, 208, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/40 {
    --tw-gradient-from: rgba(187, 247, 208, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/5 {
    --tw-gradient-from: rgba(187, 247, 208, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/50 {
    --tw-gradient-from: rgba(187, 247, 208, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/60 {
    --tw-gradient-from: rgba(187, 247, 208, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/70 {
    --tw-gradient-from: rgba(187, 247, 208, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/75 {
    --tw-gradient-from: rgba(187, 247, 208, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/80 {
    --tw-gradient-from: rgba(187, 247, 208, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/90 {
    --tw-gradient-from: rgba(187, 247, 208, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-200\/95 {
    --tw-gradient-from: rgba(187, 247, 208, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300 {
    --tw-gradient-from: #86efac var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/0 {
    --tw-gradient-from: rgba(134, 239, 172, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/10 {
    --tw-gradient-from: rgba(134, 239, 172, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/100 {
    --tw-gradient-from: #86efac var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/20 {
    --tw-gradient-from: rgba(134, 239, 172, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/25 {
    --tw-gradient-from: rgba(134, 239, 172, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/30 {
    --tw-gradient-from: rgba(134, 239, 172, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/40 {
    --tw-gradient-from: rgba(134, 239, 172, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/5 {
    --tw-gradient-from: rgba(134, 239, 172, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/50 {
    --tw-gradient-from: rgba(134, 239, 172, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/60 {
    --tw-gradient-from: rgba(134, 239, 172, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/70 {
    --tw-gradient-from: rgba(134, 239, 172, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/75 {
    --tw-gradient-from: rgba(134, 239, 172, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/80 {
    --tw-gradient-from: rgba(134, 239, 172, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/90 {
    --tw-gradient-from: rgba(134, 239, 172, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-300\/95 {
    --tw-gradient-from: rgba(134, 239, 172, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400 {
    --tw-gradient-from: #4ade80 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/0 {
    --tw-gradient-from: rgba(74, 222, 128, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/10 {
    --tw-gradient-from: rgba(74, 222, 128, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/100 {
    --tw-gradient-from: #4ade80 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/20 {
    --tw-gradient-from: rgba(74, 222, 128, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/25 {
    --tw-gradient-from: rgba(74, 222, 128, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/30 {
    --tw-gradient-from: rgba(74, 222, 128, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/40 {
    --tw-gradient-from: rgba(74, 222, 128, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/5 {
    --tw-gradient-from: rgba(74, 222, 128, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/50 {
    --tw-gradient-from: rgba(74, 222, 128, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/60 {
    --tw-gradient-from: rgba(74, 222, 128, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/70 {
    --tw-gradient-from: rgba(74, 222, 128, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/75 {
    --tw-gradient-from: rgba(74, 222, 128, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/80 {
    --tw-gradient-from: rgba(74, 222, 128, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/90 {
    --tw-gradient-from: rgba(74, 222, 128, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-400\/95 {
    --tw-gradient-from: rgba(74, 222, 128, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/0 {
    --tw-gradient-from: rgba(34, 197, 94, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/10 {
    --tw-gradient-from: rgba(34, 197, 94, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/100 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/20 {
    --tw-gradient-from: rgba(34, 197, 94, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/25 {
    --tw-gradient-from: rgba(34, 197, 94, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/30 {
    --tw-gradient-from: rgba(34, 197, 94, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/40 {
    --tw-gradient-from: rgba(34, 197, 94, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/5 {
    --tw-gradient-from: rgba(34, 197, 94, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/50 {
    --tw-gradient-from: rgba(34, 197, 94, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/60 {
    --tw-gradient-from: rgba(34, 197, 94, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/70 {
    --tw-gradient-from: rgba(34, 197, 94, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/75 {
    --tw-gradient-from: rgba(34, 197, 94, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/80 {
    --tw-gradient-from: rgba(34, 197, 94, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/90 {
    --tw-gradient-from: rgba(34, 197, 94, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-500\/95 {
    --tw-gradient-from: rgba(34, 197, 94, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600 {
    --tw-gradient-from: #16a34a var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/0 {
    --tw-gradient-from: rgba(22, 163, 74, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/10 {
    --tw-gradient-from: rgba(22, 163, 74, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/100 {
    --tw-gradient-from: #16a34a var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/20 {
    --tw-gradient-from: rgba(22, 163, 74, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/25 {
    --tw-gradient-from: rgba(22, 163, 74, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/30 {
    --tw-gradient-from: rgba(22, 163, 74, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/40 {
    --tw-gradient-from: rgba(22, 163, 74, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/5 {
    --tw-gradient-from: rgba(22, 163, 74, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/50 {
    --tw-gradient-from: rgba(22, 163, 74, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/60 {
    --tw-gradient-from: rgba(22, 163, 74, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/70 {
    --tw-gradient-from: rgba(22, 163, 74, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/75 {
    --tw-gradient-from: rgba(22, 163, 74, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/80 {
    --tw-gradient-from: rgba(22, 163, 74, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/90 {
    --tw-gradient-from: rgba(22, 163, 74, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-600\/95 {
    --tw-gradient-from: rgba(22, 163, 74, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700 {
    --tw-gradient-from: #15803d var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/0 {
    --tw-gradient-from: rgba(21, 128, 61, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/10 {
    --tw-gradient-from: rgba(21, 128, 61, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/100 {
    --tw-gradient-from: #15803d var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/20 {
    --tw-gradient-from: rgba(21, 128, 61, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/25 {
    --tw-gradient-from: rgba(21, 128, 61, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/30 {
    --tw-gradient-from: rgba(21, 128, 61, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/40 {
    --tw-gradient-from: rgba(21, 128, 61, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/5 {
    --tw-gradient-from: rgba(21, 128, 61, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/50 {
    --tw-gradient-from: rgba(21, 128, 61, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/60 {
    --tw-gradient-from: rgba(21, 128, 61, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/70 {
    --tw-gradient-from: rgba(21, 128, 61, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/75 {
    --tw-gradient-from: rgba(21, 128, 61, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/80 {
    --tw-gradient-from: rgba(21, 128, 61, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/90 {
    --tw-gradient-from: rgba(21, 128, 61, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-700\/95 {
    --tw-gradient-from: rgba(21, 128, 61, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800 {
    --tw-gradient-from: #166534 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/0 {
    --tw-gradient-from: rgba(22, 101, 52, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/10 {
    --tw-gradient-from: rgba(22, 101, 52, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/100 {
    --tw-gradient-from: #166534 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/20 {
    --tw-gradient-from: rgba(22, 101, 52, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/25 {
    --tw-gradient-from: rgba(22, 101, 52, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/30 {
    --tw-gradient-from: rgba(22, 101, 52, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/40 {
    --tw-gradient-from: rgba(22, 101, 52, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/5 {
    --tw-gradient-from: rgba(22, 101, 52, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/50 {
    --tw-gradient-from: rgba(22, 101, 52, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/60 {
    --tw-gradient-from: rgba(22, 101, 52, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/70 {
    --tw-gradient-from: rgba(22, 101, 52, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/75 {
    --tw-gradient-from: rgba(22, 101, 52, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/80 {
    --tw-gradient-from: rgba(22, 101, 52, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/90 {
    --tw-gradient-from: rgba(22, 101, 52, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-green-800\/95 {
    --tw-gradient-from: rgba(22, 101, 52, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100 {
    --tw-gradient-from: #ecfccb var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/0 {
    --tw-gradient-from: hsla(80, 89%, 89%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/10 {
    --tw-gradient-from: hsla(80, 89%, 89%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/100 {
    --tw-gradient-from: #ecfccb var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/20 {
    --tw-gradient-from: hsla(80, 89%, 89%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/25 {
    --tw-gradient-from: hsla(80, 89%, 89%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/30 {
    --tw-gradient-from: hsla(80, 89%, 89%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/40 {
    --tw-gradient-from: hsla(80, 89%, 89%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/5 {
    --tw-gradient-from: hsla(80, 89%, 89%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/50 {
    --tw-gradient-from: hsla(80, 89%, 89%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/60 {
    --tw-gradient-from: hsla(80, 89%, 89%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/70 {
    --tw-gradient-from: hsla(80, 89%, 89%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/75 {
    --tw-gradient-from: hsla(80, 89%, 89%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/80 {
    --tw-gradient-from: hsla(80, 89%, 89%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/90 {
    --tw-gradient-from: hsla(80, 89%, 89%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-100\/95 {
    --tw-gradient-from: hsla(80, 89%, 89%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200 {
    --tw-gradient-from: #d9f99d var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/0 {
    --tw-gradient-from: hsla(81, 88%, 80%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/10 {
    --tw-gradient-from: hsla(81, 88%, 80%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/100 {
    --tw-gradient-from: #d9f99d var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/20 {
    --tw-gradient-from: hsla(81, 88%, 80%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/25 {
    --tw-gradient-from: hsla(81, 88%, 80%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/30 {
    --tw-gradient-from: hsla(81, 88%, 80%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/40 {
    --tw-gradient-from: hsla(81, 88%, 80%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/5 {
    --tw-gradient-from: hsla(81, 88%, 80%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/50 {
    --tw-gradient-from: hsla(81, 88%, 80%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/60 {
    --tw-gradient-from: hsla(81, 88%, 80%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/70 {
    --tw-gradient-from: hsla(81, 88%, 80%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/75 {
    --tw-gradient-from: hsla(81, 88%, 80%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/80 {
    --tw-gradient-from: hsla(81, 88%, 80%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/90 {
    --tw-gradient-from: hsla(81, 88%, 80%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-200\/95 {
    --tw-gradient-from: hsla(81, 88%, 80%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300 {
    --tw-gradient-from: #bef264 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/0 {
    --tw-gradient-from: hsla(82, 85%, 67%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/10 {
    --tw-gradient-from: hsla(82, 85%, 67%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/100 {
    --tw-gradient-from: #bef264 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/20 {
    --tw-gradient-from: hsla(82, 85%, 67%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/25 {
    --tw-gradient-from: hsla(82, 85%, 67%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/30 {
    --tw-gradient-from: hsla(82, 85%, 67%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/40 {
    --tw-gradient-from: hsla(82, 85%, 67%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/5 {
    --tw-gradient-from: hsla(82, 85%, 67%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/50 {
    --tw-gradient-from: hsla(82, 85%, 67%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/60 {
    --tw-gradient-from: hsla(82, 85%, 67%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/70 {
    --tw-gradient-from: hsla(82, 85%, 67%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/75 {
    --tw-gradient-from: hsla(82, 85%, 67%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/80 {
    --tw-gradient-from: hsla(82, 85%, 67%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/90 {
    --tw-gradient-from: hsla(82, 85%, 67%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-300\/95 {
    --tw-gradient-from: hsla(82, 85%, 67%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400 {
    --tw-gradient-from: #a3e635 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/0 {
    --tw-gradient-from: rgba(163, 230, 53, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/10 {
    --tw-gradient-from: rgba(163, 230, 53, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/100 {
    --tw-gradient-from: #a3e635 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/20 {
    --tw-gradient-from: rgba(163, 230, 53, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/25 {
    --tw-gradient-from: rgba(163, 230, 53, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/30 {
    --tw-gradient-from: rgba(163, 230, 53, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/40 {
    --tw-gradient-from: rgba(163, 230, 53, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/5 {
    --tw-gradient-from: rgba(163, 230, 53, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/50 {
    --tw-gradient-from: rgba(163, 230, 53, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/60 {
    --tw-gradient-from: rgba(163, 230, 53, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/70 {
    --tw-gradient-from: rgba(163, 230, 53, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/75 {
    --tw-gradient-from: rgba(163, 230, 53, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/80 {
    --tw-gradient-from: rgba(163, 230, 53, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/90 {
    --tw-gradient-from: rgba(163, 230, 53, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-400\/95 {
    --tw-gradient-from: rgba(163, 230, 53, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500 {
    --tw-gradient-from: #84cc16 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/0 {
    --tw-gradient-from: rgba(132, 204, 22, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/10 {
    --tw-gradient-from: rgba(132, 204, 22, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/100 {
    --tw-gradient-from: #84cc16 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/20 {
    --tw-gradient-from: rgba(132, 204, 22, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/25 {
    --tw-gradient-from: rgba(132, 204, 22, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/30 {
    --tw-gradient-from: rgba(132, 204, 22, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/40 {
    --tw-gradient-from: rgba(132, 204, 22, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/5 {
    --tw-gradient-from: rgba(132, 204, 22, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/50 {
    --tw-gradient-from: rgba(132, 204, 22, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/60 {
    --tw-gradient-from: rgba(132, 204, 22, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/70 {
    --tw-gradient-from: rgba(132, 204, 22, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/75 {
    --tw-gradient-from: rgba(132, 204, 22, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/80 {
    --tw-gradient-from: rgba(132, 204, 22, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/90 {
    --tw-gradient-from: rgba(132, 204, 22, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-500\/95 {
    --tw-gradient-from: rgba(132, 204, 22, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600 {
    --tw-gradient-from: #65a30d var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/0 {
    --tw-gradient-from: rgba(101, 163, 13, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/10 {
    --tw-gradient-from: rgba(101, 163, 13, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/100 {
    --tw-gradient-from: #65a30d var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/20 {
    --tw-gradient-from: rgba(101, 163, 13, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/25 {
    --tw-gradient-from: rgba(101, 163, 13, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/30 {
    --tw-gradient-from: rgba(101, 163, 13, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/40 {
    --tw-gradient-from: rgba(101, 163, 13, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/5 {
    --tw-gradient-from: rgba(101, 163, 13, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/50 {
    --tw-gradient-from: rgba(101, 163, 13, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/60 {
    --tw-gradient-from: rgba(101, 163, 13, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/70 {
    --tw-gradient-from: rgba(101, 163, 13, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/75 {
    --tw-gradient-from: rgba(101, 163, 13, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/80 {
    --tw-gradient-from: rgba(101, 163, 13, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/90 {
    --tw-gradient-from: rgba(101, 163, 13, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-600\/95 {
    --tw-gradient-from: rgba(101, 163, 13, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700 {
    --tw-gradient-from: #4d7c0f var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/0 {
    --tw-gradient-from: rgba(77, 124, 15, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/10 {
    --tw-gradient-from: rgba(77, 124, 15, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/100 {
    --tw-gradient-from: #4d7c0f var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/20 {
    --tw-gradient-from: rgba(77, 124, 15, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/25 {
    --tw-gradient-from: rgba(77, 124, 15, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/30 {
    --tw-gradient-from: rgba(77, 124, 15, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/40 {
    --tw-gradient-from: rgba(77, 124, 15, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/5 {
    --tw-gradient-from: rgba(77, 124, 15, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/50 {
    --tw-gradient-from: rgba(77, 124, 15, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/60 {
    --tw-gradient-from: rgba(77, 124, 15, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/70 {
    --tw-gradient-from: rgba(77, 124, 15, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/75 {
    --tw-gradient-from: rgba(77, 124, 15, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/80 {
    --tw-gradient-from: rgba(77, 124, 15, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/90 {
    --tw-gradient-from: rgba(77, 124, 15, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-700\/95 {
    --tw-gradient-from: rgba(77, 124, 15, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800 {
    --tw-gradient-from: #3f6212 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/0 {
    --tw-gradient-from: rgba(63, 98, 18, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/10 {
    --tw-gradient-from: rgba(63, 98, 18, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/100 {
    --tw-gradient-from: #3f6212 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/20 {
    --tw-gradient-from: rgba(63, 98, 18, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/25 {
    --tw-gradient-from: rgba(63, 98, 18, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/30 {
    --tw-gradient-from: rgba(63, 98, 18, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/40 {
    --tw-gradient-from: rgba(63, 98, 18, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/5 {
    --tw-gradient-from: rgba(63, 98, 18, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/50 {
    --tw-gradient-from: rgba(63, 98, 18, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/60 {
    --tw-gradient-from: rgba(63, 98, 18, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/70 {
    --tw-gradient-from: rgba(63, 98, 18, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/75 {
    --tw-gradient-from: rgba(63, 98, 18, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/80 {
    --tw-gradient-from: rgba(63, 98, 18, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/90 {
    --tw-gradient-from: rgba(63, 98, 18, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-lime-800\/95 {
    --tw-gradient-from: rgba(63, 98, 18, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100 {
    --tw-gradient-from: #ffedd5 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/0 {
    --tw-gradient-from: rgba(255, 237, 213, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/10 {
    --tw-gradient-from: rgba(255, 237, 213, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/100 {
    --tw-gradient-from: #ffedd5 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/20 {
    --tw-gradient-from: rgba(255, 237, 213, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/25 {
    --tw-gradient-from: rgba(255, 237, 213, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/30 {
    --tw-gradient-from: rgba(255, 237, 213, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/40 {
    --tw-gradient-from: rgba(255, 237, 213, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/5 {
    --tw-gradient-from: rgba(255, 237, 213, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/50 {
    --tw-gradient-from: rgba(255, 237, 213, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/60 {
    --tw-gradient-from: rgba(255, 237, 213, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/70 {
    --tw-gradient-from: rgba(255, 237, 213, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/75 {
    --tw-gradient-from: rgba(255, 237, 213, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/80 {
    --tw-gradient-from: rgba(255, 237, 213, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/90 {
    --tw-gradient-from: rgba(255, 237, 213, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-100\/95 {
    --tw-gradient-from: rgba(255, 237, 213, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200 {
    --tw-gradient-from: #fed7aa var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/0 {
    --tw-gradient-from: hsla(32, 98%, 83%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/10 {
    --tw-gradient-from: hsla(32, 98%, 83%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/100 {
    --tw-gradient-from: #fed7aa var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/20 {
    --tw-gradient-from: hsla(32, 98%, 83%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/25 {
    --tw-gradient-from: hsla(32, 98%, 83%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/30 {
    --tw-gradient-from: hsla(32, 98%, 83%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/40 {
    --tw-gradient-from: hsla(32, 98%, 83%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/5 {
    --tw-gradient-from: hsla(32, 98%, 83%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/50 {
    --tw-gradient-from: hsla(32, 98%, 83%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/60 {
    --tw-gradient-from: hsla(32, 98%, 83%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/70 {
    --tw-gradient-from: hsla(32, 98%, 83%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/75 {
    --tw-gradient-from: hsla(32, 98%, 83%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/80 {
    --tw-gradient-from: hsla(32, 98%, 83%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/90 {
    --tw-gradient-from: hsla(32, 98%, 83%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-200\/95 {
    --tw-gradient-from: hsla(32, 98%, 83%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300 {
    --tw-gradient-from: #fdba74 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/0 {
    --tw-gradient-from: hsla(31, 97%, 72%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/10 {
    --tw-gradient-from: hsla(31, 97%, 72%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/100 {
    --tw-gradient-from: #fdba74 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/20 {
    --tw-gradient-from: hsla(31, 97%, 72%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/25 {
    --tw-gradient-from: hsla(31, 97%, 72%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/30 {
    --tw-gradient-from: hsla(31, 97%, 72%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/40 {
    --tw-gradient-from: hsla(31, 97%, 72%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/5 {
    --tw-gradient-from: hsla(31, 97%, 72%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/50 {
    --tw-gradient-from: hsla(31, 97%, 72%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/60 {
    --tw-gradient-from: hsla(31, 97%, 72%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/70 {
    --tw-gradient-from: hsla(31, 97%, 72%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/75 {
    --tw-gradient-from: hsla(31, 97%, 72%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/80 {
    --tw-gradient-from: hsla(31, 97%, 72%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/90 {
    --tw-gradient-from: hsla(31, 97%, 72%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-300\/95 {
    --tw-gradient-from: hsla(31, 97%, 72%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400 {
    --tw-gradient-from: #fb923c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/0 {
    --tw-gradient-from: rgba(251, 146, 60, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/10 {
    --tw-gradient-from: rgba(251, 146, 60, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/100 {
    --tw-gradient-from: #fb923c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/20 {
    --tw-gradient-from: rgba(251, 146, 60, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/25 {
    --tw-gradient-from: rgba(251, 146, 60, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/30 {
    --tw-gradient-from: rgba(251, 146, 60, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/40 {
    --tw-gradient-from: rgba(251, 146, 60, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/5 {
    --tw-gradient-from: rgba(251, 146, 60, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/50 {
    --tw-gradient-from: rgba(251, 146, 60, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/60 {
    --tw-gradient-from: rgba(251, 146, 60, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/70 {
    --tw-gradient-from: rgba(251, 146, 60, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/75 {
    --tw-gradient-from: rgba(251, 146, 60, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/80 {
    --tw-gradient-from: rgba(251, 146, 60, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/90 {
    --tw-gradient-from: rgba(251, 146, 60, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-400\/95 {
    --tw-gradient-from: rgba(251, 146, 60, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500 {
    --tw-gradient-from: #f97316 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/0 {
    --tw-gradient-from: rgba(249, 115, 22, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/10 {
    --tw-gradient-from: rgba(249, 115, 22, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/100 {
    --tw-gradient-from: #f97316 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/20 {
    --tw-gradient-from: rgba(249, 115, 22, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/25 {
    --tw-gradient-from: rgba(249, 115, 22, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/30 {
    --tw-gradient-from: rgba(249, 115, 22, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/40 {
    --tw-gradient-from: rgba(249, 115, 22, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/5 {
    --tw-gradient-from: rgba(249, 115, 22, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/50 {
    --tw-gradient-from: rgba(249, 115, 22, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/60 {
    --tw-gradient-from: rgba(249, 115, 22, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/70 {
    --tw-gradient-from: rgba(249, 115, 22, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/75 {
    --tw-gradient-from: rgba(249, 115, 22, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/80 {
    --tw-gradient-from: rgba(249, 115, 22, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/90 {
    --tw-gradient-from: rgba(249, 115, 22, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-500\/95 {
    --tw-gradient-from: rgba(249, 115, 22, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600 {
    --tw-gradient-from: #ea580c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/0 {
    --tw-gradient-from: rgba(234, 88, 12, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/10 {
    --tw-gradient-from: rgba(234, 88, 12, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/100 {
    --tw-gradient-from: #ea580c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/20 {
    --tw-gradient-from: rgba(234, 88, 12, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/25 {
    --tw-gradient-from: rgba(234, 88, 12, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/30 {
    --tw-gradient-from: rgba(234, 88, 12, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/40 {
    --tw-gradient-from: rgba(234, 88, 12, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/5 {
    --tw-gradient-from: rgba(234, 88, 12, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/50 {
    --tw-gradient-from: rgba(234, 88, 12, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/60 {
    --tw-gradient-from: rgba(234, 88, 12, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/70 {
    --tw-gradient-from: rgba(234, 88, 12, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/75 {
    --tw-gradient-from: rgba(234, 88, 12, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/80 {
    --tw-gradient-from: rgba(234, 88, 12, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/90 {
    --tw-gradient-from: rgba(234, 88, 12, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-600\/95 {
    --tw-gradient-from: rgba(234, 88, 12, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700 {
    --tw-gradient-from: #c2410c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/0 {
    --tw-gradient-from: rgba(194, 65, 12, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/10 {
    --tw-gradient-from: rgba(194, 65, 12, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/100 {
    --tw-gradient-from: #c2410c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/20 {
    --tw-gradient-from: rgba(194, 65, 12, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/25 {
    --tw-gradient-from: rgba(194, 65, 12, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/30 {
    --tw-gradient-from: rgba(194, 65, 12, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/40 {
    --tw-gradient-from: rgba(194, 65, 12, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/5 {
    --tw-gradient-from: rgba(194, 65, 12, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/50 {
    --tw-gradient-from: rgba(194, 65, 12, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/60 {
    --tw-gradient-from: rgba(194, 65, 12, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/70 {
    --tw-gradient-from: rgba(194, 65, 12, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/75 {
    --tw-gradient-from: rgba(194, 65, 12, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/80 {
    --tw-gradient-from: rgba(194, 65, 12, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/90 {
    --tw-gradient-from: rgba(194, 65, 12, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-700\/95 {
    --tw-gradient-from: rgba(194, 65, 12, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800 {
    --tw-gradient-from: #9a3412 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/0 {
    --tw-gradient-from: rgba(154, 52, 18, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/10 {
    --tw-gradient-from: rgba(154, 52, 18, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/100 {
    --tw-gradient-from: #9a3412 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/20 {
    --tw-gradient-from: rgba(154, 52, 18, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/25 {
    --tw-gradient-from: rgba(154, 52, 18, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/30 {
    --tw-gradient-from: rgba(154, 52, 18, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/40 {
    --tw-gradient-from: rgba(154, 52, 18, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/5 {
    --tw-gradient-from: rgba(154, 52, 18, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/50 {
    --tw-gradient-from: rgba(154, 52, 18, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/60 {
    --tw-gradient-from: rgba(154, 52, 18, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/70 {
    --tw-gradient-from: rgba(154, 52, 18, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/75 {
    --tw-gradient-from: rgba(154, 52, 18, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/80 {
    --tw-gradient-from: rgba(154, 52, 18, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/90 {
    --tw-gradient-from: rgba(154, 52, 18, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-orange-800\/95 {
    --tw-gradient-from: rgba(154, 52, 18, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100 {
    --tw-gradient-from: #fee2e2 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/0 {
    --tw-gradient-from: hsla(0, 93%, 94%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/10 {
    --tw-gradient-from: hsla(0, 93%, 94%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/100 {
    --tw-gradient-from: #fee2e2 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/20 {
    --tw-gradient-from: hsla(0, 93%, 94%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/25 {
    --tw-gradient-from: hsla(0, 93%, 94%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/30 {
    --tw-gradient-from: hsla(0, 93%, 94%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/40 {
    --tw-gradient-from: hsla(0, 93%, 94%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/5 {
    --tw-gradient-from: hsla(0, 93%, 94%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/50 {
    --tw-gradient-from: hsla(0, 93%, 94%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/60 {
    --tw-gradient-from: hsla(0, 93%, 94%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/70 {
    --tw-gradient-from: hsla(0, 93%, 94%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/75 {
    --tw-gradient-from: hsla(0, 93%, 94%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/80 {
    --tw-gradient-from: hsla(0, 93%, 94%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/90 {
    --tw-gradient-from: hsla(0, 93%, 94%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-100\/95 {
    --tw-gradient-from: hsla(0, 93%, 94%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200 {
    --tw-gradient-from: #fecaca var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/0 {
    --tw-gradient-from: hsla(0, 96%, 89%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/10 {
    --tw-gradient-from: hsla(0, 96%, 89%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/100 {
    --tw-gradient-from: #fecaca var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/20 {
    --tw-gradient-from: hsla(0, 96%, 89%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/25 {
    --tw-gradient-from: hsla(0, 96%, 89%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/30 {
    --tw-gradient-from: hsla(0, 96%, 89%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/40 {
    --tw-gradient-from: hsla(0, 96%, 89%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/5 {
    --tw-gradient-from: hsla(0, 96%, 89%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/50 {
    --tw-gradient-from: hsla(0, 96%, 89%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/60 {
    --tw-gradient-from: hsla(0, 96%, 89%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/70 {
    --tw-gradient-from: hsla(0, 96%, 89%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/75 {
    --tw-gradient-from: hsla(0, 96%, 89%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/80 {
    --tw-gradient-from: hsla(0, 96%, 89%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/90 {
    --tw-gradient-from: hsla(0, 96%, 89%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-200\/95 {
    --tw-gradient-from: hsla(0, 96%, 89%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300 {
    --tw-gradient-from: #fca5a5 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/0 {
    --tw-gradient-from: hsla(0, 94%, 82%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/10 {
    --tw-gradient-from: hsla(0, 94%, 82%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/100 {
    --tw-gradient-from: #fca5a5 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/20 {
    --tw-gradient-from: hsla(0, 94%, 82%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/25 {
    --tw-gradient-from: hsla(0, 94%, 82%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/30 {
    --tw-gradient-from: hsla(0, 94%, 82%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/40 {
    --tw-gradient-from: hsla(0, 94%, 82%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/5 {
    --tw-gradient-from: hsla(0, 94%, 82%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/50 {
    --tw-gradient-from: hsla(0, 94%, 82%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/60 {
    --tw-gradient-from: hsla(0, 94%, 82%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/70 {
    --tw-gradient-from: hsla(0, 94%, 82%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/75 {
    --tw-gradient-from: hsla(0, 94%, 82%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/80 {
    --tw-gradient-from: hsla(0, 94%, 82%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/90 {
    --tw-gradient-from: hsla(0, 94%, 82%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-300\/95 {
    --tw-gradient-from: hsla(0, 94%, 82%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400 {
    --tw-gradient-from: #f87171 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/0 {
    --tw-gradient-from: hsla(0, 91%, 71%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/10 {
    --tw-gradient-from: hsla(0, 91%, 71%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/100 {
    --tw-gradient-from: #f87171 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/20 {
    --tw-gradient-from: hsla(0, 91%, 71%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/25 {
    --tw-gradient-from: hsla(0, 91%, 71%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/30 {
    --tw-gradient-from: hsla(0, 91%, 71%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/40 {
    --tw-gradient-from: hsla(0, 91%, 71%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/5 {
    --tw-gradient-from: hsla(0, 91%, 71%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/50 {
    --tw-gradient-from: hsla(0, 91%, 71%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/60 {
    --tw-gradient-from: hsla(0, 91%, 71%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/70 {
    --tw-gradient-from: hsla(0, 91%, 71%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/75 {
    --tw-gradient-from: hsla(0, 91%, 71%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/80 {
    --tw-gradient-from: hsla(0, 91%, 71%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/90 {
    --tw-gradient-from: hsla(0, 91%, 71%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-400\/95 {
    --tw-gradient-from: hsla(0, 91%, 71%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500 {
    --tw-gradient-from: #ef4444 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/0 {
    --tw-gradient-from: rgba(239, 68, 68, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/10 {
    --tw-gradient-from: rgba(239, 68, 68, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/100 {
    --tw-gradient-from: #ef4444 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/20 {
    --tw-gradient-from: rgba(239, 68, 68, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/25 {
    --tw-gradient-from: rgba(239, 68, 68, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/30 {
    --tw-gradient-from: rgba(239, 68, 68, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/40 {
    --tw-gradient-from: rgba(239, 68, 68, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/5 {
    --tw-gradient-from: rgba(239, 68, 68, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/50 {
    --tw-gradient-from: rgba(239, 68, 68, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/60 {
    --tw-gradient-from: rgba(239, 68, 68, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/70 {
    --tw-gradient-from: rgba(239, 68, 68, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/75 {
    --tw-gradient-from: rgba(239, 68, 68, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/80 {
    --tw-gradient-from: rgba(239, 68, 68, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/90 {
    --tw-gradient-from: rgba(239, 68, 68, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-500\/95 {
    --tw-gradient-from: rgba(239, 68, 68, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600 {
    --tw-gradient-from: #dc2626 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/0 {
    --tw-gradient-from: rgba(220, 38, 38, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/10 {
    --tw-gradient-from: rgba(220, 38, 38, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/100 {
    --tw-gradient-from: #dc2626 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/20 {
    --tw-gradient-from: rgba(220, 38, 38, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/25 {
    --tw-gradient-from: rgba(220, 38, 38, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/30 {
    --tw-gradient-from: rgba(220, 38, 38, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/40 {
    --tw-gradient-from: rgba(220, 38, 38, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/5 {
    --tw-gradient-from: rgba(220, 38, 38, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/50 {
    --tw-gradient-from: rgba(220, 38, 38, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/60 {
    --tw-gradient-from: rgba(220, 38, 38, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/70 {
    --tw-gradient-from: rgba(220, 38, 38, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/75 {
    --tw-gradient-from: rgba(220, 38, 38, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/80 {
    --tw-gradient-from: rgba(220, 38, 38, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/90 {
    --tw-gradient-from: rgba(220, 38, 38, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-600\/95 {
    --tw-gradient-from: rgba(220, 38, 38, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700 {
    --tw-gradient-from: #b91c1c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/0 {
    --tw-gradient-from: rgba(185, 28, 28, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/10 {
    --tw-gradient-from: rgba(185, 28, 28, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/100 {
    --tw-gradient-from: #b91c1c var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/20 {
    --tw-gradient-from: rgba(185, 28, 28, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/25 {
    --tw-gradient-from: rgba(185, 28, 28, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/30 {
    --tw-gradient-from: rgba(185, 28, 28, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/40 {
    --tw-gradient-from: rgba(185, 28, 28, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/5 {
    --tw-gradient-from: rgba(185, 28, 28, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/50 {
    --tw-gradient-from: rgba(185, 28, 28, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/60 {
    --tw-gradient-from: rgba(185, 28, 28, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/70 {
    --tw-gradient-from: rgba(185, 28, 28, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/75 {
    --tw-gradient-from: rgba(185, 28, 28, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/80 {
    --tw-gradient-from: rgba(185, 28, 28, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/90 {
    --tw-gradient-from: rgba(185, 28, 28, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-700\/95 {
    --tw-gradient-from: rgba(185, 28, 28, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800 {
    --tw-gradient-from: #991b1b var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/0 {
    --tw-gradient-from: rgba(153, 27, 27, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/10 {
    --tw-gradient-from: rgba(153, 27, 27, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/100 {
    --tw-gradient-from: #991b1b var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/20 {
    --tw-gradient-from: rgba(153, 27, 27, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/25 {
    --tw-gradient-from: rgba(153, 27, 27, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/30 {
    --tw-gradient-from: rgba(153, 27, 27, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/40 {
    --tw-gradient-from: rgba(153, 27, 27, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/5 {
    --tw-gradient-from: rgba(153, 27, 27, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/50 {
    --tw-gradient-from: rgba(153, 27, 27, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/60 {
    --tw-gradient-from: rgba(153, 27, 27, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/70 {
    --tw-gradient-from: rgba(153, 27, 27, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/75 {
    --tw-gradient-from: rgba(153, 27, 27, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/80 {
    --tw-gradient-from: rgba(153, 27, 27, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/90 {
    --tw-gradient-from: rgba(153, 27, 27, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-red-800\/95 {
    --tw-gradient-from: rgba(153, 27, 27, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100 {
    --tw-gradient-from: #f1f5f9 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/0 {
    --tw-gradient-from: rgba(241, 245, 249, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/10 {
    --tw-gradient-from: rgba(241, 245, 249, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/100 {
    --tw-gradient-from: #f1f5f9 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/20 {
    --tw-gradient-from: rgba(241, 245, 249, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/25 {
    --tw-gradient-from: rgba(241, 245, 249, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/30 {
    --tw-gradient-from: rgba(241, 245, 249, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/40 {
    --tw-gradient-from: rgba(241, 245, 249, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/5 {
    --tw-gradient-from: rgba(241, 245, 249, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/50 {
    --tw-gradient-from: rgba(241, 245, 249, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/60 {
    --tw-gradient-from: rgba(241, 245, 249, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/70 {
    --tw-gradient-from: rgba(241, 245, 249, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/75 {
    --tw-gradient-from: rgba(241, 245, 249, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/80 {
    --tw-gradient-from: rgba(241, 245, 249, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/90 {
    --tw-gradient-from: rgba(241, 245, 249, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-100\/95 {
    --tw-gradient-from: rgba(241, 245, 249, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200 {
    --tw-gradient-from: #e2e8f0 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/0 {
    --tw-gradient-from: rgba(226, 232, 240, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/10 {
    --tw-gradient-from: rgba(226, 232, 240, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/100 {
    --tw-gradient-from: #e2e8f0 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/20 {
    --tw-gradient-from: rgba(226, 232, 240, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/25 {
    --tw-gradient-from: rgba(226, 232, 240, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/30 {
    --tw-gradient-from: rgba(226, 232, 240, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/40 {
    --tw-gradient-from: rgba(226, 232, 240, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/5 {
    --tw-gradient-from: rgba(226, 232, 240, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/50 {
    --tw-gradient-from: rgba(226, 232, 240, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/60 {
    --tw-gradient-from: rgba(226, 232, 240, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/70 {
    --tw-gradient-from: rgba(226, 232, 240, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/75 {
    --tw-gradient-from: rgba(226, 232, 240, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/80 {
    --tw-gradient-from: rgba(226, 232, 240, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/90 {
    --tw-gradient-from: rgba(226, 232, 240, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-200\/95 {
    --tw-gradient-from: rgba(226, 232, 240, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300 {
    --tw-gradient-from: #cbd5e1 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/0 {
    --tw-gradient-from: rgba(203, 213, 225, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/10 {
    --tw-gradient-from: rgba(203, 213, 225, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/100 {
    --tw-gradient-from: #cbd5e1 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/20 {
    --tw-gradient-from: rgba(203, 213, 225, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/25 {
    --tw-gradient-from: rgba(203, 213, 225, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/30 {
    --tw-gradient-from: rgba(203, 213, 225, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/40 {
    --tw-gradient-from: rgba(203, 213, 225, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/5 {
    --tw-gradient-from: rgba(203, 213, 225, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/50 {
    --tw-gradient-from: rgba(203, 213, 225, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/60 {
    --tw-gradient-from: rgba(203, 213, 225, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/70 {
    --tw-gradient-from: rgba(203, 213, 225, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/75 {
    --tw-gradient-from: rgba(203, 213, 225, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/80 {
    --tw-gradient-from: rgba(203, 213, 225, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/90 {
    --tw-gradient-from: rgba(203, 213, 225, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-300\/95 {
    --tw-gradient-from: rgba(203, 213, 225, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400 {
    --tw-gradient-from: #94a3b8 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/0 {
    --tw-gradient-from: rgba(148, 163, 184, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/10 {
    --tw-gradient-from: rgba(148, 163, 184, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/100 {
    --tw-gradient-from: #94a3b8 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/20 {
    --tw-gradient-from: rgba(148, 163, 184, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/25 {
    --tw-gradient-from: rgba(148, 163, 184, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/30 {
    --tw-gradient-from: rgba(148, 163, 184, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/40 {
    --tw-gradient-from: rgba(148, 163, 184, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/5 {
    --tw-gradient-from: rgba(148, 163, 184, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/50 {
    --tw-gradient-from: rgba(148, 163, 184, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/60 {
    --tw-gradient-from: rgba(148, 163, 184, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/70 {
    --tw-gradient-from: rgba(148, 163, 184, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/75 {
    --tw-gradient-from: rgba(148, 163, 184, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/80 {
    --tw-gradient-from: rgba(148, 163, 184, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/90 {
    --tw-gradient-from: rgba(148, 163, 184, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-400\/95 {
    --tw-gradient-from: rgba(148, 163, 184, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500 {
    --tw-gradient-from: #64748b var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/0 {
    --tw-gradient-from: rgba(100, 116, 139, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/10 {
    --tw-gradient-from: rgba(100, 116, 139, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/100 {
    --tw-gradient-from: #64748b var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/20 {
    --tw-gradient-from: rgba(100, 116, 139, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/25 {
    --tw-gradient-from: rgba(100, 116, 139, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/30 {
    --tw-gradient-from: rgba(100, 116, 139, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/40 {
    --tw-gradient-from: rgba(100, 116, 139, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/5 {
    --tw-gradient-from: rgba(100, 116, 139, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/50 {
    --tw-gradient-from: rgba(100, 116, 139, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/60 {
    --tw-gradient-from: rgba(100, 116, 139, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/70 {
    --tw-gradient-from: rgba(100, 116, 139, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/75 {
    --tw-gradient-from: rgba(100, 116, 139, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/80 {
    --tw-gradient-from: rgba(100, 116, 139, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/90 {
    --tw-gradient-from: rgba(100, 116, 139, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-500\/95 {
    --tw-gradient-from: rgba(100, 116, 139, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600 {
    --tw-gradient-from: #475569 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/0 {
    --tw-gradient-from: rgba(71, 85, 105, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/10 {
    --tw-gradient-from: rgba(71, 85, 105, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/100 {
    --tw-gradient-from: #475569 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/20 {
    --tw-gradient-from: rgba(71, 85, 105, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/25 {
    --tw-gradient-from: rgba(71, 85, 105, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/30 {
    --tw-gradient-from: rgba(71, 85, 105, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/40 {
    --tw-gradient-from: rgba(71, 85, 105, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/5 {
    --tw-gradient-from: rgba(71, 85, 105, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/50 {
    --tw-gradient-from: rgba(71, 85, 105, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/60 {
    --tw-gradient-from: rgba(71, 85, 105, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/70 {
    --tw-gradient-from: rgba(71, 85, 105, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/75 {
    --tw-gradient-from: rgba(71, 85, 105, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/80 {
    --tw-gradient-from: rgba(71, 85, 105, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/90 {
    --tw-gradient-from: rgba(71, 85, 105, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-600\/95 {
    --tw-gradient-from: rgba(71, 85, 105, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700 {
    --tw-gradient-from: #334155 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/0 {
    --tw-gradient-from: rgba(51, 65, 85, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/10 {
    --tw-gradient-from: rgba(51, 65, 85, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/100 {
    --tw-gradient-from: #334155 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/20 {
    --tw-gradient-from: rgba(51, 65, 85, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/25 {
    --tw-gradient-from: rgba(51, 65, 85, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/30 {
    --tw-gradient-from: rgba(51, 65, 85, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/40 {
    --tw-gradient-from: rgba(51, 65, 85, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/5 {
    --tw-gradient-from: rgba(51, 65, 85, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/50 {
    --tw-gradient-from: rgba(51, 65, 85, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/60 {
    --tw-gradient-from: rgba(51, 65, 85, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/70 {
    --tw-gradient-from: rgba(51, 65, 85, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/75 {
    --tw-gradient-from: rgba(51, 65, 85, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/80 {
    --tw-gradient-from: rgba(51, 65, 85, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/90 {
    --tw-gradient-from: rgba(51, 65, 85, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-700\/95 {
    --tw-gradient-from: rgba(51, 65, 85, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800 {
    --tw-gradient-from: #1e293b var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/0 {
    --tw-gradient-from: rgba(30, 41, 59, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/10 {
    --tw-gradient-from: rgba(30, 41, 59, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/100 {
    --tw-gradient-from: #1e293b var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/20 {
    --tw-gradient-from: rgba(30, 41, 59, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/25 {
    --tw-gradient-from: rgba(30, 41, 59, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/30 {
    --tw-gradient-from: rgba(30, 41, 59, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/40 {
    --tw-gradient-from: rgba(30, 41, 59, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/5 {
    --tw-gradient-from: rgba(30, 41, 59, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/50 {
    --tw-gradient-from: rgba(30, 41, 59, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/60 {
    --tw-gradient-from: rgba(30, 41, 59, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/70 {
    --tw-gradient-from: rgba(30, 41, 59, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/75 {
    --tw-gradient-from: rgba(30, 41, 59, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/80 {
    --tw-gradient-from: rgba(30, 41, 59, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/90 {
    --tw-gradient-from: rgba(30, 41, 59, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-slate-800\/95 {
    --tw-gradient-from: rgba(30, 41, 59, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100 {
    --tw-gradient-from: #ede9fe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/0 {
    --tw-gradient-from: rgba(237, 233, 254, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/10 {
    --tw-gradient-from: rgba(237, 233, 254, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/100 {
    --tw-gradient-from: #ede9fe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/20 {
    --tw-gradient-from: rgba(237, 233, 254, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/25 {
    --tw-gradient-from: rgba(237, 233, 254, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/30 {
    --tw-gradient-from: rgba(237, 233, 254, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/40 {
    --tw-gradient-from: rgba(237, 233, 254, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/5 {
    --tw-gradient-from: rgba(237, 233, 254, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/50 {
    --tw-gradient-from: rgba(237, 233, 254, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/60 {
    --tw-gradient-from: rgba(237, 233, 254, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/70 {
    --tw-gradient-from: rgba(237, 233, 254, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/75 {
    --tw-gradient-from: rgba(237, 233, 254, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/80 {
    --tw-gradient-from: rgba(237, 233, 254, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/90 {
    --tw-gradient-from: rgba(237, 233, 254, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-100\/95 {
    --tw-gradient-from: rgba(237, 233, 254, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200 {
    --tw-gradient-from: #ddd6fe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/0 {
    --tw-gradient-from: rgba(221, 214, 254, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/10 {
    --tw-gradient-from: rgba(221, 214, 254, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/100 {
    --tw-gradient-from: #ddd6fe var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/20 {
    --tw-gradient-from: rgba(221, 214, 254, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/25 {
    --tw-gradient-from: rgba(221, 214, 254, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/30 {
    --tw-gradient-from: rgba(221, 214, 254, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/40 {
    --tw-gradient-from: rgba(221, 214, 254, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/5 {
    --tw-gradient-from: rgba(221, 214, 254, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/50 {
    --tw-gradient-from: rgba(221, 214, 254, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/60 {
    --tw-gradient-from: rgba(221, 214, 254, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/70 {
    --tw-gradient-from: rgba(221, 214, 254, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/75 {
    --tw-gradient-from: rgba(221, 214, 254, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/80 {
    --tw-gradient-from: rgba(221, 214, 254, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/90 {
    --tw-gradient-from: rgba(221, 214, 254, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-200\/95 {
    --tw-gradient-from: rgba(221, 214, 254, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300 {
    --tw-gradient-from: #c4b5fd var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/0 {
    --tw-gradient-from: rgba(196, 181, 253, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/10 {
    --tw-gradient-from: rgba(196, 181, 253, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/100 {
    --tw-gradient-from: #c4b5fd var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/20 {
    --tw-gradient-from: rgba(196, 181, 253, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/25 {
    --tw-gradient-from: rgba(196, 181, 253, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/30 {
    --tw-gradient-from: rgba(196, 181, 253, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/40 {
    --tw-gradient-from: rgba(196, 181, 253, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/5 {
    --tw-gradient-from: rgba(196, 181, 253, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/50 {
    --tw-gradient-from: rgba(196, 181, 253, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/60 {
    --tw-gradient-from: rgba(196, 181, 253, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/70 {
    --tw-gradient-from: rgba(196, 181, 253, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/75 {
    --tw-gradient-from: rgba(196, 181, 253, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/80 {
    --tw-gradient-from: rgba(196, 181, 253, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/90 {
    --tw-gradient-from: rgba(196, 181, 253, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-300\/95 {
    --tw-gradient-from: rgba(196, 181, 253, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400 {
    --tw-gradient-from: #a78bfa var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/0 {
    --tw-gradient-from: rgba(167, 139, 250, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/10 {
    --tw-gradient-from: rgba(167, 139, 250, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/100 {
    --tw-gradient-from: #a78bfa var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/20 {
    --tw-gradient-from: rgba(167, 139, 250, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/25 {
    --tw-gradient-from: rgba(167, 139, 250, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/30 {
    --tw-gradient-from: rgba(167, 139, 250, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/40 {
    --tw-gradient-from: rgba(167, 139, 250, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/5 {
    --tw-gradient-from: rgba(167, 139, 250, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/50 {
    --tw-gradient-from: rgba(167, 139, 250, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/60 {
    --tw-gradient-from: rgba(167, 139, 250, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/70 {
    --tw-gradient-from: rgba(167, 139, 250, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/75 {
    --tw-gradient-from: rgba(167, 139, 250, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/80 {
    --tw-gradient-from: rgba(167, 139, 250, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/90 {
    --tw-gradient-from: rgba(167, 139, 250, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-400\/95 {
    --tw-gradient-from: rgba(167, 139, 250, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500 {
    --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/0 {
    --tw-gradient-from: rgba(139, 92, 246, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/10 {
    --tw-gradient-from: rgba(139, 92, 246, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/100 {
    --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/20 {
    --tw-gradient-from: rgba(139, 92, 246, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/25 {
    --tw-gradient-from: rgba(139, 92, 246, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/30 {
    --tw-gradient-from: rgba(139, 92, 246, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/40 {
    --tw-gradient-from: rgba(139, 92, 246, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/5 {
    --tw-gradient-from: rgba(139, 92, 246, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/50 {
    --tw-gradient-from: rgba(139, 92, 246, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/60 {
    --tw-gradient-from: rgba(139, 92, 246, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/70 {
    --tw-gradient-from: rgba(139, 92, 246, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/75 {
    --tw-gradient-from: rgba(139, 92, 246, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/80 {
    --tw-gradient-from: rgba(139, 92, 246, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/90 {
    --tw-gradient-from: rgba(139, 92, 246, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-500\/95 {
    --tw-gradient-from: rgba(139, 92, 246, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600 {
    --tw-gradient-from: #7c3aed var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/0 {
    --tw-gradient-from: rgba(124, 58, 237, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/10 {
    --tw-gradient-from: rgba(124, 58, 237, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/100 {
    --tw-gradient-from: #7c3aed var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/20 {
    --tw-gradient-from: rgba(124, 58, 237, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/25 {
    --tw-gradient-from: rgba(124, 58, 237, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/30 {
    --tw-gradient-from: rgba(124, 58, 237, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/40 {
    --tw-gradient-from: rgba(124, 58, 237, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/5 {
    --tw-gradient-from: rgba(124, 58, 237, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/50 {
    --tw-gradient-from: rgba(124, 58, 237, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/60 {
    --tw-gradient-from: rgba(124, 58, 237, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/70 {
    --tw-gradient-from: rgba(124, 58, 237, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/75 {
    --tw-gradient-from: rgba(124, 58, 237, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/80 {
    --tw-gradient-from: rgba(124, 58, 237, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/90 {
    --tw-gradient-from: rgba(124, 58, 237, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-600\/95 {
    --tw-gradient-from: rgba(124, 58, 237, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700 {
    --tw-gradient-from: #6d28d9 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/0 {
    --tw-gradient-from: rgba(109, 40, 217, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/10 {
    --tw-gradient-from: rgba(109, 40, 217, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/100 {
    --tw-gradient-from: #6d28d9 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/20 {
    --tw-gradient-from: rgba(109, 40, 217, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/25 {
    --tw-gradient-from: rgba(109, 40, 217, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/30 {
    --tw-gradient-from: rgba(109, 40, 217, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/40 {
    --tw-gradient-from: rgba(109, 40, 217, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/5 {
    --tw-gradient-from: rgba(109, 40, 217, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/50 {
    --tw-gradient-from: rgba(109, 40, 217, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/60 {
    --tw-gradient-from: rgba(109, 40, 217, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/70 {
    --tw-gradient-from: rgba(109, 40, 217, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/75 {
    --tw-gradient-from: rgba(109, 40, 217, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/80 {
    --tw-gradient-from: rgba(109, 40, 217, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/90 {
    --tw-gradient-from: rgba(109, 40, 217, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-700\/95 {
    --tw-gradient-from: rgba(109, 40, 217, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800 {
    --tw-gradient-from: #5b21b6 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/0 {
    --tw-gradient-from: rgba(91, 33, 182, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/10 {
    --tw-gradient-from: rgba(91, 33, 182, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/100 {
    --tw-gradient-from: #5b21b6 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/20 {
    --tw-gradient-from: rgba(91, 33, 182, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/25 {
    --tw-gradient-from: rgba(91, 33, 182, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/30 {
    --tw-gradient-from: rgba(91, 33, 182, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/40 {
    --tw-gradient-from: rgba(91, 33, 182, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/5 {
    --tw-gradient-from: rgba(91, 33, 182, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/50 {
    --tw-gradient-from: rgba(91, 33, 182, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/60 {
    --tw-gradient-from: rgba(91, 33, 182, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/70 {
    --tw-gradient-from: rgba(91, 33, 182, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/75 {
    --tw-gradient-from: rgba(91, 33, 182, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/80 {
    --tw-gradient-from: rgba(91, 33, 182, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/90 {
    --tw-gradient-from: rgba(91, 33, 182, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-violet-800\/95 {
    --tw-gradient-from: rgba(91, 33, 182, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100 {
    --tw-gradient-from: #fef9c3 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/0 {
    --tw-gradient-from: hsla(55, 97%, 88%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/10 {
    --tw-gradient-from: hsla(55, 97%, 88%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/100 {
    --tw-gradient-from: #fef9c3 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/20 {
    --tw-gradient-from: hsla(55, 97%, 88%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/25 {
    --tw-gradient-from: hsla(55, 97%, 88%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/30 {
    --tw-gradient-from: hsla(55, 97%, 88%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/40 {
    --tw-gradient-from: hsla(55, 97%, 88%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/5 {
    --tw-gradient-from: hsla(55, 97%, 88%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/50 {
    --tw-gradient-from: hsla(55, 97%, 88%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/60 {
    --tw-gradient-from: hsla(55, 97%, 88%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/70 {
    --tw-gradient-from: hsla(55, 97%, 88%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/75 {
    --tw-gradient-from: hsla(55, 97%, 88%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/80 {
    --tw-gradient-from: hsla(55, 97%, 88%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/90 {
    --tw-gradient-from: hsla(55, 97%, 88%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-100\/95 {
    --tw-gradient-from: hsla(55, 97%, 88%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200 {
    --tw-gradient-from: #fef08a var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/0 {
    --tw-gradient-from: hsla(53, 98%, 77%, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/10 {
    --tw-gradient-from: hsla(53, 98%, 77%, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/100 {
    --tw-gradient-from: #fef08a var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/20 {
    --tw-gradient-from: hsla(53, 98%, 77%, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/25 {
    --tw-gradient-from: hsla(53, 98%, 77%, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/30 {
    --tw-gradient-from: hsla(53, 98%, 77%, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/40 {
    --tw-gradient-from: hsla(53, 98%, 77%, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/5 {
    --tw-gradient-from: hsla(53, 98%, 77%, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/50 {
    --tw-gradient-from: hsla(53, 98%, 77%, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/60 {
    --tw-gradient-from: hsla(53, 98%, 77%, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/70 {
    --tw-gradient-from: hsla(53, 98%, 77%, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/75 {
    --tw-gradient-from: hsla(53, 98%, 77%, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/80 {
    --tw-gradient-from: hsla(53, 98%, 77%, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/90 {
    --tw-gradient-from: hsla(53, 98%, 77%, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-200\/95 {
    --tw-gradient-from: hsla(53, 98%, 77%, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300 {
    --tw-gradient-from: #fde047 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/0 {
    --tw-gradient-from: rgba(253, 224, 71, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/10 {
    --tw-gradient-from: rgba(253, 224, 71, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/100 {
    --tw-gradient-from: #fde047 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/20 {
    --tw-gradient-from: rgba(253, 224, 71, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/25 {
    --tw-gradient-from: rgba(253, 224, 71, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/30 {
    --tw-gradient-from: rgba(253, 224, 71, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/40 {
    --tw-gradient-from: rgba(253, 224, 71, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/5 {
    --tw-gradient-from: rgba(253, 224, 71, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/50 {
    --tw-gradient-from: rgba(253, 224, 71, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/60 {
    --tw-gradient-from: rgba(253, 224, 71, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/70 {
    --tw-gradient-from: rgba(253, 224, 71, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/75 {
    --tw-gradient-from: rgba(253, 224, 71, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/80 {
    --tw-gradient-from: rgba(253, 224, 71, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/90 {
    --tw-gradient-from: rgba(253, 224, 71, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-300\/95 {
    --tw-gradient-from: rgba(253, 224, 71, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400 {
    --tw-gradient-from: #facc15 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/0 {
    --tw-gradient-from: rgba(250, 204, 21, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/10 {
    --tw-gradient-from: rgba(250, 204, 21, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/100 {
    --tw-gradient-from: #facc15 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/20 {
    --tw-gradient-from: rgba(250, 204, 21, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/25 {
    --tw-gradient-from: rgba(250, 204, 21, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/30 {
    --tw-gradient-from: rgba(250, 204, 21, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/40 {
    --tw-gradient-from: rgba(250, 204, 21, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/5 {
    --tw-gradient-from: rgba(250, 204, 21, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/50 {
    --tw-gradient-from: rgba(250, 204, 21, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/60 {
    --tw-gradient-from: rgba(250, 204, 21, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/70 {
    --tw-gradient-from: rgba(250, 204, 21, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/75 {
    --tw-gradient-from: rgba(250, 204, 21, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/80 {
    --tw-gradient-from: rgba(250, 204, 21, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/90 {
    --tw-gradient-from: rgba(250, 204, 21, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-400\/95 {
    --tw-gradient-from: rgba(250, 204, 21, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/0 {
    --tw-gradient-from: rgba(234, 179, 8, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/10 {
    --tw-gradient-from: rgba(234, 179, 8, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/100 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/20 {
    --tw-gradient-from: rgba(234, 179, 8, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/25 {
    --tw-gradient-from: rgba(234, 179, 8, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/30 {
    --tw-gradient-from: rgba(234, 179, 8, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/40 {
    --tw-gradient-from: rgba(234, 179, 8, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/5 {
    --tw-gradient-from: rgba(234, 179, 8, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/50 {
    --tw-gradient-from: rgba(234, 179, 8, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/60 {
    --tw-gradient-from: rgba(234, 179, 8, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/70 {
    --tw-gradient-from: rgba(234, 179, 8, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/75 {
    --tw-gradient-from: rgba(234, 179, 8, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/80 {
    --tw-gradient-from: rgba(234, 179, 8, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/90 {
    --tw-gradient-from: rgba(234, 179, 8, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-500\/95 {
    --tw-gradient-from: rgba(234, 179, 8, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600 {
    --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/0 {
    --tw-gradient-from: rgba(202, 138, 4, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/10 {
    --tw-gradient-from: rgba(202, 138, 4, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/100 {
    --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/20 {
    --tw-gradient-from: rgba(202, 138, 4, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/25 {
    --tw-gradient-from: rgba(202, 138, 4, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/30 {
    --tw-gradient-from: rgba(202, 138, 4, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/40 {
    --tw-gradient-from: rgba(202, 138, 4, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/5 {
    --tw-gradient-from: rgba(202, 138, 4, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/50 {
    --tw-gradient-from: rgba(202, 138, 4, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/60 {
    --tw-gradient-from: rgba(202, 138, 4, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/70 {
    --tw-gradient-from: rgba(202, 138, 4, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/75 {
    --tw-gradient-from: rgba(202, 138, 4, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/80 {
    --tw-gradient-from: rgba(202, 138, 4, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/90 {
    --tw-gradient-from: rgba(202, 138, 4, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-600\/95 {
    --tw-gradient-from: rgba(202, 138, 4, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700 {
    --tw-gradient-from: #a16207 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/0 {
    --tw-gradient-from: rgba(161, 98, 7, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/10 {
    --tw-gradient-from: rgba(161, 98, 7, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/100 {
    --tw-gradient-from: #a16207 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/20 {
    --tw-gradient-from: rgba(161, 98, 7, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/25 {
    --tw-gradient-from: rgba(161, 98, 7, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/30 {
    --tw-gradient-from: rgba(161, 98, 7, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/40 {
    --tw-gradient-from: rgba(161, 98, 7, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/5 {
    --tw-gradient-from: rgba(161, 98, 7, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/50 {
    --tw-gradient-from: rgba(161, 98, 7, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/60 {
    --tw-gradient-from: rgba(161, 98, 7, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/70 {
    --tw-gradient-from: rgba(161, 98, 7, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/75 {
    --tw-gradient-from: rgba(161, 98, 7, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/80 {
    --tw-gradient-from: rgba(161, 98, 7, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/90 {
    --tw-gradient-from: rgba(161, 98, 7, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-700\/95 {
    --tw-gradient-from: rgba(161, 98, 7, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800 {
    --tw-gradient-from: #854d0e var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/0 {
    --tw-gradient-from: rgba(133, 77, 14, 0) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/10 {
    --tw-gradient-from: rgba(133, 77, 14, .1) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/100 {
    --tw-gradient-from: #854d0e var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/20 {
    --tw-gradient-from: rgba(133, 77, 14, .2) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/25 {
    --tw-gradient-from: rgba(133, 77, 14, .25) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/30 {
    --tw-gradient-from: rgba(133, 77, 14, .3) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/40 {
    --tw-gradient-from: rgba(133, 77, 14, .4) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/5 {
    --tw-gradient-from: rgba(133, 77, 14, .05) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/50 {
    --tw-gradient-from: rgba(133, 77, 14, .5) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/60 {
    --tw-gradient-from: rgba(133, 77, 14, .6) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/70 {
    --tw-gradient-from: rgba(133, 77, 14, .7) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/75 {
    --tw-gradient-from: rgba(133, 77, 14, .75) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/80 {
    --tw-gradient-from: rgba(133, 77, 14, .8) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/90 {
    --tw-gradient-from: rgba(133, 77, 14, .9) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.\!from-yellow-800\/95 {
    --tw-gradient-from: rgba(133, 77, 14, .95) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important
}

.from-black\/90 {
    --tw-gradient-from: rgba(0, 0, 0, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100 {
    --tw-gradient-from: #dbeafe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/0 {
    --tw-gradient-from: rgba(219, 234, 254, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/10 {
    --tw-gradient-from: rgba(219, 234, 254, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/100 {
    --tw-gradient-from: #dbeafe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/20 {
    --tw-gradient-from: rgba(219, 234, 254, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/25 {
    --tw-gradient-from: rgba(219, 234, 254, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/30 {
    --tw-gradient-from: rgba(219, 234, 254, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/40 {
    --tw-gradient-from: rgba(219, 234, 254, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/5 {
    --tw-gradient-from: rgba(219, 234, 254, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/50 {
    --tw-gradient-from: rgba(219, 234, 254, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/60 {
    --tw-gradient-from: rgba(219, 234, 254, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/70 {
    --tw-gradient-from: rgba(219, 234, 254, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/75 {
    --tw-gradient-from: rgba(219, 234, 254, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/80 {
    --tw-gradient-from: rgba(219, 234, 254, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/90 {
    --tw-gradient-from: rgba(219, 234, 254, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100\/95 {
    --tw-gradient-from: rgba(219, 234, 254, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(219, 234, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200 {
    --tw-gradient-from: #bfdbfe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/0 {
    --tw-gradient-from: rgba(191, 219, 254, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/10 {
    --tw-gradient-from: rgba(191, 219, 254, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/100 {
    --tw-gradient-from: #bfdbfe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/20 {
    --tw-gradient-from: rgba(191, 219, 254, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/25 {
    --tw-gradient-from: rgba(191, 219, 254, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/30 {
    --tw-gradient-from: rgba(191, 219, 254, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/40 {
    --tw-gradient-from: rgba(191, 219, 254, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/5 {
    --tw-gradient-from: rgba(191, 219, 254, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/50 {
    --tw-gradient-from: rgba(191, 219, 254, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/60 {
    --tw-gradient-from: rgba(191, 219, 254, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/70 {
    --tw-gradient-from: rgba(191, 219, 254, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/75 {
    --tw-gradient-from: rgba(191, 219, 254, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/80 {
    --tw-gradient-from: rgba(191, 219, 254, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/90 {
    --tw-gradient-from: rgba(191, 219, 254, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200\/95 {
    --tw-gradient-from: rgba(191, 219, 254, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(191, 219, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300 {
    --tw-gradient-from: #93c5fd var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/0 {
    --tw-gradient-from: rgba(147, 197, 253, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/10 {
    --tw-gradient-from: rgba(147, 197, 253, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/100 {
    --tw-gradient-from: #93c5fd var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/20 {
    --tw-gradient-from: rgba(147, 197, 253, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/25 {
    --tw-gradient-from: rgba(147, 197, 253, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/30 {
    --tw-gradient-from: rgba(147, 197, 253, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/40 {
    --tw-gradient-from: rgba(147, 197, 253, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/5 {
    --tw-gradient-from: rgba(147, 197, 253, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/50 {
    --tw-gradient-from: rgba(147, 197, 253, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/60 {
    --tw-gradient-from: rgba(147, 197, 253, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/70 {
    --tw-gradient-from: rgba(147, 197, 253, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/75 {
    --tw-gradient-from: rgba(147, 197, 253, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/80 {
    --tw-gradient-from: rgba(147, 197, 253, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/90 {
    --tw-gradient-from: rgba(147, 197, 253, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-300\/95 {
    --tw-gradient-from: rgba(147, 197, 253, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(147, 197, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400 {
    --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/0 {
    --tw-gradient-from: rgba(96, 165, 250, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/10 {
    --tw-gradient-from: rgba(96, 165, 250, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/100 {
    --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/20 {
    --tw-gradient-from: rgba(96, 165, 250, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/25 {
    --tw-gradient-from: rgba(96, 165, 250, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/30 {
    --tw-gradient-from: rgba(96, 165, 250, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/40 {
    --tw-gradient-from: rgba(96, 165, 250, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/5 {
    --tw-gradient-from: rgba(96, 165, 250, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/50 {
    --tw-gradient-from: rgba(96, 165, 250, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/60 {
    --tw-gradient-from: rgba(96, 165, 250, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/70 {
    --tw-gradient-from: rgba(96, 165, 250, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/75 {
    --tw-gradient-from: rgba(96, 165, 250, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/80 {
    --tw-gradient-from: rgba(96, 165, 250, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/90 {
    --tw-gradient-from: rgba(96, 165, 250, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-400\/95 {
    --tw-gradient-from: rgba(96, 165, 250, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(96, 165, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/0 {
    --tw-gradient-from: rgba(59, 130, 246, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/10 {
    --tw-gradient-from: rgba(59, 130, 246, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/100 {
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/20 {
    --tw-gradient-from: rgba(59, 130, 246, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/25 {
    --tw-gradient-from: rgba(59, 130, 246, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/30 {
    --tw-gradient-from: rgba(59, 130, 246, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/40 {
    --tw-gradient-from: rgba(59, 130, 246, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/5 {
    --tw-gradient-from: rgba(59, 130, 246, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/50 {
    --tw-gradient-from: rgba(59, 130, 246, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/60 {
    --tw-gradient-from: rgba(59, 130, 246, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/70 {
    --tw-gradient-from: rgba(59, 130, 246, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/75 {
    --tw-gradient-from: rgba(59, 130, 246, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/80 {
    --tw-gradient-from: rgba(59, 130, 246, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/90 {
    --tw-gradient-from: rgba(59, 130, 246, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500\/95 {
    --tw-gradient-from: rgba(59, 130, 246, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(59, 130, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600 {
    --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/0 {
    --tw-gradient-from: rgba(37, 99, 235, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/10 {
    --tw-gradient-from: rgba(37, 99, 235, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/100 {
    --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/20 {
    --tw-gradient-from: rgba(37, 99, 235, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/25 {
    --tw-gradient-from: rgba(37, 99, 235, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/30 {
    --tw-gradient-from: rgba(37, 99, 235, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/40 {
    --tw-gradient-from: rgba(37, 99, 235, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/5 {
    --tw-gradient-from: rgba(37, 99, 235, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/50 {
    --tw-gradient-from: rgba(37, 99, 235, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/60 {
    --tw-gradient-from: rgba(37, 99, 235, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/70 {
    --tw-gradient-from: rgba(37, 99, 235, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/75 {
    --tw-gradient-from: rgba(37, 99, 235, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/80 {
    --tw-gradient-from: rgba(37, 99, 235, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/90 {
    --tw-gradient-from: rgba(37, 99, 235, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-600\/95 {
    --tw-gradient-from: rgba(37, 99, 235, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(37, 99, 235, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700 {
    --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/0 {
    --tw-gradient-from: rgba(29, 78, 216, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/10 {
    --tw-gradient-from: rgba(29, 78, 216, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/100 {
    --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/20 {
    --tw-gradient-from: rgba(29, 78, 216, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/25 {
    --tw-gradient-from: rgba(29, 78, 216, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/30 {
    --tw-gradient-from: rgba(29, 78, 216, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/40 {
    --tw-gradient-from: rgba(29, 78, 216, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/5 {
    --tw-gradient-from: rgba(29, 78, 216, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/50 {
    --tw-gradient-from: rgba(29, 78, 216, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/60 {
    --tw-gradient-from: rgba(29, 78, 216, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/70 {
    --tw-gradient-from: rgba(29, 78, 216, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/75 {
    --tw-gradient-from: rgba(29, 78, 216, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/80 {
    --tw-gradient-from: rgba(29, 78, 216, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/90 {
    --tw-gradient-from: rgba(29, 78, 216, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-700\/95 {
    --tw-gradient-from: rgba(29, 78, 216, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(29, 78, 216, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800 {
    --tw-gradient-from: #1e40af var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/0 {
    --tw-gradient-from: rgba(30, 64, 175, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/10 {
    --tw-gradient-from: rgba(30, 64, 175, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/100 {
    --tw-gradient-from: #1e40af var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/20 {
    --tw-gradient-from: rgba(30, 64, 175, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/25 {
    --tw-gradient-from: rgba(30, 64, 175, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/30 {
    --tw-gradient-from: rgba(30, 64, 175, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/40 {
    --tw-gradient-from: rgba(30, 64, 175, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/5 {
    --tw-gradient-from: rgba(30, 64, 175, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/50 {
    --tw-gradient-from: rgba(30, 64, 175, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/60 {
    --tw-gradient-from: rgba(30, 64, 175, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/70 {
    --tw-gradient-from: rgba(30, 64, 175, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/75 {
    --tw-gradient-from: rgba(30, 64, 175, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/80 {
    --tw-gradient-from: rgba(30, 64, 175, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/90 {
    --tw-gradient-from: rgba(30, 64, 175, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-800\/95 {
    --tw-gradient-from: rgba(30, 64, 175, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 64, 175, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100 {
    --tw-gradient-from: #d1fae5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/0 {
    --tw-gradient-from: rgba(209, 250, 229, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/10 {
    --tw-gradient-from: rgba(209, 250, 229, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/100 {
    --tw-gradient-from: #d1fae5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/20 {
    --tw-gradient-from: rgba(209, 250, 229, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/25 {
    --tw-gradient-from: rgba(209, 250, 229, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/30 {
    --tw-gradient-from: rgba(209, 250, 229, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/40 {
    --tw-gradient-from: rgba(209, 250, 229, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/5 {
    --tw-gradient-from: rgba(209, 250, 229, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/50 {
    --tw-gradient-from: rgba(209, 250, 229, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/60 {
    --tw-gradient-from: rgba(209, 250, 229, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/70 {
    --tw-gradient-from: rgba(209, 250, 229, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/75 {
    --tw-gradient-from: rgba(209, 250, 229, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/80 {
    --tw-gradient-from: rgba(209, 250, 229, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/90 {
    --tw-gradient-from: rgba(209, 250, 229, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-100\/95 {
    --tw-gradient-from: rgba(209, 250, 229, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(209, 250, 229, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200 {
    --tw-gradient-from: #a7f3d0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/0 {
    --tw-gradient-from: rgba(167, 243, 208, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/10 {
    --tw-gradient-from: rgba(167, 243, 208, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/100 {
    --tw-gradient-from: #a7f3d0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/20 {
    --tw-gradient-from: rgba(167, 243, 208, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/25 {
    --tw-gradient-from: rgba(167, 243, 208, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/30 {
    --tw-gradient-from: rgba(167, 243, 208, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/40 {
    --tw-gradient-from: rgba(167, 243, 208, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/5 {
    --tw-gradient-from: rgba(167, 243, 208, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/50 {
    --tw-gradient-from: rgba(167, 243, 208, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/60 {
    --tw-gradient-from: rgba(167, 243, 208, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/70 {
    --tw-gradient-from: rgba(167, 243, 208, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/75 {
    --tw-gradient-from: rgba(167, 243, 208, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/80 {
    --tw-gradient-from: rgba(167, 243, 208, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/90 {
    --tw-gradient-from: rgba(167, 243, 208, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-200\/95 {
    --tw-gradient-from: rgba(167, 243, 208, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 243, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300 {
    --tw-gradient-from: #6ee7b7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/0 {
    --tw-gradient-from: rgba(110, 231, 183, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/10 {
    --tw-gradient-from: rgba(110, 231, 183, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/100 {
    --tw-gradient-from: #6ee7b7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/20 {
    --tw-gradient-from: rgba(110, 231, 183, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/25 {
    --tw-gradient-from: rgba(110, 231, 183, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/30 {
    --tw-gradient-from: rgba(110, 231, 183, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/40 {
    --tw-gradient-from: rgba(110, 231, 183, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/5 {
    --tw-gradient-from: rgba(110, 231, 183, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/50 {
    --tw-gradient-from: rgba(110, 231, 183, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/60 {
    --tw-gradient-from: rgba(110, 231, 183, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/70 {
    --tw-gradient-from: rgba(110, 231, 183, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/75 {
    --tw-gradient-from: rgba(110, 231, 183, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/80 {
    --tw-gradient-from: rgba(110, 231, 183, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/90 {
    --tw-gradient-from: rgba(110, 231, 183, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-300\/95 {
    --tw-gradient-from: rgba(110, 231, 183, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(110, 231, 183, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400 {
    --tw-gradient-from: #34d399 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/0 {
    --tw-gradient-from: rgba(52, 211, 153, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/10 {
    --tw-gradient-from: rgba(52, 211, 153, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/100 {
    --tw-gradient-from: #34d399 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/20 {
    --tw-gradient-from: rgba(52, 211, 153, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/25 {
    --tw-gradient-from: rgba(52, 211, 153, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/30 {
    --tw-gradient-from: rgba(52, 211, 153, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/40 {
    --tw-gradient-from: rgba(52, 211, 153, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/5 {
    --tw-gradient-from: rgba(52, 211, 153, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/50 {
    --tw-gradient-from: rgba(52, 211, 153, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/60 {
    --tw-gradient-from: rgba(52, 211, 153, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/70 {
    --tw-gradient-from: rgba(52, 211, 153, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/75 {
    --tw-gradient-from: rgba(52, 211, 153, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/80 {
    --tw-gradient-from: rgba(52, 211, 153, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/90 {
    --tw-gradient-from: rgba(52, 211, 153, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-400\/95 {
    --tw-gradient-from: rgba(52, 211, 153, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(52, 211, 153, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500 {
    --tw-gradient-from: #10b981 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/0 {
    --tw-gradient-from: rgba(16, 185, 129, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/10 {
    --tw-gradient-from: rgba(16, 185, 129, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/100 {
    --tw-gradient-from: #10b981 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/20 {
    --tw-gradient-from: rgba(16, 185, 129, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/25 {
    --tw-gradient-from: rgba(16, 185, 129, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/30 {
    --tw-gradient-from: rgba(16, 185, 129, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/40 {
    --tw-gradient-from: rgba(16, 185, 129, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/5 {
    --tw-gradient-from: rgba(16, 185, 129, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/50 {
    --tw-gradient-from: rgba(16, 185, 129, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/60 {
    --tw-gradient-from: rgba(16, 185, 129, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/70 {
    --tw-gradient-from: rgba(16, 185, 129, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/75 {
    --tw-gradient-from: rgba(16, 185, 129, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/80 {
    --tw-gradient-from: rgba(16, 185, 129, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/90 {
    --tw-gradient-from: rgba(16, 185, 129, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-500\/95 {
    --tw-gradient-from: rgba(16, 185, 129, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(16, 185, 129, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600 {
    --tw-gradient-from: #059669 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/0 {
    --tw-gradient-from: rgba(5, 150, 105, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/10 {
    --tw-gradient-from: rgba(5, 150, 105, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/100 {
    --tw-gradient-from: #059669 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/20 {
    --tw-gradient-from: rgba(5, 150, 105, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/25 {
    --tw-gradient-from: rgba(5, 150, 105, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/30 {
    --tw-gradient-from: rgba(5, 150, 105, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/40 {
    --tw-gradient-from: rgba(5, 150, 105, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/5 {
    --tw-gradient-from: rgba(5, 150, 105, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/50 {
    --tw-gradient-from: rgba(5, 150, 105, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/60 {
    --tw-gradient-from: rgba(5, 150, 105, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/70 {
    --tw-gradient-from: rgba(5, 150, 105, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/75 {
    --tw-gradient-from: rgba(5, 150, 105, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/80 {
    --tw-gradient-from: rgba(5, 150, 105, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/90 {
    --tw-gradient-from: rgba(5, 150, 105, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-600\/95 {
    --tw-gradient-from: rgba(5, 150, 105, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(5, 150, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700 {
    --tw-gradient-from: #047857 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/0 {
    --tw-gradient-from: rgba(4, 120, 87, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/10 {
    --tw-gradient-from: rgba(4, 120, 87, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/100 {
    --tw-gradient-from: #047857 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/20 {
    --tw-gradient-from: rgba(4, 120, 87, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/25 {
    --tw-gradient-from: rgba(4, 120, 87, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/30 {
    --tw-gradient-from: rgba(4, 120, 87, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/40 {
    --tw-gradient-from: rgba(4, 120, 87, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/5 {
    --tw-gradient-from: rgba(4, 120, 87, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/50 {
    --tw-gradient-from: rgba(4, 120, 87, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/60 {
    --tw-gradient-from: rgba(4, 120, 87, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/70 {
    --tw-gradient-from: rgba(4, 120, 87, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/75 {
    --tw-gradient-from: rgba(4, 120, 87, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/80 {
    --tw-gradient-from: rgba(4, 120, 87, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/90 {
    --tw-gradient-from: rgba(4, 120, 87, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-700\/95 {
    --tw-gradient-from: rgba(4, 120, 87, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(4, 120, 87, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800 {
    --tw-gradient-from: #065f46 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/0 {
    --tw-gradient-from: rgba(6, 95, 70, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/10 {
    --tw-gradient-from: rgba(6, 95, 70, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/100 {
    --tw-gradient-from: #065f46 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/20 {
    --tw-gradient-from: rgba(6, 95, 70, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/25 {
    --tw-gradient-from: rgba(6, 95, 70, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/30 {
    --tw-gradient-from: rgba(6, 95, 70, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/40 {
    --tw-gradient-from: rgba(6, 95, 70, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/5 {
    --tw-gradient-from: rgba(6, 95, 70, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/50 {
    --tw-gradient-from: rgba(6, 95, 70, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/60 {
    --tw-gradient-from: rgba(6, 95, 70, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/70 {
    --tw-gradient-from: rgba(6, 95, 70, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/75 {
    --tw-gradient-from: rgba(6, 95, 70, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/80 {
    --tw-gradient-from: rgba(6, 95, 70, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/90 {
    --tw-gradient-from: rgba(6, 95, 70, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-800\/95 {
    --tw-gradient-from: rgba(6, 95, 70, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(6, 95, 70, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100 {
    --tw-gradient-from: #dcfce7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/0 {
    --tw-gradient-from: rgba(220, 252, 231, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/10 {
    --tw-gradient-from: rgba(220, 252, 231, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/100 {
    --tw-gradient-from: #dcfce7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/20 {
    --tw-gradient-from: rgba(220, 252, 231, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/25 {
    --tw-gradient-from: rgba(220, 252, 231, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/30 {
    --tw-gradient-from: rgba(220, 252, 231, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/40 {
    --tw-gradient-from: rgba(220, 252, 231, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/5 {
    --tw-gradient-from: rgba(220, 252, 231, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/50 {
    --tw-gradient-from: rgba(220, 252, 231, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/60 {
    --tw-gradient-from: rgba(220, 252, 231, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/70 {
    --tw-gradient-from: rgba(220, 252, 231, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/75 {
    --tw-gradient-from: rgba(220, 252, 231, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/80 {
    --tw-gradient-from: rgba(220, 252, 231, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/90 {
    --tw-gradient-from: rgba(220, 252, 231, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-100\/95 {
    --tw-gradient-from: rgba(220, 252, 231, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 252, 231, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200 {
    --tw-gradient-from: #bbf7d0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/0 {
    --tw-gradient-from: rgba(187, 247, 208, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/10 {
    --tw-gradient-from: rgba(187, 247, 208, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/100 {
    --tw-gradient-from: #bbf7d0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/20 {
    --tw-gradient-from: rgba(187, 247, 208, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/25 {
    --tw-gradient-from: rgba(187, 247, 208, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/30 {
    --tw-gradient-from: rgba(187, 247, 208, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/40 {
    --tw-gradient-from: rgba(187, 247, 208, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/5 {
    --tw-gradient-from: rgba(187, 247, 208, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/50 {
    --tw-gradient-from: rgba(187, 247, 208, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/60 {
    --tw-gradient-from: rgba(187, 247, 208, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/70 {
    --tw-gradient-from: rgba(187, 247, 208, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/75 {
    --tw-gradient-from: rgba(187, 247, 208, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/80 {
    --tw-gradient-from: rgba(187, 247, 208, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/90 {
    --tw-gradient-from: rgba(187, 247, 208, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200\/95 {
    --tw-gradient-from: rgba(187, 247, 208, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(187, 247, 208, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300 {
    --tw-gradient-from: #86efac var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/0 {
    --tw-gradient-from: rgba(134, 239, 172, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/10 {
    --tw-gradient-from: rgba(134, 239, 172, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/100 {
    --tw-gradient-from: #86efac var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/20 {
    --tw-gradient-from: rgba(134, 239, 172, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/25 {
    --tw-gradient-from: rgba(134, 239, 172, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/30 {
    --tw-gradient-from: rgba(134, 239, 172, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/40 {
    --tw-gradient-from: rgba(134, 239, 172, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/5 {
    --tw-gradient-from: rgba(134, 239, 172, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/50 {
    --tw-gradient-from: rgba(134, 239, 172, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/60 {
    --tw-gradient-from: rgba(134, 239, 172, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/70 {
    --tw-gradient-from: rgba(134, 239, 172, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/75 {
    --tw-gradient-from: rgba(134, 239, 172, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/80 {
    --tw-gradient-from: rgba(134, 239, 172, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/90 {
    --tw-gradient-from: rgba(134, 239, 172, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-300\/95 {
    --tw-gradient-from: rgba(134, 239, 172, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(134, 239, 172, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400 {
    --tw-gradient-from: #4ade80 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/0 {
    --tw-gradient-from: rgba(74, 222, 128, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/10 {
    --tw-gradient-from: rgba(74, 222, 128, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/100 {
    --tw-gradient-from: #4ade80 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/20 {
    --tw-gradient-from: rgba(74, 222, 128, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/25 {
    --tw-gradient-from: rgba(74, 222, 128, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/30 {
    --tw-gradient-from: rgba(74, 222, 128, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/40 {
    --tw-gradient-from: rgba(74, 222, 128, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/5 {
    --tw-gradient-from: rgba(74, 222, 128, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/50 {
    --tw-gradient-from: rgba(74, 222, 128, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/60 {
    --tw-gradient-from: rgba(74, 222, 128, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/70 {
    --tw-gradient-from: rgba(74, 222, 128, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/75 {
    --tw-gradient-from: rgba(74, 222, 128, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/80 {
    --tw-gradient-from: rgba(74, 222, 128, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/90 {
    --tw-gradient-from: rgba(74, 222, 128, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-400\/95 {
    --tw-gradient-from: rgba(74, 222, 128, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/0 {
    --tw-gradient-from: rgba(34, 197, 94, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/10 {
    --tw-gradient-from: rgba(34, 197, 94, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/100 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/20 {
    --tw-gradient-from: rgba(34, 197, 94, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/25 {
    --tw-gradient-from: rgba(34, 197, 94, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/30 {
    --tw-gradient-from: rgba(34, 197, 94, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/40 {
    --tw-gradient-from: rgba(34, 197, 94, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/5 {
    --tw-gradient-from: rgba(34, 197, 94, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/50 {
    --tw-gradient-from: rgba(34, 197, 94, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/60 {
    --tw-gradient-from: rgba(34, 197, 94, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/70 {
    --tw-gradient-from: rgba(34, 197, 94, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/75 {
    --tw-gradient-from: rgba(34, 197, 94, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/80 {
    --tw-gradient-from: rgba(34, 197, 94, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/90 {
    --tw-gradient-from: rgba(34, 197, 94, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500\/95 {
    --tw-gradient-from: rgba(34, 197, 94, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600 {
    --tw-gradient-from: #16a34a var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/0 {
    --tw-gradient-from: rgba(22, 163, 74, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/10 {
    --tw-gradient-from: rgba(22, 163, 74, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/100 {
    --tw-gradient-from: #16a34a var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/20 {
    --tw-gradient-from: rgba(22, 163, 74, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/25 {
    --tw-gradient-from: rgba(22, 163, 74, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/30 {
    --tw-gradient-from: rgba(22, 163, 74, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/40 {
    --tw-gradient-from: rgba(22, 163, 74, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/5 {
    --tw-gradient-from: rgba(22, 163, 74, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/50 {
    --tw-gradient-from: rgba(22, 163, 74, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/60 {
    --tw-gradient-from: rgba(22, 163, 74, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/70 {
    --tw-gradient-from: rgba(22, 163, 74, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/75 {
    --tw-gradient-from: rgba(22, 163, 74, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/80 {
    --tw-gradient-from: rgba(22, 163, 74, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/90 {
    --tw-gradient-from: rgba(22, 163, 74, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600\/95 {
    --tw-gradient-from: rgba(22, 163, 74, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 163, 74, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700 {
    --tw-gradient-from: #15803d var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/0 {
    --tw-gradient-from: rgba(21, 128, 61, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/10 {
    --tw-gradient-from: rgba(21, 128, 61, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/100 {
    --tw-gradient-from: #15803d var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/20 {
    --tw-gradient-from: rgba(21, 128, 61, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/25 {
    --tw-gradient-from: rgba(21, 128, 61, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/30 {
    --tw-gradient-from: rgba(21, 128, 61, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/40 {
    --tw-gradient-from: rgba(21, 128, 61, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/5 {
    --tw-gradient-from: rgba(21, 128, 61, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/50 {
    --tw-gradient-from: rgba(21, 128, 61, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/60 {
    --tw-gradient-from: rgba(21, 128, 61, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/70 {
    --tw-gradient-from: rgba(21, 128, 61, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/75 {
    --tw-gradient-from: rgba(21, 128, 61, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/80 {
    --tw-gradient-from: rgba(21, 128, 61, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/90 {
    --tw-gradient-from: rgba(21, 128, 61, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-700\/95 {
    --tw-gradient-from: rgba(21, 128, 61, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(21, 128, 61, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800 {
    --tw-gradient-from: #166534 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/0 {
    --tw-gradient-from: rgba(22, 101, 52, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/10 {
    --tw-gradient-from: rgba(22, 101, 52, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/100 {
    --tw-gradient-from: #166534 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/20 {
    --tw-gradient-from: rgba(22, 101, 52, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/25 {
    --tw-gradient-from: rgba(22, 101, 52, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/30 {
    --tw-gradient-from: rgba(22, 101, 52, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/40 {
    --tw-gradient-from: rgba(22, 101, 52, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/5 {
    --tw-gradient-from: rgba(22, 101, 52, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/50 {
    --tw-gradient-from: rgba(22, 101, 52, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/60 {
    --tw-gradient-from: rgba(22, 101, 52, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/70 {
    --tw-gradient-from: rgba(22, 101, 52, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/75 {
    --tw-gradient-from: rgba(22, 101, 52, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/80 {
    --tw-gradient-from: rgba(22, 101, 52, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/90 {
    --tw-gradient-from: rgba(22, 101, 52, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-800\/95 {
    --tw-gradient-from: rgba(22, 101, 52, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(22, 101, 52, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100 {
    --tw-gradient-from: #ecfccb var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/0 {
    --tw-gradient-from: hsla(80, 89%, 89%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/10 {
    --tw-gradient-from: hsla(80, 89%, 89%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/100 {
    --tw-gradient-from: #ecfccb var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/20 {
    --tw-gradient-from: hsla(80, 89%, 89%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/25 {
    --tw-gradient-from: hsla(80, 89%, 89%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/30 {
    --tw-gradient-from: hsla(80, 89%, 89%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/40 {
    --tw-gradient-from: hsla(80, 89%, 89%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/5 {
    --tw-gradient-from: hsla(80, 89%, 89%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/50 {
    --tw-gradient-from: hsla(80, 89%, 89%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/60 {
    --tw-gradient-from: hsla(80, 89%, 89%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/70 {
    --tw-gradient-from: hsla(80, 89%, 89%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/75 {
    --tw-gradient-from: hsla(80, 89%, 89%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/80 {
    --tw-gradient-from: hsla(80, 89%, 89%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/90 {
    --tw-gradient-from: hsla(80, 89%, 89%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-100\/95 {
    --tw-gradient-from: hsla(80, 89%, 89%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(80, 89%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200 {
    --tw-gradient-from: #d9f99d var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/0 {
    --tw-gradient-from: hsla(81, 88%, 80%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/10 {
    --tw-gradient-from: hsla(81, 88%, 80%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/100 {
    --tw-gradient-from: #d9f99d var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/20 {
    --tw-gradient-from: hsla(81, 88%, 80%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/25 {
    --tw-gradient-from: hsla(81, 88%, 80%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/30 {
    --tw-gradient-from: hsla(81, 88%, 80%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/40 {
    --tw-gradient-from: hsla(81, 88%, 80%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/5 {
    --tw-gradient-from: hsla(81, 88%, 80%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/50 {
    --tw-gradient-from: hsla(81, 88%, 80%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/60 {
    --tw-gradient-from: hsla(81, 88%, 80%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/70 {
    --tw-gradient-from: hsla(81, 88%, 80%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/75 {
    --tw-gradient-from: hsla(81, 88%, 80%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/80 {
    --tw-gradient-from: hsla(81, 88%, 80%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/90 {
    --tw-gradient-from: hsla(81, 88%, 80%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-200\/95 {
    --tw-gradient-from: hsla(81, 88%, 80%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(81, 88%, 80%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300 {
    --tw-gradient-from: #bef264 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/0 {
    --tw-gradient-from: hsla(82, 85%, 67%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/10 {
    --tw-gradient-from: hsla(82, 85%, 67%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/100 {
    --tw-gradient-from: #bef264 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/20 {
    --tw-gradient-from: hsla(82, 85%, 67%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/25 {
    --tw-gradient-from: hsla(82, 85%, 67%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/30 {
    --tw-gradient-from: hsla(82, 85%, 67%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/40 {
    --tw-gradient-from: hsla(82, 85%, 67%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/5 {
    --tw-gradient-from: hsla(82, 85%, 67%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/50 {
    --tw-gradient-from: hsla(82, 85%, 67%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/60 {
    --tw-gradient-from: hsla(82, 85%, 67%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/70 {
    --tw-gradient-from: hsla(82, 85%, 67%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/75 {
    --tw-gradient-from: hsla(82, 85%, 67%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/80 {
    --tw-gradient-from: hsla(82, 85%, 67%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/90 {
    --tw-gradient-from: hsla(82, 85%, 67%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-300\/95 {
    --tw-gradient-from: hsla(82, 85%, 67%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(82, 85%, 67%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400 {
    --tw-gradient-from: #a3e635 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/0 {
    --tw-gradient-from: rgba(163, 230, 53, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/10 {
    --tw-gradient-from: rgba(163, 230, 53, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/100 {
    --tw-gradient-from: #a3e635 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/20 {
    --tw-gradient-from: rgba(163, 230, 53, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/25 {
    --tw-gradient-from: rgba(163, 230, 53, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/30 {
    --tw-gradient-from: rgba(163, 230, 53, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/40 {
    --tw-gradient-from: rgba(163, 230, 53, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/5 {
    --tw-gradient-from: rgba(163, 230, 53, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/50 {
    --tw-gradient-from: rgba(163, 230, 53, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/60 {
    --tw-gradient-from: rgba(163, 230, 53, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/70 {
    --tw-gradient-from: rgba(163, 230, 53, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/75 {
    --tw-gradient-from: rgba(163, 230, 53, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/80 {
    --tw-gradient-from: rgba(163, 230, 53, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/90 {
    --tw-gradient-from: rgba(163, 230, 53, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-400\/95 {
    --tw-gradient-from: rgba(163, 230, 53, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(163, 230, 53, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500 {
    --tw-gradient-from: #84cc16 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/0 {
    --tw-gradient-from: rgba(132, 204, 22, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/10 {
    --tw-gradient-from: rgba(132, 204, 22, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/100 {
    --tw-gradient-from: #84cc16 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/20 {
    --tw-gradient-from: rgba(132, 204, 22, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/25 {
    --tw-gradient-from: rgba(132, 204, 22, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/30 {
    --tw-gradient-from: rgba(132, 204, 22, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/40 {
    --tw-gradient-from: rgba(132, 204, 22, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/5 {
    --tw-gradient-from: rgba(132, 204, 22, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/50 {
    --tw-gradient-from: rgba(132, 204, 22, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/60 {
    --tw-gradient-from: rgba(132, 204, 22, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/70 {
    --tw-gradient-from: rgba(132, 204, 22, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/75 {
    --tw-gradient-from: rgba(132, 204, 22, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/80 {
    --tw-gradient-from: rgba(132, 204, 22, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/90 {
    --tw-gradient-from: rgba(132, 204, 22, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-500\/95 {
    --tw-gradient-from: rgba(132, 204, 22, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(132, 204, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600 {
    --tw-gradient-from: #65a30d var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/0 {
    --tw-gradient-from: rgba(101, 163, 13, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/10 {
    --tw-gradient-from: rgba(101, 163, 13, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/100 {
    --tw-gradient-from: #65a30d var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/20 {
    --tw-gradient-from: rgba(101, 163, 13, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/25 {
    --tw-gradient-from: rgba(101, 163, 13, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/30 {
    --tw-gradient-from: rgba(101, 163, 13, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/40 {
    --tw-gradient-from: rgba(101, 163, 13, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/5 {
    --tw-gradient-from: rgba(101, 163, 13, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/50 {
    --tw-gradient-from: rgba(101, 163, 13, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/60 {
    --tw-gradient-from: rgba(101, 163, 13, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/70 {
    --tw-gradient-from: rgba(101, 163, 13, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/75 {
    --tw-gradient-from: rgba(101, 163, 13, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/80 {
    --tw-gradient-from: rgba(101, 163, 13, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/90 {
    --tw-gradient-from: rgba(101, 163, 13, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-600\/95 {
    --tw-gradient-from: rgba(101, 163, 13, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(101, 163, 13, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700 {
    --tw-gradient-from: #4d7c0f var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/0 {
    --tw-gradient-from: rgba(77, 124, 15, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/10 {
    --tw-gradient-from: rgba(77, 124, 15, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/100 {
    --tw-gradient-from: #4d7c0f var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/20 {
    --tw-gradient-from: rgba(77, 124, 15, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/25 {
    --tw-gradient-from: rgba(77, 124, 15, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/30 {
    --tw-gradient-from: rgba(77, 124, 15, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/40 {
    --tw-gradient-from: rgba(77, 124, 15, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/5 {
    --tw-gradient-from: rgba(77, 124, 15, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/50 {
    --tw-gradient-from: rgba(77, 124, 15, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/60 {
    --tw-gradient-from: rgba(77, 124, 15, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/70 {
    --tw-gradient-from: rgba(77, 124, 15, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/75 {
    --tw-gradient-from: rgba(77, 124, 15, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/80 {
    --tw-gradient-from: rgba(77, 124, 15, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/90 {
    --tw-gradient-from: rgba(77, 124, 15, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-700\/95 {
    --tw-gradient-from: rgba(77, 124, 15, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(77, 124, 15, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800 {
    --tw-gradient-from: #3f6212 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/0 {
    --tw-gradient-from: rgba(63, 98, 18, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/10 {
    --tw-gradient-from: rgba(63, 98, 18, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/100 {
    --tw-gradient-from: #3f6212 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/20 {
    --tw-gradient-from: rgba(63, 98, 18, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/25 {
    --tw-gradient-from: rgba(63, 98, 18, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/30 {
    --tw-gradient-from: rgba(63, 98, 18, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/40 {
    --tw-gradient-from: rgba(63, 98, 18, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/5 {
    --tw-gradient-from: rgba(63, 98, 18, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/50 {
    --tw-gradient-from: rgba(63, 98, 18, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/60 {
    --tw-gradient-from: rgba(63, 98, 18, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/70 {
    --tw-gradient-from: rgba(63, 98, 18, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/75 {
    --tw-gradient-from: rgba(63, 98, 18, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/80 {
    --tw-gradient-from: rgba(63, 98, 18, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/90 {
    --tw-gradient-from: rgba(63, 98, 18, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-lime-800\/95 {
    --tw-gradient-from: rgba(63, 98, 18, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(63, 98, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100 {
    --tw-gradient-from: #ffedd5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/0 {
    --tw-gradient-from: rgba(255, 237, 213, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/10 {
    --tw-gradient-from: rgba(255, 237, 213, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/100 {
    --tw-gradient-from: #ffedd5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/20 {
    --tw-gradient-from: rgba(255, 237, 213, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/25 {
    --tw-gradient-from: rgba(255, 237, 213, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/30 {
    --tw-gradient-from: rgba(255, 237, 213, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/40 {
    --tw-gradient-from: rgba(255, 237, 213, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/5 {
    --tw-gradient-from: rgba(255, 237, 213, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/50 {
    --tw-gradient-from: rgba(255, 237, 213, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/60 {
    --tw-gradient-from: rgba(255, 237, 213, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/70 {
    --tw-gradient-from: rgba(255, 237, 213, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/75 {
    --tw-gradient-from: rgba(255, 237, 213, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/80 {
    --tw-gradient-from: rgba(255, 237, 213, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/90 {
    --tw-gradient-from: rgba(255, 237, 213, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100\/95 {
    --tw-gradient-from: rgba(255, 237, 213, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 237, 213, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200 {
    --tw-gradient-from: #fed7aa var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/0 {
    --tw-gradient-from: hsla(32, 98%, 83%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/10 {
    --tw-gradient-from: hsla(32, 98%, 83%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/100 {
    --tw-gradient-from: #fed7aa var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/20 {
    --tw-gradient-from: hsla(32, 98%, 83%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/25 {
    --tw-gradient-from: hsla(32, 98%, 83%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/30 {
    --tw-gradient-from: hsla(32, 98%, 83%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/40 {
    --tw-gradient-from: hsla(32, 98%, 83%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/5 {
    --tw-gradient-from: hsla(32, 98%, 83%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/50 {
    --tw-gradient-from: hsla(32, 98%, 83%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/60 {
    --tw-gradient-from: hsla(32, 98%, 83%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/70 {
    --tw-gradient-from: hsla(32, 98%, 83%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/75 {
    --tw-gradient-from: hsla(32, 98%, 83%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/80 {
    --tw-gradient-from: hsla(32, 98%, 83%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/90 {
    --tw-gradient-from: hsla(32, 98%, 83%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200\/95 {
    --tw-gradient-from: hsla(32, 98%, 83%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(32, 98%, 83%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300 {
    --tw-gradient-from: #fdba74 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/0 {
    --tw-gradient-from: hsla(31, 97%, 72%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/10 {
    --tw-gradient-from: hsla(31, 97%, 72%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/100 {
    --tw-gradient-from: #fdba74 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/20 {
    --tw-gradient-from: hsla(31, 97%, 72%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/25 {
    --tw-gradient-from: hsla(31, 97%, 72%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/30 {
    --tw-gradient-from: hsla(31, 97%, 72%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/40 {
    --tw-gradient-from: hsla(31, 97%, 72%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/5 {
    --tw-gradient-from: hsla(31, 97%, 72%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/50 {
    --tw-gradient-from: hsla(31, 97%, 72%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/60 {
    --tw-gradient-from: hsla(31, 97%, 72%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/70 {
    --tw-gradient-from: hsla(31, 97%, 72%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/75 {
    --tw-gradient-from: hsla(31, 97%, 72%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/80 {
    --tw-gradient-from: hsla(31, 97%, 72%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/90 {
    --tw-gradient-from: hsla(31, 97%, 72%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300\/95 {
    --tw-gradient-from: hsla(31, 97%, 72%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(31, 97%, 72%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400 {
    --tw-gradient-from: #fb923c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/0 {
    --tw-gradient-from: rgba(251, 146, 60, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/10 {
    --tw-gradient-from: rgba(251, 146, 60, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/100 {
    --tw-gradient-from: #fb923c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/20 {
    --tw-gradient-from: rgba(251, 146, 60, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/25 {
    --tw-gradient-from: rgba(251, 146, 60, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/30 {
    --tw-gradient-from: rgba(251, 146, 60, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/40 {
    --tw-gradient-from: rgba(251, 146, 60, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/5 {
    --tw-gradient-from: rgba(251, 146, 60, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/50 {
    --tw-gradient-from: rgba(251, 146, 60, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/60 {
    --tw-gradient-from: rgba(251, 146, 60, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/70 {
    --tw-gradient-from: rgba(251, 146, 60, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/75 {
    --tw-gradient-from: rgba(251, 146, 60, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/80 {
    --tw-gradient-from: rgba(251, 146, 60, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/90 {
    --tw-gradient-from: rgba(251, 146, 60, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400\/95 {
    --tw-gradient-from: rgba(251, 146, 60, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500 {
    --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/0 {
    --tw-gradient-from: rgba(249, 115, 22, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/10 {
    --tw-gradient-from: rgba(249, 115, 22, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/100 {
    --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/20 {
    --tw-gradient-from: rgba(249, 115, 22, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/25 {
    --tw-gradient-from: rgba(249, 115, 22, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/30 {
    --tw-gradient-from: rgba(249, 115, 22, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/40 {
    --tw-gradient-from: rgba(249, 115, 22, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/5 {
    --tw-gradient-from: rgba(249, 115, 22, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/50 {
    --tw-gradient-from: rgba(249, 115, 22, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/60 {
    --tw-gradient-from: rgba(249, 115, 22, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/70 {
    --tw-gradient-from: rgba(249, 115, 22, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/75 {
    --tw-gradient-from: rgba(249, 115, 22, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/80 {
    --tw-gradient-from: rgba(249, 115, 22, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/90 {
    --tw-gradient-from: rgba(249, 115, 22, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500\/95 {
    --tw-gradient-from: rgba(249, 115, 22, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600 {
    --tw-gradient-from: #ea580c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/0 {
    --tw-gradient-from: rgba(234, 88, 12, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/10 {
    --tw-gradient-from: rgba(234, 88, 12, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/100 {
    --tw-gradient-from: #ea580c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/20 {
    --tw-gradient-from: rgba(234, 88, 12, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/25 {
    --tw-gradient-from: rgba(234, 88, 12, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/30 {
    --tw-gradient-from: rgba(234, 88, 12, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/40 {
    --tw-gradient-from: rgba(234, 88, 12, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/5 {
    --tw-gradient-from: rgba(234, 88, 12, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/50 {
    --tw-gradient-from: rgba(234, 88, 12, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/60 {
    --tw-gradient-from: rgba(234, 88, 12, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/70 {
    --tw-gradient-from: rgba(234, 88, 12, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/75 {
    --tw-gradient-from: rgba(234, 88, 12, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/80 {
    --tw-gradient-from: rgba(234, 88, 12, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/90 {
    --tw-gradient-from: rgba(234, 88, 12, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/95 {
    --tw-gradient-from: rgba(234, 88, 12, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 88, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700 {
    --tw-gradient-from: #c2410c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/0 {
    --tw-gradient-from: rgba(194, 65, 12, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/10 {
    --tw-gradient-from: rgba(194, 65, 12, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/100 {
    --tw-gradient-from: #c2410c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/20 {
    --tw-gradient-from: rgba(194, 65, 12, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/25 {
    --tw-gradient-from: rgba(194, 65, 12, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/30 {
    --tw-gradient-from: rgba(194, 65, 12, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/40 {
    --tw-gradient-from: rgba(194, 65, 12, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/5 {
    --tw-gradient-from: rgba(194, 65, 12, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/50 {
    --tw-gradient-from: rgba(194, 65, 12, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/60 {
    --tw-gradient-from: rgba(194, 65, 12, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/70 {
    --tw-gradient-from: rgba(194, 65, 12, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/75 {
    --tw-gradient-from: rgba(194, 65, 12, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/80 {
    --tw-gradient-from: rgba(194, 65, 12, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/90 {
    --tw-gradient-from: rgba(194, 65, 12, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-700\/95 {
    --tw-gradient-from: rgba(194, 65, 12, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(194, 65, 12, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800 {
    --tw-gradient-from: #9a3412 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/0 {
    --tw-gradient-from: rgba(154, 52, 18, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/10 {
    --tw-gradient-from: rgba(154, 52, 18, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/100 {
    --tw-gradient-from: #9a3412 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/20 {
    --tw-gradient-from: rgba(154, 52, 18, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/25 {
    --tw-gradient-from: rgba(154, 52, 18, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/30 {
    --tw-gradient-from: rgba(154, 52, 18, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/40 {
    --tw-gradient-from: rgba(154, 52, 18, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/5 {
    --tw-gradient-from: rgba(154, 52, 18, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/50 {
    --tw-gradient-from: rgba(154, 52, 18, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/60 {
    --tw-gradient-from: rgba(154, 52, 18, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/70 {
    --tw-gradient-from: rgba(154, 52, 18, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/75 {
    --tw-gradient-from: rgba(154, 52, 18, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/80 {
    --tw-gradient-from: rgba(154, 52, 18, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/90 {
    --tw-gradient-from: rgba(154, 52, 18, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-800\/95 {
    --tw-gradient-from: rgba(154, 52, 18, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(154, 52, 18, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100 {
    --tw-gradient-from: #fee2e2 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/0 {
    --tw-gradient-from: hsla(0, 93%, 94%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/10 {
    --tw-gradient-from: hsla(0, 93%, 94%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/100 {
    --tw-gradient-from: #fee2e2 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/20 {
    --tw-gradient-from: hsla(0, 93%, 94%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/25 {
    --tw-gradient-from: hsla(0, 93%, 94%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/30 {
    --tw-gradient-from: hsla(0, 93%, 94%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/40 {
    --tw-gradient-from: hsla(0, 93%, 94%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/5 {
    --tw-gradient-from: hsla(0, 93%, 94%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/50 {
    --tw-gradient-from: hsla(0, 93%, 94%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/60 {
    --tw-gradient-from: hsla(0, 93%, 94%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/70 {
    --tw-gradient-from: hsla(0, 93%, 94%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/75 {
    --tw-gradient-from: hsla(0, 93%, 94%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/80 {
    --tw-gradient-from: hsla(0, 93%, 94%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/90 {
    --tw-gradient-from: hsla(0, 93%, 94%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-100\/95 {
    --tw-gradient-from: hsla(0, 93%, 94%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 93%, 94%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200 {
    --tw-gradient-from: #fecaca var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/0 {
    --tw-gradient-from: hsla(0, 96%, 89%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/10 {
    --tw-gradient-from: hsla(0, 96%, 89%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/100 {
    --tw-gradient-from: #fecaca var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/20 {
    --tw-gradient-from: hsla(0, 96%, 89%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/25 {
    --tw-gradient-from: hsla(0, 96%, 89%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/30 {
    --tw-gradient-from: hsla(0, 96%, 89%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/40 {
    --tw-gradient-from: hsla(0, 96%, 89%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/5 {
    --tw-gradient-from: hsla(0, 96%, 89%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/50 {
    --tw-gradient-from: hsla(0, 96%, 89%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/60 {
    --tw-gradient-from: hsla(0, 96%, 89%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/70 {
    --tw-gradient-from: hsla(0, 96%, 89%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/75 {
    --tw-gradient-from: hsla(0, 96%, 89%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/80 {
    --tw-gradient-from: hsla(0, 96%, 89%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/90 {
    --tw-gradient-from: hsla(0, 96%, 89%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-200\/95 {
    --tw-gradient-from: hsla(0, 96%, 89%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 96%, 89%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300 {
    --tw-gradient-from: #fca5a5 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/0 {
    --tw-gradient-from: hsla(0, 94%, 82%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/10 {
    --tw-gradient-from: hsla(0, 94%, 82%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/100 {
    --tw-gradient-from: #fca5a5 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/20 {
    --tw-gradient-from: hsla(0, 94%, 82%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/25 {
    --tw-gradient-from: hsla(0, 94%, 82%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/30 {
    --tw-gradient-from: hsla(0, 94%, 82%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/40 {
    --tw-gradient-from: hsla(0, 94%, 82%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/5 {
    --tw-gradient-from: hsla(0, 94%, 82%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/50 {
    --tw-gradient-from: hsla(0, 94%, 82%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/60 {
    --tw-gradient-from: hsla(0, 94%, 82%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/70 {
    --tw-gradient-from: hsla(0, 94%, 82%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/75 {
    --tw-gradient-from: hsla(0, 94%, 82%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/80 {
    --tw-gradient-from: hsla(0, 94%, 82%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/90 {
    --tw-gradient-from: hsla(0, 94%, 82%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-300\/95 {
    --tw-gradient-from: hsla(0, 94%, 82%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 94%, 82%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400 {
    --tw-gradient-from: #f87171 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/0 {
    --tw-gradient-from: hsla(0, 91%, 71%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/10 {
    --tw-gradient-from: hsla(0, 91%, 71%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/100 {
    --tw-gradient-from: #f87171 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/20 {
    --tw-gradient-from: hsla(0, 91%, 71%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/25 {
    --tw-gradient-from: hsla(0, 91%, 71%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/30 {
    --tw-gradient-from: hsla(0, 91%, 71%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/40 {
    --tw-gradient-from: hsla(0, 91%, 71%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/5 {
    --tw-gradient-from: hsla(0, 91%, 71%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/50 {
    --tw-gradient-from: hsla(0, 91%, 71%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/60 {
    --tw-gradient-from: hsla(0, 91%, 71%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/70 {
    --tw-gradient-from: hsla(0, 91%, 71%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/75 {
    --tw-gradient-from: hsla(0, 91%, 71%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/80 {
    --tw-gradient-from: hsla(0, 91%, 71%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/90 {
    --tw-gradient-from: hsla(0, 91%, 71%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-400\/95 {
    --tw-gradient-from: hsla(0, 91%, 71%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 91%, 71%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500 {
    --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/0 {
    --tw-gradient-from: rgba(239, 68, 68, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/10 {
    --tw-gradient-from: rgba(239, 68, 68, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/100 {
    --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/20 {
    --tw-gradient-from: rgba(239, 68, 68, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/25 {
    --tw-gradient-from: rgba(239, 68, 68, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/30 {
    --tw-gradient-from: rgba(239, 68, 68, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/40 {
    --tw-gradient-from: rgba(239, 68, 68, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/5 {
    --tw-gradient-from: rgba(239, 68, 68, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/50 {
    --tw-gradient-from: rgba(239, 68, 68, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/60 {
    --tw-gradient-from: rgba(239, 68, 68, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/70 {
    --tw-gradient-from: rgba(239, 68, 68, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/75 {
    --tw-gradient-from: rgba(239, 68, 68, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/80 {
    --tw-gradient-from: rgba(239, 68, 68, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/90 {
    --tw-gradient-from: rgba(239, 68, 68, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500\/95 {
    --tw-gradient-from: rgba(239, 68, 68, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600 {
    --tw-gradient-from: #dc2626 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/0 {
    --tw-gradient-from: rgba(220, 38, 38, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/10 {
    --tw-gradient-from: rgba(220, 38, 38, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/100 {
    --tw-gradient-from: #dc2626 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/20 {
    --tw-gradient-from: rgba(220, 38, 38, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/25 {
    --tw-gradient-from: rgba(220, 38, 38, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/30 {
    --tw-gradient-from: rgba(220, 38, 38, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/40 {
    --tw-gradient-from: rgba(220, 38, 38, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/5 {
    --tw-gradient-from: rgba(220, 38, 38, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/50 {
    --tw-gradient-from: rgba(220, 38, 38, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/60 {
    --tw-gradient-from: rgba(220, 38, 38, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/70 {
    --tw-gradient-from: rgba(220, 38, 38, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/75 {
    --tw-gradient-from: rgba(220, 38, 38, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/80 {
    --tw-gradient-from: rgba(220, 38, 38, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/90 {
    --tw-gradient-from: rgba(220, 38, 38, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-600\/95 {
    --tw-gradient-from: rgba(220, 38, 38, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(220, 38, 38, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700 {
    --tw-gradient-from: #b91c1c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/0 {
    --tw-gradient-from: rgba(185, 28, 28, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/10 {
    --tw-gradient-from: rgba(185, 28, 28, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/100 {
    --tw-gradient-from: #b91c1c var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/20 {
    --tw-gradient-from: rgba(185, 28, 28, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/25 {
    --tw-gradient-from: rgba(185, 28, 28, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/30 {
    --tw-gradient-from: rgba(185, 28, 28, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/40 {
    --tw-gradient-from: rgba(185, 28, 28, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/5 {
    --tw-gradient-from: rgba(185, 28, 28, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/50 {
    --tw-gradient-from: rgba(185, 28, 28, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/60 {
    --tw-gradient-from: rgba(185, 28, 28, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/70 {
    --tw-gradient-from: rgba(185, 28, 28, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/75 {
    --tw-gradient-from: rgba(185, 28, 28, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/80 {
    --tw-gradient-from: rgba(185, 28, 28, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/90 {
    --tw-gradient-from: rgba(185, 28, 28, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-700\/95 {
    --tw-gradient-from: rgba(185, 28, 28, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(185, 28, 28, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800 {
    --tw-gradient-from: #991b1b var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/0 {
    --tw-gradient-from: rgba(153, 27, 27, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/10 {
    --tw-gradient-from: rgba(153, 27, 27, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/100 {
    --tw-gradient-from: #991b1b var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/20 {
    --tw-gradient-from: rgba(153, 27, 27, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/25 {
    --tw-gradient-from: rgba(153, 27, 27, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/30 {
    --tw-gradient-from: rgba(153, 27, 27, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/40 {
    --tw-gradient-from: rgba(153, 27, 27, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/5 {
    --tw-gradient-from: rgba(153, 27, 27, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/50 {
    --tw-gradient-from: rgba(153, 27, 27, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/60 {
    --tw-gradient-from: rgba(153, 27, 27, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/70 {
    --tw-gradient-from: rgba(153, 27, 27, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/75 {
    --tw-gradient-from: rgba(153, 27, 27, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/80 {
    --tw-gradient-from: rgba(153, 27, 27, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/90 {
    --tw-gradient-from: rgba(153, 27, 27, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-800\/95 {
    --tw-gradient-from: rgba(153, 27, 27, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(153, 27, 27, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100 {
    --tw-gradient-from: #f1f5f9 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/0 {
    --tw-gradient-from: rgba(241, 245, 249, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/10 {
    --tw-gradient-from: rgba(241, 245, 249, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/100 {
    --tw-gradient-from: #f1f5f9 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/20 {
    --tw-gradient-from: rgba(241, 245, 249, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/25 {
    --tw-gradient-from: rgba(241, 245, 249, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/30 {
    --tw-gradient-from: rgba(241, 245, 249, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/40 {
    --tw-gradient-from: rgba(241, 245, 249, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/5 {
    --tw-gradient-from: rgba(241, 245, 249, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/50 {
    --tw-gradient-from: rgba(241, 245, 249, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/60 {
    --tw-gradient-from: rgba(241, 245, 249, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/70 {
    --tw-gradient-from: rgba(241, 245, 249, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/75 {
    --tw-gradient-from: rgba(241, 245, 249, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/80 {
    --tw-gradient-from: rgba(241, 245, 249, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/90 {
    --tw-gradient-from: rgba(241, 245, 249, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-100\/95 {
    --tw-gradient-from: rgba(241, 245, 249, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(241, 245, 249, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200 {
    --tw-gradient-from: #e2e8f0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/0 {
    --tw-gradient-from: rgba(226, 232, 240, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/10 {
    --tw-gradient-from: rgba(226, 232, 240, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/100 {
    --tw-gradient-from: #e2e8f0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/20 {
    --tw-gradient-from: rgba(226, 232, 240, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/25 {
    --tw-gradient-from: rgba(226, 232, 240, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/30 {
    --tw-gradient-from: rgba(226, 232, 240, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/40 {
    --tw-gradient-from: rgba(226, 232, 240, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/5 {
    --tw-gradient-from: rgba(226, 232, 240, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/50 {
    --tw-gradient-from: rgba(226, 232, 240, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/60 {
    --tw-gradient-from: rgba(226, 232, 240, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/70 {
    --tw-gradient-from: rgba(226, 232, 240, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/75 {
    --tw-gradient-from: rgba(226, 232, 240, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/80 {
    --tw-gradient-from: rgba(226, 232, 240, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/90 {
    --tw-gradient-from: rgba(226, 232, 240, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-200\/95 {
    --tw-gradient-from: rgba(226, 232, 240, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(226, 232, 240, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300 {
    --tw-gradient-from: #cbd5e1 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/0 {
    --tw-gradient-from: rgba(203, 213, 225, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/10 {
    --tw-gradient-from: rgba(203, 213, 225, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/100 {
    --tw-gradient-from: #cbd5e1 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/20 {
    --tw-gradient-from: rgba(203, 213, 225, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/25 {
    --tw-gradient-from: rgba(203, 213, 225, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/30 {
    --tw-gradient-from: rgba(203, 213, 225, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/40 {
    --tw-gradient-from: rgba(203, 213, 225, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/5 {
    --tw-gradient-from: rgba(203, 213, 225, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/50 {
    --tw-gradient-from: rgba(203, 213, 225, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/60 {
    --tw-gradient-from: rgba(203, 213, 225, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/70 {
    --tw-gradient-from: rgba(203, 213, 225, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/75 {
    --tw-gradient-from: rgba(203, 213, 225, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/80 {
    --tw-gradient-from: rgba(203, 213, 225, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/90 {
    --tw-gradient-from: rgba(203, 213, 225, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-300\/95 {
    --tw-gradient-from: rgba(203, 213, 225, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(203, 213, 225, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400 {
    --tw-gradient-from: #94a3b8 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/0 {
    --tw-gradient-from: rgba(148, 163, 184, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/10 {
    --tw-gradient-from: rgba(148, 163, 184, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/100 {
    --tw-gradient-from: #94a3b8 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/20 {
    --tw-gradient-from: rgba(148, 163, 184, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/25 {
    --tw-gradient-from: rgba(148, 163, 184, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/30 {
    --tw-gradient-from: rgba(148, 163, 184, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/40 {
    --tw-gradient-from: rgba(148, 163, 184, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/5 {
    --tw-gradient-from: rgba(148, 163, 184, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/50 {
    --tw-gradient-from: rgba(148, 163, 184, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/60 {
    --tw-gradient-from: rgba(148, 163, 184, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/70 {
    --tw-gradient-from: rgba(148, 163, 184, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/75 {
    --tw-gradient-from: rgba(148, 163, 184, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/80 {
    --tw-gradient-from: rgba(148, 163, 184, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/90 {
    --tw-gradient-from: rgba(148, 163, 184, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-400\/95 {
    --tw-gradient-from: rgba(148, 163, 184, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500 {
    --tw-gradient-from: #64748b var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/0 {
    --tw-gradient-from: rgba(100, 116, 139, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/10 {
    --tw-gradient-from: rgba(100, 116, 139, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/100 {
    --tw-gradient-from: #64748b var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/20 {
    --tw-gradient-from: rgba(100, 116, 139, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/25 {
    --tw-gradient-from: rgba(100, 116, 139, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/30 {
    --tw-gradient-from: rgba(100, 116, 139, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/40 {
    --tw-gradient-from: rgba(100, 116, 139, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/5 {
    --tw-gradient-from: rgba(100, 116, 139, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/50 {
    --tw-gradient-from: rgba(100, 116, 139, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/60 {
    --tw-gradient-from: rgba(100, 116, 139, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/70 {
    --tw-gradient-from: rgba(100, 116, 139, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/75 {
    --tw-gradient-from: rgba(100, 116, 139, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/80 {
    --tw-gradient-from: rgba(100, 116, 139, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/90 {
    --tw-gradient-from: rgba(100, 116, 139, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500\/95 {
    --tw-gradient-from: rgba(100, 116, 139, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(100, 116, 139, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600 {
    --tw-gradient-from: #475569 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/0 {
    --tw-gradient-from: rgba(71, 85, 105, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/10 {
    --tw-gradient-from: rgba(71, 85, 105, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/100 {
    --tw-gradient-from: #475569 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/20 {
    --tw-gradient-from: rgba(71, 85, 105, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/25 {
    --tw-gradient-from: rgba(71, 85, 105, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/30 {
    --tw-gradient-from: rgba(71, 85, 105, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/40 {
    --tw-gradient-from: rgba(71, 85, 105, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/5 {
    --tw-gradient-from: rgba(71, 85, 105, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/50 {
    --tw-gradient-from: rgba(71, 85, 105, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/60 {
    --tw-gradient-from: rgba(71, 85, 105, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/70 {
    --tw-gradient-from: rgba(71, 85, 105, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/75 {
    --tw-gradient-from: rgba(71, 85, 105, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/80 {
    --tw-gradient-from: rgba(71, 85, 105, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/90 {
    --tw-gradient-from: rgba(71, 85, 105, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600\/95 {
    --tw-gradient-from: rgba(71, 85, 105, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(71, 85, 105, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700 {
    --tw-gradient-from: #334155 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/0 {
    --tw-gradient-from: rgba(51, 65, 85, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/10 {
    --tw-gradient-from: rgba(51, 65, 85, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/100 {
    --tw-gradient-from: #334155 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/20 {
    --tw-gradient-from: rgba(51, 65, 85, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/25 {
    --tw-gradient-from: rgba(51, 65, 85, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/30 {
    --tw-gradient-from: rgba(51, 65, 85, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/40 {
    --tw-gradient-from: rgba(51, 65, 85, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/5 {
    --tw-gradient-from: rgba(51, 65, 85, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/50 {
    --tw-gradient-from: rgba(51, 65, 85, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/60 {
    --tw-gradient-from: rgba(51, 65, 85, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/70 {
    --tw-gradient-from: rgba(51, 65, 85, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/75 {
    --tw-gradient-from: rgba(51, 65, 85, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/80 {
    --tw-gradient-from: rgba(51, 65, 85, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/90 {
    --tw-gradient-from: rgba(51, 65, 85, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-700\/95 {
    --tw-gradient-from: rgba(51, 65, 85, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(51, 65, 85, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800 {
    --tw-gradient-from: #1e293b var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/0 {
    --tw-gradient-from: rgba(30, 41, 59, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/10 {
    --tw-gradient-from: rgba(30, 41, 59, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/100 {
    --tw-gradient-from: #1e293b var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/20 {
    --tw-gradient-from: rgba(30, 41, 59, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/25 {
    --tw-gradient-from: rgba(30, 41, 59, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/30 {
    --tw-gradient-from: rgba(30, 41, 59, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/40 {
    --tw-gradient-from: rgba(30, 41, 59, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/5 {
    --tw-gradient-from: rgba(30, 41, 59, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/50 {
    --tw-gradient-from: rgba(30, 41, 59, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/60 {
    --tw-gradient-from: rgba(30, 41, 59, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/70 {
    --tw-gradient-from: rgba(30, 41, 59, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/75 {
    --tw-gradient-from: rgba(30, 41, 59, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/80 {
    --tw-gradient-from: rgba(30, 41, 59, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/90 {
    --tw-gradient-from: rgba(30, 41, 59, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-800\/95 {
    --tw-gradient-from: rgba(30, 41, 59, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 41, 59, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100 {
    --tw-gradient-from: #ede9fe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/0 {
    --tw-gradient-from: rgba(237, 233, 254, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/10 {
    --tw-gradient-from: rgba(237, 233, 254, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/100 {
    --tw-gradient-from: #ede9fe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/20 {
    --tw-gradient-from: rgba(237, 233, 254, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/25 {
    --tw-gradient-from: rgba(237, 233, 254, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/30 {
    --tw-gradient-from: rgba(237, 233, 254, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/40 {
    --tw-gradient-from: rgba(237, 233, 254, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/5 {
    --tw-gradient-from: rgba(237, 233, 254, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/50 {
    --tw-gradient-from: rgba(237, 233, 254, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/60 {
    --tw-gradient-from: rgba(237, 233, 254, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/70 {
    --tw-gradient-from: rgba(237, 233, 254, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/75 {
    --tw-gradient-from: rgba(237, 233, 254, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/80 {
    --tw-gradient-from: rgba(237, 233, 254, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/90 {
    --tw-gradient-from: rgba(237, 233, 254, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-100\/95 {
    --tw-gradient-from: rgba(237, 233, 254, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(237, 233, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200 {
    --tw-gradient-from: #ddd6fe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/0 {
    --tw-gradient-from: rgba(221, 214, 254, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/10 {
    --tw-gradient-from: rgba(221, 214, 254, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/100 {
    --tw-gradient-from: #ddd6fe var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/20 {
    --tw-gradient-from: rgba(221, 214, 254, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/25 {
    --tw-gradient-from: rgba(221, 214, 254, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/30 {
    --tw-gradient-from: rgba(221, 214, 254, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/40 {
    --tw-gradient-from: rgba(221, 214, 254, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/5 {
    --tw-gradient-from: rgba(221, 214, 254, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/50 {
    --tw-gradient-from: rgba(221, 214, 254, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/60 {
    --tw-gradient-from: rgba(221, 214, 254, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/70 {
    --tw-gradient-from: rgba(221, 214, 254, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/75 {
    --tw-gradient-from: rgba(221, 214, 254, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/80 {
    --tw-gradient-from: rgba(221, 214, 254, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/90 {
    --tw-gradient-from: rgba(221, 214, 254, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-200\/95 {
    --tw-gradient-from: rgba(221, 214, 254, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(221, 214, 254, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300 {
    --tw-gradient-from: #c4b5fd var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/0 {
    --tw-gradient-from: rgba(196, 181, 253, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/10 {
    --tw-gradient-from: rgba(196, 181, 253, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/100 {
    --tw-gradient-from: #c4b5fd var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/20 {
    --tw-gradient-from: rgba(196, 181, 253, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/25 {
    --tw-gradient-from: rgba(196, 181, 253, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/30 {
    --tw-gradient-from: rgba(196, 181, 253, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/40 {
    --tw-gradient-from: rgba(196, 181, 253, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/5 {
    --tw-gradient-from: rgba(196, 181, 253, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/50 {
    --tw-gradient-from: rgba(196, 181, 253, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/60 {
    --tw-gradient-from: rgba(196, 181, 253, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/70 {
    --tw-gradient-from: rgba(196, 181, 253, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/75 {
    --tw-gradient-from: rgba(196, 181, 253, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/80 {
    --tw-gradient-from: rgba(196, 181, 253, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/90 {
    --tw-gradient-from: rgba(196, 181, 253, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-300\/95 {
    --tw-gradient-from: rgba(196, 181, 253, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(196, 181, 253, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400 {
    --tw-gradient-from: #a78bfa var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/0 {
    --tw-gradient-from: rgba(167, 139, 250, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/10 {
    --tw-gradient-from: rgba(167, 139, 250, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/100 {
    --tw-gradient-from: #a78bfa var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/20 {
    --tw-gradient-from: rgba(167, 139, 250, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/25 {
    --tw-gradient-from: rgba(167, 139, 250, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/30 {
    --tw-gradient-from: rgba(167, 139, 250, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/40 {
    --tw-gradient-from: rgba(167, 139, 250, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/5 {
    --tw-gradient-from: rgba(167, 139, 250, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/50 {
    --tw-gradient-from: rgba(167, 139, 250, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/60 {
    --tw-gradient-from: rgba(167, 139, 250, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/70 {
    --tw-gradient-from: rgba(167, 139, 250, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/75 {
    --tw-gradient-from: rgba(167, 139, 250, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/80 {
    --tw-gradient-from: rgba(167, 139, 250, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/90 {
    --tw-gradient-from: rgba(167, 139, 250, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-400\/95 {
    --tw-gradient-from: rgba(167, 139, 250, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(167, 139, 250, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500 {
    --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/0 {
    --tw-gradient-from: rgba(139, 92, 246, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/10 {
    --tw-gradient-from: rgba(139, 92, 246, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/100 {
    --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/20 {
    --tw-gradient-from: rgba(139, 92, 246, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/25 {
    --tw-gradient-from: rgba(139, 92, 246, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/30 {
    --tw-gradient-from: rgba(139, 92, 246, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/40 {
    --tw-gradient-from: rgba(139, 92, 246, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/5 {
    --tw-gradient-from: rgba(139, 92, 246, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/50 {
    --tw-gradient-from: rgba(139, 92, 246, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/60 {
    --tw-gradient-from: rgba(139, 92, 246, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/70 {
    --tw-gradient-from: rgba(139, 92, 246, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/75 {
    --tw-gradient-from: rgba(139, 92, 246, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/80 {
    --tw-gradient-from: rgba(139, 92, 246, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/90 {
    --tw-gradient-from: rgba(139, 92, 246, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-500\/95 {
    --tw-gradient-from: rgba(139, 92, 246, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600 {
    --tw-gradient-from: #7c3aed var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/0 {
    --tw-gradient-from: rgba(124, 58, 237, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/10 {
    --tw-gradient-from: rgba(124, 58, 237, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/100 {
    --tw-gradient-from: #7c3aed var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/20 {
    --tw-gradient-from: rgba(124, 58, 237, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/25 {
    --tw-gradient-from: rgba(124, 58, 237, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/30 {
    --tw-gradient-from: rgba(124, 58, 237, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/40 {
    --tw-gradient-from: rgba(124, 58, 237, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/5 {
    --tw-gradient-from: rgba(124, 58, 237, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/50 {
    --tw-gradient-from: rgba(124, 58, 237, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/60 {
    --tw-gradient-from: rgba(124, 58, 237, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/70 {
    --tw-gradient-from: rgba(124, 58, 237, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/75 {
    --tw-gradient-from: rgba(124, 58, 237, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/80 {
    --tw-gradient-from: rgba(124, 58, 237, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/90 {
    --tw-gradient-from: rgba(124, 58, 237, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-600\/95 {
    --tw-gradient-from: rgba(124, 58, 237, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(124, 58, 237, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700 {
    --tw-gradient-from: #6d28d9 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/0 {
    --tw-gradient-from: rgba(109, 40, 217, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/10 {
    --tw-gradient-from: rgba(109, 40, 217, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/100 {
    --tw-gradient-from: #6d28d9 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/20 {
    --tw-gradient-from: rgba(109, 40, 217, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/25 {
    --tw-gradient-from: rgba(109, 40, 217, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/30 {
    --tw-gradient-from: rgba(109, 40, 217, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/40 {
    --tw-gradient-from: rgba(109, 40, 217, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/5 {
    --tw-gradient-from: rgba(109, 40, 217, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/50 {
    --tw-gradient-from: rgba(109, 40, 217, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/60 {
    --tw-gradient-from: rgba(109, 40, 217, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/70 {
    --tw-gradient-from: rgba(109, 40, 217, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/75 {
    --tw-gradient-from: rgba(109, 40, 217, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/80 {
    --tw-gradient-from: rgba(109, 40, 217, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/90 {
    --tw-gradient-from: rgba(109, 40, 217, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-700\/95 {
    --tw-gradient-from: rgba(109, 40, 217, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(109, 40, 217, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800 {
    --tw-gradient-from: #5b21b6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/0 {
    --tw-gradient-from: rgba(91, 33, 182, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/10 {
    --tw-gradient-from: rgba(91, 33, 182, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/100 {
    --tw-gradient-from: #5b21b6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/20 {
    --tw-gradient-from: rgba(91, 33, 182, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/25 {
    --tw-gradient-from: rgba(91, 33, 182, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/30 {
    --tw-gradient-from: rgba(91, 33, 182, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/40 {
    --tw-gradient-from: rgba(91, 33, 182, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/5 {
    --tw-gradient-from: rgba(91, 33, 182, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/50 {
    --tw-gradient-from: rgba(91, 33, 182, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/60 {
    --tw-gradient-from: rgba(91, 33, 182, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/70 {
    --tw-gradient-from: rgba(91, 33, 182, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/75 {
    --tw-gradient-from: rgba(91, 33, 182, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/80 {
    --tw-gradient-from: rgba(91, 33, 182, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/90 {
    --tw-gradient-from: rgba(91, 33, 182, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-violet-800\/95 {
    --tw-gradient-from: rgba(91, 33, 182, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(91, 33, 182, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-white\/0 {
    --tw-gradient-from: hsla(0, 0%, 100%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-white\/70 {
    --tw-gradient-from: hsla(0, 0%, 100%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100 {
    --tw-gradient-from: #fef9c3 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/0 {
    --tw-gradient-from: hsla(55, 97%, 88%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/10 {
    --tw-gradient-from: hsla(55, 97%, 88%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/100 {
    --tw-gradient-from: #fef9c3 var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/20 {
    --tw-gradient-from: hsla(55, 97%, 88%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/25 {
    --tw-gradient-from: hsla(55, 97%, 88%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/30 {
    --tw-gradient-from: hsla(55, 97%, 88%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/40 {
    --tw-gradient-from: hsla(55, 97%, 88%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/5 {
    --tw-gradient-from: hsla(55, 97%, 88%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/50 {
    --tw-gradient-from: hsla(55, 97%, 88%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/60 {
    --tw-gradient-from: hsla(55, 97%, 88%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/70 {
    --tw-gradient-from: hsla(55, 97%, 88%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/75 {
    --tw-gradient-from: hsla(55, 97%, 88%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/80 {
    --tw-gradient-from: hsla(55, 97%, 88%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/90 {
    --tw-gradient-from: hsla(55, 97%, 88%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-100\/95 {
    --tw-gradient-from: hsla(55, 97%, 88%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(55, 97%, 88%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200 {
    --tw-gradient-from: #fef08a var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/0 {
    --tw-gradient-from: hsla(53, 98%, 77%, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/10 {
    --tw-gradient-from: hsla(53, 98%, 77%, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/100 {
    --tw-gradient-from: #fef08a var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/20 {
    --tw-gradient-from: hsla(53, 98%, 77%, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/25 {
    --tw-gradient-from: hsla(53, 98%, 77%, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/30 {
    --tw-gradient-from: hsla(53, 98%, 77%, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/40 {
    --tw-gradient-from: hsla(53, 98%, 77%, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/5 {
    --tw-gradient-from: hsla(53, 98%, 77%, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/50 {
    --tw-gradient-from: hsla(53, 98%, 77%, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/60 {
    --tw-gradient-from: hsla(53, 98%, 77%, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/70 {
    --tw-gradient-from: hsla(53, 98%, 77%, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/75 {
    --tw-gradient-from: hsla(53, 98%, 77%, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/80 {
    --tw-gradient-from: hsla(53, 98%, 77%, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/90 {
    --tw-gradient-from: hsla(53, 98%, 77%, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200\/95 {
    --tw-gradient-from: hsla(53, 98%, 77%, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: hsla(53, 98%, 77%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300 {
    --tw-gradient-from: #fde047 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/0 {
    --tw-gradient-from: rgba(253, 224, 71, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/10 {
    --tw-gradient-from: rgba(253, 224, 71, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/100 {
    --tw-gradient-from: #fde047 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/20 {
    --tw-gradient-from: rgba(253, 224, 71, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/25 {
    --tw-gradient-from: rgba(253, 224, 71, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/30 {
    --tw-gradient-from: rgba(253, 224, 71, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/40 {
    --tw-gradient-from: rgba(253, 224, 71, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/5 {
    --tw-gradient-from: rgba(253, 224, 71, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/50 {
    --tw-gradient-from: rgba(253, 224, 71, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/60 {
    --tw-gradient-from: rgba(253, 224, 71, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/70 {
    --tw-gradient-from: rgba(253, 224, 71, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/75 {
    --tw-gradient-from: rgba(253, 224, 71, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/80 {
    --tw-gradient-from: rgba(253, 224, 71, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/90 {
    --tw-gradient-from: rgba(253, 224, 71, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-300\/95 {
    --tw-gradient-from: rgba(253, 224, 71, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(253, 224, 71, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400 {
    --tw-gradient-from: #facc15 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/0 {
    --tw-gradient-from: rgba(250, 204, 21, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/10 {
    --tw-gradient-from: rgba(250, 204, 21, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/100 {
    --tw-gradient-from: #facc15 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/20 {
    --tw-gradient-from: rgba(250, 204, 21, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/25 {
    --tw-gradient-from: rgba(250, 204, 21, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/30 {
    --tw-gradient-from: rgba(250, 204, 21, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/40 {
    --tw-gradient-from: rgba(250, 204, 21, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/5 {
    --tw-gradient-from: rgba(250, 204, 21, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/50 {
    --tw-gradient-from: rgba(250, 204, 21, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/60 {
    --tw-gradient-from: rgba(250, 204, 21, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/70 {
    --tw-gradient-from: rgba(250, 204, 21, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/75 {
    --tw-gradient-from: rgba(250, 204, 21, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/80 {
    --tw-gradient-from: rgba(250, 204, 21, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/90 {
    --tw-gradient-from: rgba(250, 204, 21, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-400\/95 {
    --tw-gradient-from: rgba(250, 204, 21, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(250, 204, 21, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/0 {
    --tw-gradient-from: rgba(234, 179, 8, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/10 {
    --tw-gradient-from: rgba(234, 179, 8, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/100 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/20 {
    --tw-gradient-from: rgba(234, 179, 8, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/25 {
    --tw-gradient-from: rgba(234, 179, 8, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/30 {
    --tw-gradient-from: rgba(234, 179, 8, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/40 {
    --tw-gradient-from: rgba(234, 179, 8, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/5 {
    --tw-gradient-from: rgba(234, 179, 8, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/50 {
    --tw-gradient-from: rgba(234, 179, 8, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/60 {
    --tw-gradient-from: rgba(234, 179, 8, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/70 {
    --tw-gradient-from: rgba(234, 179, 8, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/75 {
    --tw-gradient-from: rgba(234, 179, 8, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/80 {
    --tw-gradient-from: rgba(234, 179, 8, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/90 {
    --tw-gradient-from: rgba(234, 179, 8, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500\/95 {
    --tw-gradient-from: rgba(234, 179, 8, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(234, 179, 8, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600 {
    --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/0 {
    --tw-gradient-from: rgba(202, 138, 4, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/10 {
    --tw-gradient-from: rgba(202, 138, 4, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/100 {
    --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/20 {
    --tw-gradient-from: rgba(202, 138, 4, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/25 {
    --tw-gradient-from: rgba(202, 138, 4, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/30 {
    --tw-gradient-from: rgba(202, 138, 4, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/40 {
    --tw-gradient-from: rgba(202, 138, 4, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/5 {
    --tw-gradient-from: rgba(202, 138, 4, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/50 {
    --tw-gradient-from: rgba(202, 138, 4, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/60 {
    --tw-gradient-from: rgba(202, 138, 4, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/70 {
    --tw-gradient-from: rgba(202, 138, 4, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/75 {
    --tw-gradient-from: rgba(202, 138, 4, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/80 {
    --tw-gradient-from: rgba(202, 138, 4, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/90 {
    --tw-gradient-from: rgba(202, 138, 4, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600\/95 {
    --tw-gradient-from: rgba(202, 138, 4, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(202, 138, 4, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700 {
    --tw-gradient-from: #a16207 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/0 {
    --tw-gradient-from: rgba(161, 98, 7, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/10 {
    --tw-gradient-from: rgba(161, 98, 7, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/100 {
    --tw-gradient-from: #a16207 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/20 {
    --tw-gradient-from: rgba(161, 98, 7, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/25 {
    --tw-gradient-from: rgba(161, 98, 7, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/30 {
    --tw-gradient-from: rgba(161, 98, 7, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/40 {
    --tw-gradient-from: rgba(161, 98, 7, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/5 {
    --tw-gradient-from: rgba(161, 98, 7, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/50 {
    --tw-gradient-from: rgba(161, 98, 7, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/60 {
    --tw-gradient-from: rgba(161, 98, 7, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/70 {
    --tw-gradient-from: rgba(161, 98, 7, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/75 {
    --tw-gradient-from: rgba(161, 98, 7, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/80 {
    --tw-gradient-from: rgba(161, 98, 7, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/90 {
    --tw-gradient-from: rgba(161, 98, 7, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-700\/95 {
    --tw-gradient-from: rgba(161, 98, 7, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(161, 98, 7, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800 {
    --tw-gradient-from: #854d0e var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/0 {
    --tw-gradient-from: rgba(133, 77, 14, 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/10 {
    --tw-gradient-from: rgba(133, 77, 14, .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/100 {
    --tw-gradient-from: #854d0e var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/20 {
    --tw-gradient-from: rgba(133, 77, 14, .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/25 {
    --tw-gradient-from: rgba(133, 77, 14, .25) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/30 {
    --tw-gradient-from: rgba(133, 77, 14, .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/40 {
    --tw-gradient-from: rgba(133, 77, 14, .4) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/5 {
    --tw-gradient-from: rgba(133, 77, 14, .05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/50 {
    --tw-gradient-from: rgba(133, 77, 14, .5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/60 {
    --tw-gradient-from: rgba(133, 77, 14, .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/70 {
    --tw-gradient-from: rgba(133, 77, 14, .7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/75 {
    --tw-gradient-from: rgba(133, 77, 14, .75) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/80 {
    --tw-gradient-from: rgba(133, 77, 14, .8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/90 {
    --tw-gradient-from: rgba(133, 77, 14, .9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-800\/95 {
    --tw-gradient-from: rgba(133, 77, 14, .95) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(133, 77, 14, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.via-black\/0 {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-black\/70 {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, .7) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-green-400\/90 {
    --tw-gradient-to: rgba(74, 222, 128, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgba(74, 222, 128, .9) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-orange-400\/90 {
    --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgba(251, 146, 60, .9) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-orange-500\/90 {
    --tw-gradient-to: rgba(249, 115, 22, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgba(249, 115, 22, .9) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-violet-500\/90 {
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgba(139, 92, 246, .9) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-white\/30 {
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsla(0, 0%, 100%, .3) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-white\/40 {
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsla(0, 0%, 100%, .4) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-white\/50 {
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsla(0, 0%, 100%, .5) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-white\/90 {
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsla(0, 0%, 100%, .9) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.to-black\/0 {
    --tw-gradient-to: transparent var(--tw-gradient-to-position)
}

.to-black\/40 {
    --tw-gradient-to: rgba(0, 0, 0, .4) var(--tw-gradient-to-position)
}

.to-green-400\/40 {
    --tw-gradient-to: rgba(74, 222, 128, .4) var(--tw-gradient-to-position)
}

.to-orange-400\/40 {
    --tw-gradient-to: rgba(251, 146, 60, .4) var(--tw-gradient-to-position)
}

.to-orange-500\/40 {
    --tw-gradient-to: rgba(249, 115, 22, .4) var(--tw-gradient-to-position)
}

.to-violet-600\/40 {
    --tw-gradient-to: rgba(124, 58, 237, .4) var(--tw-gradient-to-position)
}

.to-white\/0 {
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position)
}

.to-white\/40 {
    --tw-gradient-to: hsla(0, 0%, 100%, .4) var(--tw-gradient-to-position)
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.fill-violet-500 {
    fill: #8b5cf6
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-10 {
    padding: 2.5rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-8 {
    padding: 2rem
}

.p-\[\.05em\] {
    padding: .05em
}

.p-\[3vw\] {
    padding: 3vw
}

.p-\[4vw\] {
    padding: 4vw
}

.p-\[5vw\] {
    padding: 5vw
}

.p-\[6vw\] {
    padding: 6vw
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-2\.5 {
    padding-left: .625rem;
    padding-right: .625rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.px-\[6vw\] {
    padding-left: 6vw;
    padding-right: 6vw
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-3\.5 {
    padding-top: .875rem;
    padding-bottom: .875rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.py-\[3vw\] {
    padding-top: 3vw;
    padding-bottom: 3vw
}

.py-\[6vh\] {
    padding-top: 6vh;
    padding-bottom: 6vh
}

.\!pl-12 {
    padding-left: 3rem !important
}

.pb-0 {
    padding-bottom: 0
}

.pb-2 {
    padding-bottom: .5rem
}

.pb-3 {
    padding-bottom: .75rem
}

.pb-\[100vh\] {
    padding-bottom: 100vh
}

.pb-\[15vw\] {
    padding-bottom: 15vw
}

.pl-1 {
    padding-left: .25rem
}

.pl-3 {
    padding-left: .75rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-6 {
    padding-left: 1.5rem
}

.pl-8 {
    padding-left: 2rem
}

.pr-1 {
    padding-right: .25rem
}

.pr-2 {
    padding-right: .5rem
}

.pr-3 {
    padding-right: .75rem
}

.pr-4 {
    padding-right: 1rem
}

.pr-8 {
    padding-right: 2rem
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: .25rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-\[13px\] {
    padding-top: 13px
}

.pt-\[6vw\] {
    padding-top: 6vw
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.font-mono {
    font-family: PsyopMonoWhyteInktrapMono-Regular, monospace
}

.font-sans {
    font-family: neue-haas-grotesk-display, sans-serif
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-2xs {
    font-size: 10px
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-\[\.45vw\] {
    font-size: .45vw
}

.text-\[0\.6rem\] {
    font-size: .6rem
}

.text-\[1\.35vw\] {
    font-size: 1.35vw
}

.text-\[10\.25vw\] {
    font-size: 10.25vw
}

.text-\[10px\] {
    font-size: 10px
}

.text-\[10vw\] {
    font-size: 10vw
}

.text-\[14vw\] {
    font-size: 14vw
}

.text-\[15vw\] {
    font-size: 15vw
}

.text-\[34vw\] {
    font-size: 34vw
}

.text-\[4vw\] {
    font-size: 4vw
}

.text-\[5vh\] {
    font-size: 5vh
}

.text-\[5vw\] {
    font-size: 5vw
}

.text-\[6\.25vw\] {
    font-size: 6.25vw
}

.text-\[6vw\] {
    font-size: 6vw
}

.text-\[9vw\] {
    font-size: 9vw
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.font-black {
    font-weight: 900
}

.font-bold {
    font-weight: 700
}

.font-light {
    font-weight: 300
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.uppercase {
    text-transform: uppercase
}

.leading-\[\.75\] {
    line-height: .75
}

.leading-\[\.8\] {
    line-height: .8
}

.leading-\[\.9\] {
    line-height: .9
}

.leading-\[0\.7\] {
    line-height: .7
}

.leading-\[0\.9\] {
    line-height: .9
}

.leading-\[1\.25\] {
    line-height: 1.25
}

.leading-\[1\.2\] {
    line-height: 1.2
}

.leading-\[1\.3\] {
    line-height: 1.3
}

.leading-\[1\] {
    line-height: 1
}

.leading-tight {
    line-height: 1.25
}

.-tracking-\[\.035vw\] {
    letter-spacing: -.035vw
}

.-tracking-\[\.05em\] {
    letter-spacing: -.05em
}

.tracking-2px {
    letter-spacing: 2px
}

.tracking-\[-\.045em\] {
    letter-spacing: -.045em
}

.tracking-\[-\.2vw\] {
    letter-spacing: -.2vw
}

.tracking-\[-\.83\] {
    letter-spacing: -.83
}

.tracking-\[\.1vw\] {
    letter-spacing: .1vw
}

.tracking-\[\.9\] {
    letter-spacing: .9
}

.tracking-\[1px\] {
    letter-spacing: 1px
}

.tracking-\[2px\] {
    letter-spacing: 2px
}

.\!text-white\/10 {
    color: hsla(0, 0%, 100%, .1) !important
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

.text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250/var(--tw-text-opacity))
}

.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246/var(--tw-text-opacity))
}

.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216/var(--tw-text-opacity))
}

.text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175/var(--tw-text-opacity))
}

.text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235/var(--tw-text-opacity))
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.text-green-300 {
    --tw-text-opacity: 1;
    color: rgb(134 239 172/var(--tw-text-opacity))
}

.text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128/var(--tw-text-opacity))
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94/var(--tw-text-opacity))
}

.text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229/var(--tw-text-opacity))
}

.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22/var(--tw-text-opacity))
}

.text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226/var(--tw-text-opacity))
}

.text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165/var(--tw-text-opacity))
}

.text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113/var(--tw-text-opacity))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68/var(--tw-text-opacity))
}

.text-red-500\/60 {
    color: rgba(239, 68, 68, .6)
}

.text-red-500\/70 {
    color: rgba(239, 68, 68, .7)
}

.text-red-500\/80 {
    color: rgba(239, 68, 68, .8)
}

.text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28/var(--tw-text-opacity))
}

.text-transparent {
    color: transparent
}

.text-violet-400 {
    --tw-text-opacity: 1;
    color: rgb(167 139 250/var(--tw-text-opacity))
}

.text-violet-500 {
    --tw-text-opacity: 1;
    color: rgb(139 92 246/var(--tw-text-opacity))
}

.text-violet-600 {
    --tw-text-opacity: 1;
    color: rgb(124 58 237/var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.text-white\/20 {
    color: hsla(0, 0%, 100%, .2)
}

.text-white\/30 {
    color: hsla(0, 0%, 100%, .3)
}

.text-white\/50 {
    color: hsla(0, 0%, 100%, .5)
}

.text-white\/60 {
    color: hsla(0, 0%, 100%, .6)
}

.text-white\/70 {
    color: hsla(0, 0%, 100%, .7)
}

.text-white\/80 {
    color: hsla(0, 0%, 100%, .8)
}

.text-white\/90 {
    color: hsla(0, 0%, 100%, .9)
}

.text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21/var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.opacity-0 {
    opacity: 0
}

.opacity-100 {
    opacity: 1
}

.opacity-25 {
    opacity: .25
}

.opacity-30 {
    opacity: .3
}

.opacity-40 {
    opacity: .4
}

.opacity-50 {
    opacity: .5
}

.opacity-60 {
    opacity: .6
}

.opacity-70 {
    opacity: .7
}

.opacity-75 {
    opacity: .75
}

.opacity-80 {
    opacity: .8
}

.opacity-90 {
    opacity: .9
}

.mix-blend-difference {
    mix-blend-mode: difference
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.blur {
    --tw-blur: blur(8px)
}

.blur,
.blur-sm {
    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)
}

.blur-sm {
    --tw-blur: blur(4px)
}

.blur-xl {
    --tw-blur: blur(24px)
}

.blur-xl,
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.backdrop-blur {
    --tw-backdrop-blur: blur(8px)
}

.backdrop-blur,
.backdrop-blur-sm {
    -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);
    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)
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px)
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

@font-face {
    font-family: PsyopMonoWhyteInktrapMono-Regular;
    src: url("PsyopMonoWhyteInktrapMono-Regular.woff") format("woff"), url("PsyopMonoWhyteInktrapMono-Regular.woff2") format("woff2")
}

:root {
    --white: #efefef;
    --white-transparent: hsla(0, 0%, 94%, 0);
    --grey: #b0b0b0;
    --grey-transparent: hsla(0, 0%, 69%, 0);
    --black: #090909;
    --black-transparent: rgba(9, 9, 9, 0);
    --magma: #ea462b;
    --magma-transparent: rgba(234, 70, 43, 0);
    --ryft: #66f067;
    --ryft-transparent: rgba(102, 240, 103, 0);
    --psyop: #eb5c29;
    --psyop-transparent: rgba(235, 92, 41, 0);
    --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
    --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
    --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    --layout-columns-count: 6;
    --layout-columns-gap: 6.4vw;
    --layout-margin: 4.2666666667vw;
    --layout-width: calc(100vw - (2 * var(--layout-margin)));
    --layout-column-width: calc((var(--layout-width) - ((var(--layout-columns-count) - 1) * var(--layout-columns-gap))) / var(--layout-columns-count))
}

@media(min-width:800px) {
    :root {
        --layout-columns-count: 12;
        --layout-columns-gap: 1.6666666667vw;
        --layout-margin: 2.7777777778vw
    }
}

.layout-block,
.layout-grid {
    max-width: var(--layout-width);
    margin-left: auto;
    margin-right: auto
}

.layout-block-inner,
.layout-grid-inner {
    padding-left: var(--layout-margin);
    padding-right: var(--layout-margin)
}

.layout-grid,
.layout-grid-inner {
    display: grid;
    grid-template-columns: repeat(var(--layout-columns-count), minmax(0, 1fr));
    grid-gap: var(--layout-columns-gap)
}

.vert_slides {
    border-top: .5px solid hsla(0, 0%, 100%, .25);
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    --tw-backdrop-blur: blur(8px);
    -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);
    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);
    position: sticky;
    top: -1px;
    margin-top: -1px;
    z-index: 5
}

footer.vert_slides {
    margin-top: -4rem
}

.aspect-ratio {
    position: relative;
    padding-bottom: calc(100%/var(--aspect-ratio));
    width: 100%;
    height: 0
}

.aspect-ratio>:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw
}

.hidden-overflow {
    overflow: hidden
}

.relative {
    position: relative
}

@media(min-width:800px) {
    .hide-on-desktop {
        display: none !important
    }
}

@media(max-width:800px) {
    .hide-on-mobile {
        display: none !important
    }
}

html.has-scroll-smooth .hide-on-smooth-scroll,
html:not(.has-scroll-smooth) .hide-on-native-scroll {
    display: none !important
}

.grad-base,
.so-grad {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: hsla(0, 0%, 100%, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: hsla(0, 0%, 100%, .4) var(--tw-gradient-to-position);
    color: transparent
}

.text-violet-500 .so-grad,
.text-violet-500.so-grad {
    --tw-gradient-from: rgba(139, 92, 246, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, .4) var(--tw-gradient-to-position);
    color: transparent
}

.text-red-500 .so-grad,
.text-red-500.so-grad {
    --tw-gradient-from: rgba(239, 68, 68, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(239, 68, 68, .4) var(--tw-gradient-to-position);
    color: transparent
}

.so-grad {
    -webkit-background-clip: text;
    background-clip: text
}

.logo-grad {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: hsla(0, 0%, 100%, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: hsla(0, 0%, 100%, .4) var(--tw-gradient-to-position);
    color: transparent
}

.text-violet-500 .logo-grad,
.text-violet-500.logo-grad {
    --tw-gradient-from: rgba(139, 92, 246, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, .4) var(--tw-gradient-to-position);
    color: transparent
}

.text-red-500 .logo-grad,
.text-red-500.logo-grad {
    --tw-gradient-from: rgba(239, 68, 68, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(239, 68, 68, .4) var(--tw-gradient-to-position);
    color: transparent
}

.logo-grad {
    mask: url("psyop.svg") center/contain no-repeat;
    -webkit-mask: url("psyop.svg") center/contain no-repeat
}

.text-violet-500 .grad-base,
.text-violet-500.grad-base {
    --tw-gradient-from: rgba(139, 92, 246, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, .4) var(--tw-gradient-to-position);
    color: transparent
}

.text-red-500 .grad-base,
.text-red-500.grad-base {
    --tw-gradient-from: rgba(239, 68, 68, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(239, 68, 68, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(239, 68, 68, .4) var(--tw-gradient-to-position);
    color: transparent
}

.gridbg {
    background-size: 20% 10%;
    background-image: linear-gradient(90deg, #333 1px, transparent 0), linear-gradient(180deg, #515151 1px, transparent 0)
}

.progress {
    padding: 6px;
    background: rgba(0, 0, 0, .25);
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25), 0 1px hsla(0, 0%, 100%, .08)
}

.progress-bar {
    height: 48px;
    background-color: #ee303c;
    border-radius: 4px;
    transition: .4s linear;
    transition-property: width, background-color
}

.progress-striped .progress-bar {
    background-color: #fcbc51;
    background-image: linear-gradient(45deg, #fca311 25%, transparent 0, transparent 50%, #fca311 0, #fca311 75%, transparent 0, transparent)
}

.progress2 {
    padding: 6px;
    border-radius: 30px;
    background: rgba(0, 0, 0, .25);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25), 0 1px hsla(0, 0%, 100%, .08)
}

.progress-bar2 {
    height: 18px;
    border-radius: 30px;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .05));
    transition: .4s linear;
    transition-property: width, background-color
}

.progress-moved .progress-bar2 {
    width: 85%;
    background-color: #ef476f;
    animation: progressAnimation 6s
}

@keyframes progressAnimation {
    0% {
        width: 5%;
        background-color: #f9bcca
    }

    to {
        width: 85%;
        background-color: #ef476f
    }
}

.progress-bar3 {
    height: 18px;
    border-radius: 4px;
    transition: .4s linear;
    transition-property: width, background-color
}

.progress-bar3,
.progress-infinite .progress-bar3 {
    background-image: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #7dc8e8, #5856d6, #ff2d55)
}

.progress-infinite .progress-bar3 {
    width: 100%;
    animation: colorAnimation 1s infinite
}

@keyframes colorAnimation {
    0% {
        background-image: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #7dc8e8, #5856d6, #ff2d55)
    }

    20% {
        background-image: linear-gradient(90deg, #5ac8fa, #007aff, #7dc8e8, #5856d6, #ff2d55, #4cd964)
    }

    40% {
        background-image: linear-gradient(90deg, #007aff, #7dc8e8, #5856d6, #ff2d55, #4cd964, #5ac8fa)
    }

    60% {
        background-image: linear-gradient(90deg, #7dc8e8, #5856d6, #ff2d55, #4cd964, #5ac8fa, #007aff)
    }

    to {
        background-image: linear-gradient(90deg, #5856d6, #ff2d55, #4cd964, #5ac8fa, #007aff, #7dc8e8)
    }
}

.stripe-overlay {
    background-image: linear-gradient(45deg, rgba(98, 224, 194, .1) 47.22%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 50%, rgba(98, 224, 194, .1) 0, rgba(98, 224, 194, .1) 97.22%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0));
    background-size: 25.46px 25.46px
}

.stripe-overlay--dark {
    background-image: linear-gradient(-45deg, rgba(0, 0, 0, .35) 47.22%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 50%, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 97.22%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0));
    background-size: 25.46px 25.46px
}

.pound {
    --face: #000;
    --sign: #fff;
    --circle: #3c3c3c;
    --side: #3b3b3b;
    --slide: #6a6a6a
}

.containercoin {
    width: 10em;
    height: 10em;
    position: relative;
    perspective: 300px;
    box-shadow: 0 11em 3em -2em rgba(0, 0, 0, .2);
    margin: 2em;
    transform: translateZ(-.4em)
}

.coin {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d
}

.pound {
    animation: spinYen 48s linear -7s infinite
}

.face {
    border-radius: 5em;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--face)
}

.front {
    transform: translateZ(.4em) rotateY(0)
}

.back {
    transform: rotateY(180deg) translateZ(.4em)
}

.symbol {
    color: var(--sign);
    text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
    opacity: .7
}

.circle,
.symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.circle {
    border-radius: 5em;
    border: .15em dashed var(--circle);
    width: 9em;
    height: 9em
}

.side {
    width: .8em;
    height: 1.61em;
    background: var(--side);
    position: absolute;
    left: 50%;
    top: 50%;
    backface-visibility: hidden;
    border-top: .1em solid var(--slide);
    border-bottom: .1em solid var(--slide)
}

figure:first-of-type {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(0deg) translateZ(4.9em)
}

figure:nth-of-type(2) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(18deg) translateZ(4.9em)
}

figure:nth-of-type(3) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(36deg) translateZ(4.9em)
}

figure:nth-of-type(4) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(54deg) translateZ(4.9em)
}

figure:nth-of-type(5) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(72deg) translateZ(4.9em)
}

figure:nth-of-type(6) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(90deg) translateZ(4.9em)
}

figure:nth-of-type(7) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(108deg) translateZ(4.9em)
}

figure:nth-of-type(8) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(126deg) translateZ(4.9em)
}

figure:nth-of-type(9) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(144deg) translateZ(4.9em)
}

figure:nth-of-type(10) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(162deg) translateZ(4.9em)
}

figure:nth-of-type(11) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(180deg) translateZ(4.9em)
}

figure:nth-of-type(12) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(198deg) translateZ(4.9em)
}

figure:nth-of-type(13) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(216deg) translateZ(4.9em)
}

figure:nth-of-type(14) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(234deg) translateZ(4.9em)
}

figure:nth-of-type(15) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(252deg) translateZ(4.9em)
}

figure:nth-of-type(16) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(270deg) translateZ(4.9em)
}

figure:nth-of-type(17) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(288deg) translateZ(4.9em)
}

figure:nth-of-type(18) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(306deg) translateZ(4.9em)
}

figure:nth-of-type(19) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(324deg) translateZ(4.9em)
}

figure:nth-of-type(20) {
    transform: translate3d(-50%, -50%, 0) rotateY(90deg) rotateX(342deg) translateZ(4.9em)
}

@keyframes spinDollar {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotate(0deg)
    }

    50% {
        transform: rotateX(45deg) rotateY(5turn) rotate(180deg)
    }

    to {
        transform: rotateX(0deg) rotateY(10turn) rotate(0deg)
    }
}

@keyframes spinEuro {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotate(0deg)
    }

    50% {
        transform: rotateX(5turn) rotateY(45deg) rotate(25deg)
    }

    to {
        transform: rotateX(10turn) rotateY(0deg) rotate(0deg)
    }
}

@keyframes spinYen {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotate(0deg)
    }

    50% {
        transform: rotateX(45deg) rotateY(-5turn) rotate(25deg)
    }

    to {
        transform: rotateX(0deg) rotateY(-10turn) rotate(0deg)
    }
}

.diff-iframe {
    position: relative
}

.diff-iframe:after {
    background-size: 100%;
    background: #000;
    mix-blend-mode: saturation;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    display: block
}

.diff-iframe:after,
.noisey:after {
    content: "";
    pointer-events: none;
    z-index: 9999
}

.noisey:after {
    animation: grain 12s steps(10) infinite;
    background-image: url("");
    background-size: 500px;
    height: 300%;
    left: -50%;
    opacity: .2;
    position: fixed;
    top: -100%;
    width: 300%;
    display: none
}

@media (min-width:768px) {
    .noisey:after {
        display: block
    }
}

@keyframes grain {

    0%,
    to {
        transform: translate(0)
    }

    10% {
        transform: translate(-5%, -10%)
    }

    20% {
        transform: translate(-15%, 5%)
    }

    30% {
        transform: translate(7%, -15%)
    }

    40% {
        transform: translate(-5%, 15%)
    }

    50% {
        transform: translate(-15%, 10%)
    }

    60% {
        transform: translate(15%)
    }

    70% {
        transform: translateY(15%)
    }

    80% {
        transform: translate(3%, 15%)
    }

    90% {
        transform: translate(-10%, 10%)
    }
}

.psydex_bg {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: hsla(0, 0%, 100%, .05) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-stops: var(--tw-gradient-from), hsla(0, 0%, 100%, .2) var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-via-position: 40%;
    --tw-gradient-to: hsla(0, 0%, 100%, 0) var(--tw-gradient-to-position);
    --tw-gradient-to-position: 60%
}

.psydex_bg:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("repeat-psydex-xs.svg");
    background-size: 400px
}

.h1 {
    font-weight: 700;
    letter-spacing: -.02em;
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 86%;
    font-size: 14.9333333333vw
}

@media(min-width:800px) {
    .h1 {
        font-size: 11.1111111111vw;
        line-height: 85%
    }
}

.h1.vh {
    font-size: 8.6153846154vh
}

@media(min-width:800px) {
    .h1.vh {
        font-size: 18.8235294118vh
    }
}

.h2 {
    font-weight: 600;
    letter-spacing: -.02em;
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 86%;
    font-size: 14.9333333333vw
}

@media(min-width:800px) {
    .h2 {
        font-size: 6.6666666667vw;
        line-height: 83%
    }
}

.h2.vh {
    font-size: 8.6153846154vh
}

@media(min-width:800px) {
    .h2.vh {
        font-size: 11.2941176471vh
    }
}

.h3 {
    font-stretch: expanded;
    font-weight: 700;
    font-family: neue-haas-grotesk-display, sans-serif;
    line-height: 100%;
    font-size: 5.3333333333vw;
    letter-spacing: -.01em
}

@media(min-width:800px) {
    .h3 {
        letter-spacing: .01em;
        font-size: 3.6111111111vw
    }
}

.h3.vh {
    font-size: 3.0769230769vh
}

@media(min-width:800px) {
    .h3.vh {
        font-size: 6.1176470588vh
    }
}

.h4 {
    font-stretch: expanded;
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 5.3333333333vw
}

@media(min-width:800px) {
    .h4 {
        font-size: 1.9444444444vw;
        letter-spacing: -.01em
    }
}

.p-l {
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -.03em;
    font-size: 8.5333333333vw;
    font-family: PsyopMonoWhyteInktrapMono-Regular, monospace
}

@media(min-width:800px) {
    .p-l {
        font-size: 4.4444444444vw
    }
}

.p {
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 125%;
    font-size: 4.2666666667vw;
    font-family: neue-haas-grotesk-display, sans-serif
}

@media(min-width:800px) {
    .p {
        font-size: 1.25vw;
        line-height: 133%
    }
}

.p.bold {
    font-weight: 600;
    line-height: 125%
}

@media(min-width:800px) {
    .p.bold {
        line-height: 133%
    }
}

.p-s {
    font-weight: 600;
    letter-spacing: -.01em;
    text-transform: uppercase;
    font-size: 3.7333333333vw
}

@media(min-width:800px) {
    .p-s {
        font-size: .9722222222vw;
        line-height: 114%
    }
}

.p-xs {
    font-weight: 600;
    letter-spacing: -.01em;
    text-transform: uppercase;
    font-size: 3.2vw
}

@media(min-width:800px) {
    .p-xs {
        font-size: .8333333333vw;
        line-height: 113%
    }
}

.semi-bold {
    font-weight: 600
}

.bold {
    font-weight: 700
}

.contrast {
    color: var(--theme-contrast)
}

.grey {
    color: var(--grey)
}

.theme-light {
    --theme-primary: #efefef;
    --theme-primary-transparent: hsla(0, 0%, 94%, 0);
    --theme-secondary: #efefef;
    --theme-secondary-transparent: hsla(0, 0%, 94%, 0);
    --theme-contrast: #090909;
    --theme-contrast-transparent: rgba(9, 9, 9, 0)
}

.theme-dark {
    --theme-primary: #090909;
    --theme-primary-transparent: rgba(9, 9, 9, 0);
    --theme-secondary: #090909;
    --theme-secondary-transparent: rgba(9, 9, 9, 0);
    --theme-contrast: #efefef;
    --theme-contrast-transparent: hsla(0, 0%, 94%, 0)
}

.theme-contrast {
    --theme-primary: #090909;
    --theme-primary-transparent: rgba(9, 9, 9, 0);
    --theme-secondary: #efefef;
    --theme-secondary-transparent: hsla(0, 0%, 94%, 0);
    --theme-contrast: #efefef;
    --theme-contrast-transparent: hsla(0, 0%, 94%, 0)
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.input_input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 3.5em;
    padding: .4em 1.2em;
    border: .5px solid hsla(0, 0%, 100%, .3);
    border-radius: clamp(.625rem, .546875rem + .390625vw, .9375rem);
    background-color: hsla(0, 0%, 100%, .05);
    --tw-backdrop-blur: blur(8px);
    -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);
    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);
    font-size: 14px;
    color: #fff;
    transition: all .15s ease-in-out
}

.input_input:focus {
    border: 1px solid #fff;
    border-radius: 0;
    outline: 0
}

.input_input::-moz-placeholder {
    color: #888
}

.input_input::placeholder {
    color: #888
}

.input_input:-webkit-autofill {
    box-shadow: inset 0 0 0 1000px #1d1d1d;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    border-color: #1d1d1d;
    background-clip: content-box;
    animation-name: input_autofill;
    animation-fill-mode: both;
    -webkit-transition: border-color .15s ease-in-out;
    transition: border-color .15s ease-in-out
}

.input_input:-webkit-autofill,
.input_input:autofill {
    box-shadow: inset 0 0 0 1000px #1d1d1d;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    border-color: #1d1d1d;
    background-clip: content-box;
    animation-name: input_autofill;
    animation-fill-mode: both;
    -webkit-transition: border-color .15s ease-in-out;
    transition: border-color .15s ease-in-out
}

.input_input:-webkit-autofill:focus {
    border-color: #fff
}

.input_input:-webkit-autofill:focus,
.input_input:autofill:focus {
    border-color: #fff
}

.input_inputHalf {
    margin-right: -1.7em;
    border-radius: clamp(.625rem, .546875rem + .390625vw, .9375rem) 0 0 clamp(.625rem, .546875rem + .390625vw, .9375rem)
}

.button_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    min-height: 3.5em;
    padding: .4em 1.2em;
    height: 100%;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 5em;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 1.3s cubic-bezier(.19, 1, .22, 1);
    touch-action: manipulation;
    background-color: #1d1d1d;
    color: #fff;
    font-family: PsyopMonoWhyteInktrapMono-Regular, monospace
}

.button_button:not(.selected):focus-visible,
.button_button:not(.selected):hover:not([disabled]) {
    border-color: #fff;
    background-color: transparent;
    color: #fff
}

.button_button:disabled {
    background-color: #455044
}

.button_button:not(.selected):focus-visible,
.button_button:not(.selected):hover:not([disabled]) {
    text-decoration: none;
    border-radius: 0;
    transition: all .3s cubic-bezier(.19, 1, .22, 1)
}

.button_button_iconWrapper {
    transform: translateX(-.2em);
    -webkit-clip-path: polygon(35% 0, 100% 0, 100% 100%, 35% 100%);
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 35% 100%);
    transition: all .3s cubic-bezier(.19, 1, .22, 1)
}

@media(max-width:37.49em) {
    .button_button_iconWrapper {
        padding: 1em
    }
}

.button_button:not(.selected):hover:not([disabled]) .button_button_iconWrapper {
    transform: none;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.button_button_arrowIcon {
    display: block;
    flex-shrink: 0;
    max-width: 2em;
    margin-left: auto
}

.button_button.selected {
    border-radius: 0;
    background-color: #fff;
    color: #000
}

.button_block__HHN0Y {
    display: flex;
    justify-content: center;
    width: 100%
}

.button_light {
    background-color: #fff;
    color: #000
}

.button_light:not(.selected):focus-visible,
.button_light:not(.selected):hover:not([disabled]) {
    border-color: #fff;
    background-color: #1d1d1d;
    color: #fff
}

.button_ghost {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
    --tw-backdrop-blur: blur(8px);
    -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);
    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)
}

.button_ghost:not(.selected):focus-visible,
.button_ghost:not(.selected):hover:not([disabled]) {
    background-color: #fff;
    color: #000
}

.button_green_outline {
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128/var(--tw-border-opacity));
    border-width: 1px;
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(74 222 128/var(--tw-text-opacity));
    --tw-backdrop-blur: blur(8px);
    -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);
    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)
}

.button_green_outline:not(.selected):focus-visible,
.button_green_outline:not(.selected):hover:not([disabled]) {
    --tw-bg-opacity: 1;
    background-color: rgb(74 222 128/var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128/var(--tw-border-opacity));
    color: #000
}

.button_violet_outline {
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246/var(--tw-border-opacity));
    border-width: 1px;
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(139 92 246/var(--tw-text-opacity))
}

.button_violet_outline .grad-base,
.button_violet_outline.grad-base {
    --tw-gradient-from: rgba(139, 92, 246, .7) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6 var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: rgba(139, 92, 246, .4) var(--tw-gradient-to-position);
    color: transparent
}

.button_violet_outline {
    --tw-backdrop-blur: blur(8px);
    -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);
    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)
}

.button_violet_outline:not(.selected):focus-visible,
.button_violet_outline:not(.selected):hover:not([disabled]) {
    --tw-bg-opacity: 1;
    background-color: rgb(139 92 246/var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgb(139 92 246/var(--tw-border-opacity));
    color: #000
}

.button_orange_outline {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22/var(--tw-border-opacity));
    border-width: 1px;
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(249 115 22/var(--tw-text-opacity));
    --tw-backdrop-blur: blur(8px);
    -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);
    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)
}

.button_orange_outline:not(.selected):focus-visible,
.button_orange_outline:not(.selected):hover:not([disabled]) {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22/var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22/var(--tw-border-opacity));
    color: #000
}

.button_dark_outline {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity));
    border-width: 1px;
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity));
    --tw-backdrop-blur: blur(8px);
    -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);
    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)
}

.button_dark_outline:not(.selected):focus-visible,
.button_dark_outline:not(.selected):hover:not([disabled]) {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity));
    color: #fff
}

.button_muted {
    border: 1px solid #383838;
    color: #888
}

.button_muted:not(.selected):focus-visible,
.button_muted:not(.selected):hover:not([disabled]) {
    border-color: #fff;
    color: #fff
}

.button.selected {
    border-radius: 0
}

.button_icon-only {
    min-height: 0;
    padding: .4em
}

.newsletter_arrowIcon {
    display: block;
    flex-shrink: 0;
    max-width: 2em
}

@media(max-width:37.49em) {
    .newsletter_arrowIcon {
        transform: rotate(90deg);
        max-height: .5em
    }
}

@media(pointer:fine) {
    .newsletter_iconWrapper {
        transform: translateX(-.2em);
        -webkit-clip-path: polygon(35% 0, 100% 0, 100% 100%, 35% 100%);
        clip-path: polygon(35% 0, 100% 0, 100% 100%, 35% 100%);
        transition: all .3s cubic-bezier(.19, 1, .22, 1)
    }

    .newsletter_label:hover .newsletter_iconWrapper {
        transform: none;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }
}

.newsletter_label {
    justify-content: space-between;
    gap: 1em;
    min-height: 3.5em;
    padding: .4em 1.2em
}

.newsletter_form__mmWAB,
.newsletter_label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%
}

.newsletter_button,
.newsletter_input {
    height: 100%
}

.react-datepicker {
    display: flex;
    flex-direction: column
}

@media (min-width:1024px) {
    .react-datepicker {
        flex-direction: row
    }
}

.react-datepicker__time-list-item {
    margin-top: .5rem;
    margin-bottom: .5rem;
    cursor: pointer;
    border-radius: 9999px;
    border-width: .5px;
    border-color: hsla(0, 0%, 100%, 0);
    background-color: hsla(0, 0%, 100%, .2);
    padding: .5rem;
    text-align: center;
    font-size: .75rem;
    line-height: 1rem;
    letter-spacing: 2px
}

.react-datepicker__time-list-item:hover {
    border-radius: 0;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity));
    background-color: hsla(0, 0%, 100%, 0)
}

.react-datepicker__input-container input {
    display: block;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219/var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity));
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

@media (min-width:768px) {
    .react-datepicker__input-container input {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.react-datepicker-popper {
    z-index: 40;
    border-radius: .25rem;
    border-width: .5px;
    border-color: hsla(0, 0%, 100%, .2);
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity));
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.react-datepicker__aria-live,
.react-datepicker__triangle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.react-datepicker-left {
    left: 0 !important;
    right: auto !important
}

.react-datepicker-left,
.react-datepicker-right {
    position: absolute !important;
    transform: none !important
}

.react-datepicker-right {
    right: 0 !important;
    left: auto !important
}

.react-datepicker__time-box {
    width: 100%;
    padding-top: 1rem
}

@media (min-width:1024px) {
    .react-datepicker__time-box {
        position: absolute;
        height: calc(100% - 40px);
        width: 8rem;
        overflow-y: scroll
    }
}

.react-datepicker__time-container {
    width: 100%;
    border-left-width: .5px;
    border-color: hsla(0, 0%, 100%, .2)
}

@media (min-width:1024px) {
    .react-datepicker__time-container {
        width: 8rem
    }
}

.react-datepicker-time__header {
    border-bottom-width: .5px;
    border-color: hsla(0, 0%, 100%, .2);
    padding: .5rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: hsla(0, 0%, 100%, .8)
}

.react-datepicker__portal {
    position: absolute;
    top: 3rem;
    right: 0;
    z-index: 10;
    width: 24rem;
    transform: none;
    border-radius: .25rem;
    border-width: .5px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235/var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity));
    padding: .5rem .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.react-datepicker__time-list {
    width: 100%;
    padding-left: .5rem;
    padding-right: .5rem
}

.react-datepicker__month-container {
    margin: 1rem;
    display: flex;
    min-width: 300px;
    flex-direction: column
}

.react-datepicker__month {
    display: flex;
    flex-direction: column
}

.react-datepicker__current-month {
    margin-left: .625rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .8)
}

.react-datepicker__day-names,
.react-datepicker__week {
    display: flex;
    justify-content: space-around
}

.react-datepicker__day-names {
    text-align: center;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity))
}

.react-datepicker__day-name {
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding-top: .25rem;
    padding-bottom: .25rem
}

.react-datepicker__navigation {
    position: absolute;
    top: .5rem
}

.react-datepicker__navigation--previous {
    right: 3rem;
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.react-datepicker__navigation--previous:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42/var(--tw-bg-opacity))
}

.react-datepicker__navigation--next {
    right: 1rem;
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.react-datepicker__navigation--next:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42/var(--tw-bg-opacity))
}

.react-datepicker__day {
    margin-bottom: .25rem;
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: .875rem;
    line-height: 1.25rem;
    line-height: 2;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.react-datepicker__day--disabled {
    cursor: not-allowed;
    opacity: .4
}

.react-datepicker__day--disabled:hover {
    background-color: transparent
}

.react-datepicker__day--outside-month {
    --tw-text-opacity: 1;
    color: rgb(75 85 99/var(--tw-text-opacity))
}

.react-datepicker__day--in-range {
    background-color: rgba(74, 222, 128, .2)
}

.react-datepicker__day--in-selecting-range {
    background-color: hsla(0, 0%, 100%, .2)
}

.react-datepicker__day--selecting-range-start {
    border-width: .5px;
    border-color: rgba(74, 222, 128, .2);
    background-color: hsla(0, 0%, 100%, .3)
}

.react-datepicker__day--selecting-range-end {
    border-width: .5px;
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128/var(--tw-border-opacity));
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.react-datepicker__day--selected,
.react-datepicker__day--selecting-range-end {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

.react-datepicker__day--selected {
    background-color: rgb(74 222 128/var(--tw-bg-opacity))
}

.react-datepicker__day--range-start {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.react-datepicker__day--range-start:hover {
    background-color: hsla(0, 0%, 100%, .9);
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

.react-datepicker__day--range-end {
    background-color: hsla(0, 0%, 100%, .1);
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.react-datepicker__day--range-end:hover {
    background-color: hsla(0, 0%, 100%, .9);
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

html {
    overflow: overlay
}

html.lenis {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

html {
    scrollbar-width: thin
}

html.lenis-stopped,
html.nav {
    overflow: hidden
}

.lenis.lenis-killed,
html.lenis-killed {
    overflow: auto
}

.Toastify__toast-body {
    font-family: PsyopMonoWhyteInktrapMono-Regular, monospace;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, .6);
    font-size: .75rem;
    line-height: 1rem;
    letter-spacing: 2px
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: hsla(0, 0%, 7%, .728);
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0, 0%, 100%, .7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error);
    --header-height: 15.4666666667vw
}

@media(min-width:800px) {
    :root {
        --header-height: 6.8055555556vw
    }
}

:root,
[data-theme=dark] {
    --background: #000;
    --foreground: #fff
}

a,
button,
input,
label,
select,
textarea {
    color: inherit;
    cursor: pointer
}

::-moz-selection {
    background-color: var(--ryft);
    color: var(--black)
}

::selection {
    background-color: var(--ryft);
    color: var(--black)
}

body {
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: PsyopMonoWhyteInktrapMono-Regular, monospace
}

input:focus-visible {
    outline: none
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.hover\:scale-100:hover {
    --tw-scale-x: 1;
    --tw-scale-y: 1
}

.hover\:scale-100:hover,
.hover\:scale-105:hover {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05
}

.hover\:rounded-none:hover {
    border-radius: 0
}

.hover\:border-\[0\.5px\]:hover {
    border-width: .5px
}

.hover\:border-red-500\/50:hover {
    border-color: rgba(239, 68, 68, .5)
}

.hover\:border-white:hover {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.hover\:border-white\/50:hover {
    border-color: hsla(0, 0%, 100%, .5)
}

.hover\:border-white\/70:hover {
    border-color: hsla(0, 0%, 100%, .7)
}

.hover\:bg-\[\#0c7abf\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(12 122 191/var(--tw-bg-opacity))
}

.hover\:bg-red-500\/20:hover {
    background-color: rgba(239, 68, 68, .2)
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.hover\:bg-white\/10:hover {
    background-color: hsla(0, 0%, 100%, .1)
}

.hover\:bg-white\/20:hover {
    background-color: hsla(0, 0%, 100%, .2)
}

.hover\:bg-white\/70:hover {
    background-color: hsla(0, 0%, 100%, .7)
}

.hover\:bg-white\/90:hover {
    background-color: hsla(0, 0%, 100%, .9)
}

.hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

.hover\:opacity-100:hover {
    opacity: 1
}

.hover\:opacity-80:hover {
    opacity: .8
}

.hover\:opacity-90:hover {
    opacity: .9
}

.focus\:rounded-none:focus {
    border-radius: 0
}

.focus\:border-0:focus {
    border-width: 0
}

.focus\:border-white\/90:focus {
    border-color: hsla(0, 0%, 100%, .9)
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.disabled\:cursor-auto:disabled {
    cursor: auto
}

.disabled\:opacity-50:disabled {
    opacity: .5
}

.disabled\:hover\:rounded-\[2rem\]:hover:disabled {
    border-radius: 2rem
}

.disabled\:hover\:bg-transparent:hover:disabled {
    background-color: transparent
}

.disabled\:hover\:text-white:hover:disabled {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.group:hover .group-hover\:-translate-x-12 {
    --tw-translate-x: -3rem
}

.group:hover .group-hover\:-translate-x-12,
.group:hover .group-hover\:-translate-x-4 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:-translate-x-4 {
    --tw-translate-x: -1rem
}

.group:hover .group-hover\:-translate-x-8 {
    --tw-translate-x: -2rem
}

.group:hover .group-hover\:-translate-x-8,
.group:hover .group-hover\:translate-x-4 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:translate-x-4 {
    --tw-translate-x: 1rem
}

.group:hover .group-hover\:translate-x-8 {
    --tw-translate-x: 2rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:rounded-none {
    border-radius: 0
}

.group:hover .group-hover\:bg-white\/50 {
    background-color: hsla(0, 0%, 100%, .5)
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1
}

.ui-selected\:border-b-2[data-headlessui-state~=selected] {
    border-bottom-width: 2px
}

.ui-selected\:border-white[data-headlessui-state~=selected] {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

.ui-selected\:text-white[data-headlessui-state~=selected] {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

:where([data-headlessui-state~=selected]) .ui-selected\:border-b-2 {
    border-bottom-width: 2px
}

:where([data-headlessui-state~=selected]) .ui-selected\:border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255/var(--tw-border-opacity))
}

:where([data-headlessui-state~=selected]) .ui-selected\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.ui-not-selected\:cursor-pointer[data-headlessui-state]:not([data-headlessui-state~=selected]) {
    cursor: pointer
}

.ui-not-selected\:border-white\/0[data-headlessui-state]:not([data-headlessui-state~=selected]) {
    border-color: hsla(0, 0%, 100%, 0)
}

.ui-not-selected\:text-white\/80[data-headlessui-state]:not([data-headlessui-state~=selected]) {
    color: hsla(0, 0%, 100%, .8)
}

.ui-not-selected\:hover\:text-white:hover[data-headlessui-state]:not([data-headlessui-state~=selected]) {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

:where([data-headlessui-state]:not([data-headlessui-state~=selected])) .ui-not-selected\:cursor-pointer:not([data-headlessui-state]) {
    cursor: pointer
}

:where([data-headlessui-state]:not([data-headlessui-state~=selected])) .ui-not-selected\:border-white\/0:not([data-headlessui-state]) {
    border-color: hsla(0, 0%, 100%, 0)
}

:where([data-headlessui-state]:not([data-headlessui-state~=selected])) .ui-not-selected\:text-white\/80:not([data-headlessui-state]) {
    color: hsla(0, 0%, 100%, .8)
}

:where([data-headlessui-state]:not([data-headlessui-state~=selected])) .ui-not-selected\:hover\:text-white:hover:not([data-headlessui-state]) {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

@media (prefers-color-scheme:dark) {
    .dark\:bg-gray-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(55 65 81/var(--tw-bg-opacity))
    }

    .dark\:bg-purple-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(88 28 135/var(--tw-bg-opacity))
    }

    .dark\:text-blue-400 {
        --tw-text-opacity: 1;
        color: rgb(96 165 250/var(--tw-text-opacity))
    }
}

@media (min-width:640px) {
    .sm\:-right-20 {
        right: -5rem
    }

    .sm\:top-\[30vw\] {
        top: 30vw
    }

    .sm\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

    .sm\:ml-12 {
        margin-left: 3rem
    }

    .sm\:mt-0 {
        margin-top: 0
    }

    .sm\:mt-\[1\.5vw\] {
        margin-top: 1.5vw
    }

    .sm\:flex {
        display: flex
    }

    .sm\:table-cell {
        display: table-cell
    }

    .sm\:w-1\/6 {
        width: 16.666667%
    }

    .sm\:w-12 {
        width: 3rem
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .sm\:p-10 {
        padding: 2.5rem
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .sm\:text-\[3vw\] {
        font-size: 3vw
    }

    .sm\:text-\[5vw\] {
        font-size: 5vw
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .sm\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .sm\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }
}

@media (min-width:768px) {
    .md\:-left-\[3vw\] {
        left: -3vw
    }

    .md\:mx-1 {
        margin-left: .25rem;
        margin-right: .25rem
    }

    .md\:mx-2 {
        margin-left: .5rem;
        margin-right: .5rem
    }

    .md\:mb-0 {
        margin-bottom: 0
    }

    .md\:mb-4 {
        margin-bottom: 1rem
    }

    .md\:mb-\[10vh\] {
        margin-bottom: 10vh
    }

    .md\:ml-0 {
        margin-left: 0
    }

    .md\:mr-1 {
        margin-right: .25rem
    }

    .md\:mt-0 {
        margin-top: 0
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:mt-20 {
        margin-top: 5rem
    }

    .md\:mt-\[-15vh\] {
        margin-top: -15vh
    }

    .md\:mt-\[\.5vw\] {
        margin-top: .5vw
    }

    .md\:block {
        display: block
    }

    .md\:inline {
        display: inline
    }

    .md\:flex {
        display: flex
    }

    .md\:hidden {
        display: none
    }

    .md\:aspect-video {
        aspect-ratio: 16/9
    }

    .md\:h-4 {
        height: 1rem
    }

    .md\:h-screen {
        height: 100vh
    }

    .md\:w-4 {
        width: 1rem
    }

    .md\:w-\[12\.45vw\] {
        width: 12.45vw
    }

    .md\:w-\[40vw\] {
        width: 40vw
    }

    .md\:w-\[90\%\] {
        width: 90%
    }

    .md\:w-auto {
        width: auto
    }

    .md\:max-w-md {
        max-width: 28rem
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:justify-end {
        justify-content: flex-end
    }

    .md\:justify-between {
        justify-content: space-between
    }

    .md\:overflow-visible {
        overflow: visible
    }

    .md\:rounded-t-\[4rem\] {
        border-top-left-radius: 4rem;
        border-top-right-radius: 4rem
    }

    .md\:p-8 {
        padding: 2rem
    }

    .md\:px-\[10vw\] {
        padding-left: 10vw;
        padding-right: 10vw
    }

    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .md\:pl-6 {
        padding-left: 1.5rem
    }

    .md\:pr-12 {
        padding-right: 3rem
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .md\:text-\[12vw\] {
        font-size: 12vw
    }

    .md\:text-\[3vw\] {
        font-size: 3vw
    }

    .md\:text-\[4vw\] {
        font-size: 4vw
    }

    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .md\:backdrop-blur {
        --tw-backdrop-blur: blur(8px);
        -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);
        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)
    }
}

@media (min-width:1024px) {
    .lg\:absolute {
        position: absolute
    }

    .lg\:relative {
        position: relative
    }

    .lg\:-bottom-12 {
        bottom: -3rem
    }

    .lg\:-top-\[40vh\] {
        top: -40vh
    }

    .lg\:bottom-\[4vw\] {
        bottom: 4vw
    }

    .lg\:left-0 {
        left: 0
    }

    .lg\:left-2 {
        left: .5rem
    }

    .lg\:left-6 {
        left: 1.5rem
    }

    .lg\:left-\[2vw\] {
        left: 2vw
    }

    .lg\:right-\[1\.5vw\] {
        right: 1.5vw
    }

    .lg\:top-0 {
        top: 0
    }

    .lg\:top-\[26px\] {
        top: 26px
    }

    .lg\:order-last {
        order: 9999
    }

    .lg\:col-span-1 {
        grid-column: span 1/span 1
    }

    .lg\:mx-2 {
        margin-left: .5rem;
        margin-right: .5rem
    }

    .lg\:-mt-12 {
        margin-top: -3rem
    }

    .lg\:mb-0 {
        margin-bottom: 0
    }

    .lg\:mb-52 {
        margin-bottom: 13rem
    }

    .lg\:mb-\[-5vw\] {
        margin-bottom: -5vw
    }

    .lg\:ml-0 {
        margin-left: 0
    }

    .lg\:ml-8 {
        margin-left: 2rem
    }

    .lg\:ml-\[-20px\] {
        margin-left: -20px
    }

    .lg\:mr-auto {
        margin-right: auto
    }

    .lg\:mt-0 {
        margin-top: 0
    }

    .lg\:mt-10 {
        margin-top: 2.5rem
    }

    .lg\:mt-\[5vw\] {
        margin-top: 5vw
    }

    .lg\:inline {
        display: inline
    }

    .lg\:flex {
        display: flex
    }

    .lg\:h-10 {
        height: 2.5rem
    }

    .lg\:h-\[2\.25vw\] {
        height: 2.25vw
    }

    .lg\:h-\[20vw\] {
        height: 20vw
    }

    .lg\:h-\[30vw\] {
        height: 30vw
    }

    .lg\:h-auto {
        height: auto
    }

    .lg\:h-full {
        height: 100%
    }

    .lg\:w-1\/2 {
        width: 50%
    }

    .lg\:w-1\/3 {
        width: 33.333333%
    }

    .lg\:w-1\/4 {
        width: 25%
    }

    .lg\:w-10 {
        width: 2.5rem
    }

    .lg\:w-2\/3 {
        width: 66.666667%
    }

    .lg\:w-3\/4 {
        width: 75%
    }

    .lg\:w-36 {
        width: 9rem
    }

    .lg\:w-\[14vw\] {
        width: 14vw
    }

    .lg\:w-\[16vw\] {
        width: 16vw
    }

    .lg\:w-\[2\.25vw\] {
        width: 2.25vw
    }

    .lg\:w-full {
        width: 100%
    }

    .lg\:grow {
        flex-grow: 1
    }

    .lg\:translate-x-\[-25\%\] {
        --tw-translate-x: -25%
    }

    .lg\:translate-x-\[-25\%\],
    .lg\:translate-y-\[0\] {
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }

    .lg\:translate-y-\[0\] {
        --tw-translate-y: 0
    }

    .lg\:rotate-90 {
        --tw-rotate: 90deg
    }

    .lg\:rotate-90,
    .lg\:scale-150 {
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
    }

    .lg\:scale-150 {
        --tw-scale-x: 1.5;
        --tw-scale-y: 1.5
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:justify-center {
        justify-content: center
    }

    .lg\:gap-16 {
        gap: 4rem
    }

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

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

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

    .lg\:overflow-x-hidden {
        overflow-x: hidden
    }

    .lg\:border-\[0\.5px\] {
        border-width: .5px
    }

    .lg\:border-y-\[0\.5px\] {
        border-top-width: .5px;
        border-bottom-width: .5px
    }

    .lg\:border-b-\[0\.5px\] {
        border-bottom-width: .5px
    }

    .lg\:border-l-\[0\.5px\] {
        border-left-width: .5px
    }

    .lg\:border-t-\[0\.5px\] {
        border-top-width: .5px
    }

    .lg\:p-1 {
        padding: .25rem
    }

    .lg\:p-2 {
        padding: .5rem
    }

    .lg\:p-\[1\.5vw\] {
        padding: 1.5vw
    }

    .lg\:p-\[10vw\] {
        padding: 10vw
    }

    .lg\:p-\[2vw\] {
        padding: 2vw
    }

    .lg\:p-\[3vw\] {
        padding: 3vw
    }

    .lg\:p-\[4vw\] {
        padding: 4vw
    }

    .lg\:px-16 {
        padding-left: 4rem;
        padding-right: 4rem
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .lg\:px-\[4vw\] {
        padding-left: 4vw;
        padding-right: 4vw
    }

    .lg\:px-\[8vw\] {
        padding-left: 8vw;
        padding-right: 8vw
    }

    .lg\:py-0 {
        padding-top: 0;
        padding-bottom: 0
    }

    .lg\:py-11 {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem
    }

    .lg\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .lg\:py-\[1\.5vw\] {
        padding-top: 1.5vw;
        padding-bottom: 1.5vw
    }

    .lg\:pb-16 {
        padding-bottom: 4rem
    }

    .lg\:pb-\[3vw\] {
        padding-bottom: 3vw
    }

    .lg\:pr-4 {
        padding-right: 1rem
    }

    .lg\:pt-\[\.75vw\] {
        padding-top: .75vw
    }

    .lg\:pt-\[3vw\] {
        padding-top: 3vw
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .lg\:text-\[10vw\] {
        font-size: 10vw
    }

    .lg\:text-\[1vw\] {
        font-size: 1vw
    }

    .lg\:text-\[2\.25vw\] {
        font-size: 2.25vw
    }

    .lg\:text-\[2\.5vw\] {
        font-size: 2.5vw
    }

    .lg\:text-\[3\.25vw\] {
        font-size: 3.25vw
    }

    .lg\:text-\[4vw\] {
        font-size: 4vw
    }

    .lg\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .lg\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .lg\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }

    .lg\:tracking-2px,
    .lg\:tracking-\[2px\] {
        letter-spacing: 2px
    }

    .lg\:backdrop-blur {
        --tw-backdrop-blur: blur(8px);
        -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);
        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)
    }
}

@media (min-width:1280px) {
    @media (min-width:768px) {
        .xl\:md\:text-lg {
            font-size: 1.125rem;
            line-height: 1.75rem
        }
    }

    .xl\:ml-2 {
        margin-left: .5rem
    }

    .xl\:mt-0 {
        margin-top: 0
    }

    .xl\:mt-\[\.75vw\] {
        margin-top: .75vw
    }

    .xl\:h-auto {
        height: auto
    }

    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .xl\:flex-row {
        flex-direction: row
    }

    .xl\:items-center {
        align-items: center
    }

    .xl\:justify-end {
        justify-content: flex-end
    }

    .xl\:justify-center {
        justify-content: center
    }

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

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

    .xl\:p-\[3vw\] {
        padding: 3vw
    }

    .xl\:px-\[3vw\] {
        padding-left: 3vw;
        padding-right: 3vw
    }

    .xl\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .xl\:text-\[5\.25vw\] {
        font-size: 5.25vw
    }

    .xl\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .xl\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }
}

.\[\&\:\:-webkit-slider-runnable-track\]\:rounded-full::-webkit-slider-runnable-track {
    border-radius: 9999px
}

.\[\&\:\:-webkit-slider-runnable-track\]\:bg-white\/10::-webkit-slider-runnable-track {
    background-color: hsla(0, 0%, 100%, .1)
}

.\[\&\:\:-webkit-slider-thumb\]\:h-\[20px\]::-webkit-slider-thumb {
    height: 20px
}

.\[\&\:\:-webkit-slider-thumb\]\:w-\[20px\]::-webkit-slider-thumb {
    width: 20px
}

.\[\&\:\:-webkit-slider-thumb\]\:appearance-none::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none
}

.\[\&\:\:-webkit-slider-thumb\]\:rounded-full::-webkit-slider-thumb {
    border-radius: 9999px
}

.\[\&\:\:-webkit-slider-thumb\]\:bg-purple-500::-webkit-slider-thumb {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247/var(--tw-bg-opacity))
}

.\[\&\:\:-webkit-slider-thumb\]\:bg-red-500::-webkit-slider-thumb {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68/var(--tw-bg-opacity))
}