/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/custom.css ***!
  \******************************************************************/
/* Custom HTMX and Alpine.js enhancements */

/* HTMX Loading indicators */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: block;
}

.htmx-request.htmx-indicator {
    display: block;
}

/* Smooth transitions for HTMX content */
.htmx-settling {
    opacity: 0;
}

.htmx-swapping {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* Alpine.js transitions */
[x-cloak] {
    display: none !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Focus states for accessibility */
.focus\:ring-2:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #3b82f6;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom gradients */
.gradient-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Logo animation effects */
@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-10px) translateX(5px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-5px) scale(0.9);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) translateX(3px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.3), 0 0 40px rgba(34, 211, 238, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(34, 211, 238, 0.5), 0 0 60px rgba(34, 211, 238, 0.3);
    }
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

.animate-glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Gradient border animation */
@keyframes gradient-border {
    0%, 100% {
        border-image: linear-gradient(45deg, #22d3ee, #3b82f6, #8b5cf6) 1;
    }
    33% {
        border-image: linear-gradient(45deg, #3b82f6, #8b5cf6, #22d3ee) 1;
    }
    66% {
        border-image: linear-gradient(45deg, #8b5cf6, #22d3ee, #3b82f6) 1;
    }
}

.animate-gradient-border {
    animation: gradient-border 3s ease-in-out infinite;
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .text-responsive {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .heading-responsive {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }

    .print-friendly {
        background: white !important;
        color: black !important;
    }
}

/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./css/input.css ***!
  \***********************************************************************************************************/
*, ::before, ::after {
  --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: rgb(59 130 246 / 0.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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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: rgb(59 130 246 / 0.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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

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

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

/*
Remove the default font size and weight for headings.
*/

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

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

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

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

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

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

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

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

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

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.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;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-2 {
  inset: 0.5rem;
}
.-bottom-40 {
  bottom: -10rem;
}
.-left-40 {
  left: -10rem;
}
.-right-40 {
  right: -10rem;
}
.-top-40 {
  top: -10rem;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-20 {
  bottom: 5rem;
}
.bottom-24 {
  bottom: 6rem;
}
.bottom-32 {
  bottom: 8rem;
}
.bottom-40 {
  bottom: 10rem;
}
.left-0 {
  left: 0px;
}
.left-10 {
  left: 2.5rem;
}
.left-16 {
  left: 4rem;
}
.left-20 {
  left: 5rem;
}
.left-24 {
  left: 6rem;
}
.left-32 {
  left: 8rem;
}
.right-0 {
  right: 0px;
}
.right-10 {
  right: 2.5rem;
}
.right-16 {
  right: 4rem;
}
.right-20 {
  right: 5rem;
}
.right-24 {
  right: 6rem;
}
.right-32 {
  right: 8rem;
}
.right-4 {
  right: 1rem;
}
.right-40 {
  right: 10rem;
}
.top-0 {
  top: 0px;
}
.top-10 {
  top: 2.5rem;
}
.top-16 {
  top: 4rem;
}
.top-20 {
  top: 5rem;
}
.top-32 {
  top: 8rem;
}
.top-4 {
  top: 1rem;
}
.top-40 {
  top: 10rem;
}
.top-56 {
  top: 14rem;
}
.top-60 {
  top: 15rem;
}
.isolate {
  isolation: isolate;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.z-\[9999\] {
  z-index: 9999;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-ml-1 {
  margin-left: -0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.inline-table {
  display: inline-table;
}
.table-caption {
  display: table-caption;
}
.table-cell {
  display: table-cell;
}
.table-column {
  display: table-column;
}
.table-column-group {
  display: table-column-group;
}
.table-footer-group {
  display: table-footer-group;
}
.table-header-group {
  display: table-header-group;
}
.table-row-group {
  display: table-row-group;
}
.table-row {
  display: table-row;
}
.flow-root {
  display: flow-root;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}
.contents {
  display: contents;
}
.list-item {
  display: list-item;
}
.hidden {
  display: none;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0px;
}
.w-1 {
  width: 0.25rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink {
  flex-shrink: 1;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.scale-0 {
  --tw-scale-x: 0;
  --tw-scale-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));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  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-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}
.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 bounce {

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

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes ping {

  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.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)));
}
.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(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 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-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.overflow-hidden {
  overflow: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-8 {
  border-bottom-width: 8px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-r-4 {
  border-right-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}
.border-cyan-400 {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.border-cyan-400\/50 {
  border-color: rgb(34 211 238 / 0.5);
}
.border-cyan-500\/20 {
  border-color: rgb(6 182 212 / 0.2);
}
.border-cyan-500\/30 {
  border-color: rgb(6 182 212 / 0.3);
}
.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-600\/30 {
  border-color: rgb(75 85 99 / 0.3);
}
.border-gray-600\/50 {
  border-color: rgb(75 85 99 / 0.5);
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.border-green-400\/50 {
  border-color: rgb(74 222 128 / 0.5);
}
.border-green-500\/50 {
  border-color: rgb(34 197 94 / 0.5);
}
.border-green-600 {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.border-green-700 {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}
.border-indigo-700 {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.border-orange-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.border-orange-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.border-orange-500\/50 {
  border-color: rgb(249 115 22 / 0.5);
}
.border-pink-400 {
  --tw-border-opacity: 1;
  border-color: rgb(244 114 182 / var(--tw-border-opacity, 1));
}
.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-b-orange-400 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.border-b-yellow-300 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.border-b-yellow-400 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.border-r-cyan-400 {
  --tw-border-opacity: 1;
  border-right-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.border-t-cyan-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-blue-400\/20 {
  background-color: rgb(96 165 250 / 0.2);
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-600\/20 {
  background-color: rgb(37 99 235 / 0.2);
}
.bg-blue-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
.bg-cyan-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.bg-cyan-400\/20 {
  background-color: rgb(34 211 238 / 0.2);
}
.bg-cyan-500\/10 {
  background-color: rgb(6 182 212 / 0.1);
}
.bg-cyan-500\/20 {
  background-color: rgb(6 182 212 / 0.2);
}
.bg-cyan-600\/20 {
  background-color: rgb(8 145 178 / 0.2);
}
.bg-emerald-400\/20 {
  background-color: rgb(52 211 153 / 0.2);
}
.bg-emerald-500\/20 {
  background-color: rgb(16 185 129 / 0.2);
}
.bg-emerald-600\/20 {
  background-color: rgb(5 150 105 / 0.2);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-gray-700\/50 {
  background-color: rgb(55 65 81 / 0.5);
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-800\/30 {
  background-color: rgb(31 41 55 / 0.3);
}
.bg-gray-800\/50 {
  background-color: rgb(31 41 55 / 0.5);
}
.bg-gray-800\/70 {
  background-color: rgb(31 41 55 / 0.7);
}
.bg-gray-800\/80 {
  background-color: rgb(31 41 55 / 0.8);
}
.bg-gray-800\/95 {
  background-color: rgb(31 41 55 / 0.95);
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-gray-900\/50 {
  background-color: rgb(17 24 39 / 0.5);
}
.bg-gray-900\/80 {
  background-color: rgb(17 24 39 / 0.8);
}
.bg-gray-900\/95 {
  background-color: rgb(17 24 39 / 0.95);
}
.bg-gray-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-400\/20 {
  background-color: rgb(74 222 128 / 0.2);
}
.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-500\/20 {
  background-color: rgb(34 197 94 / 0.2);
}
.bg-green-600\/20 {
  background-color: rgb(22 163 74 / 0.2);
}
.bg-green-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}
.bg-indigo-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(165 180 252 / var(--tw-bg-opacity, 1));
}
.bg-indigo-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.bg-indigo-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(49 46 129 / var(--tw-bg-opacity, 1));
}
.bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.bg-orange-500\/20 {
  background-color: rgb(249 115 22 / 0.2);
}
.bg-pink-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.bg-pink-400\/20 {
  background-color: rgb(244 114 182 / 0.2);
}
.bg-pink-500\/20 {
  background-color: rgb(236 72 153 / 0.2);
}
.bg-pink-600\/20 {
  background-color: rgb(219 39 119 / 0.2);
}
.bg-purple-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(216 180 254 / var(--tw-bg-opacity, 1));
}
.bg-purple-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.bg-purple-400\/20 {
  background-color: rgb(192 132 252 / 0.2);
}
.bg-purple-500\/20 {
  background-color: rgb(168 85 247 / 0.2);
}
.bg-purple-600\/20 {
  background-color: rgb(147 51 234 / 0.2);
}
.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-red-500\/20 {
  background-color: rgb(239 68 68 / 0.2);
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-slate-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}
.bg-slate-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}
.bg-teal-400\/20 {
  background-color: rgb(45 212 191 / 0.2);
}
.bg-teal-500\/20 {
  background-color: rgb(20 184 166 / 0.2);
}
.bg-teal-600\/20 {
  background-color: rgb(13 148 136 / 0.2);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500\/20 {
  background-color: rgb(234 179 8 / 0.2);
}
.bg-opacity-30 {
  --tw-bg-opacity: 0.3;
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-blue-400 {
  --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400\/15 {
  --tw-gradient-from: rgb(96 165 250 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400\/35 {
  --tw-gradient-from: rgb(96 165 250 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400\/45 {
  --tw-gradient-from: rgb(96 165 250 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400\/55 {
  --tw-gradient-from: rgb(96 165 250 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400\/65 {
  --tw-gradient-from: rgb(96 165 250 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400\/85 {
  --tw-gradient-from: rgb(96 165 250 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(96 165 250 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(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: rgb(59 130 246 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/15 {
  --tw-gradient-from: rgb(59 130 246 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/35 {
  --tw-gradient-from: rgb(59 130 246 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/45 {
  --tw-gradient-from: rgb(59 130 246 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/55 {
  --tw-gradient-from: rgb(59 130 246 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/65 {
  --tw-gradient-from: rgb(59 130 246 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/85 {
  --tw-gradient-from: rgb(59 130 246 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(59 130 246 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(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: rgb(37 99 235 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600\/15 {
  --tw-gradient-from: rgb(37 99 235 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600\/35 {
  --tw-gradient-from: rgb(37 99 235 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600\/45 {
  --tw-gradient-from: rgb(37 99 235 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600\/55 {
  --tw-gradient-from: rgb(37 99 235 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600\/65 {
  --tw-gradient-from: rgb(37 99 235 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600\/85 {
  --tw-gradient-from: rgb(37 99 235 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(37 99 235 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400 {
  --tw-gradient-from: #22d3ee var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/0 {
  --tw-gradient-from: rgb(34 211 238 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/10 {
  --tw-gradient-from: rgb(34 211 238 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/100 {
  --tw-gradient-from: rgb(34 211 238 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/15 {
  --tw-gradient-from: rgb(34 211 238 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/20 {
  --tw-gradient-from: rgb(34 211 238 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/25 {
  --tw-gradient-from: rgb(34 211 238 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/30 {
  --tw-gradient-from: rgb(34 211 238 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/35 {
  --tw-gradient-from: rgb(34 211 238 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/40 {
  --tw-gradient-from: rgb(34 211 238 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/45 {
  --tw-gradient-from: rgb(34 211 238 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/5 {
  --tw-gradient-from: rgb(34 211 238 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/50 {
  --tw-gradient-from: rgb(34 211 238 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/55 {
  --tw-gradient-from: rgb(34 211 238 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/60 {
  --tw-gradient-from: rgb(34 211 238 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/65 {
  --tw-gradient-from: rgb(34 211 238 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/70 {
  --tw-gradient-from: rgb(34 211 238 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/75 {
  --tw-gradient-from: rgb(34 211 238 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/80 {
  --tw-gradient-from: rgb(34 211 238 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/85 {
  --tw-gradient-from: rgb(34 211 238 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/90 {
  --tw-gradient-from: rgb(34 211 238 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-400\/95 {
  --tw-gradient-from: rgb(34 211 238 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500 {
  --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/0 {
  --tw-gradient-from: rgb(6 182 212 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/10 {
  --tw-gradient-from: rgb(6 182 212 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/100 {
  --tw-gradient-from: rgb(6 182 212 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/15 {
  --tw-gradient-from: rgb(6 182 212 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/20 {
  --tw-gradient-from: rgb(6 182 212 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/25 {
  --tw-gradient-from: rgb(6 182 212 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/30 {
  --tw-gradient-from: rgb(6 182 212 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/35 {
  --tw-gradient-from: rgb(6 182 212 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/40 {
  --tw-gradient-from: rgb(6 182 212 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/45 {
  --tw-gradient-from: rgb(6 182 212 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/5 {
  --tw-gradient-from: rgb(6 182 212 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/50 {
  --tw-gradient-from: rgb(6 182 212 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/55 {
  --tw-gradient-from: rgb(6 182 212 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/60 {
  --tw-gradient-from: rgb(6 182 212 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/65 {
  --tw-gradient-from: rgb(6 182 212 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/70 {
  --tw-gradient-from: rgb(6 182 212 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/75 {
  --tw-gradient-from: rgb(6 182 212 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/80 {
  --tw-gradient-from: rgb(6 182 212 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/85 {
  --tw-gradient-from: rgb(6 182 212 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/90 {
  --tw-gradient-from: rgb(6 182 212 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/95 {
  --tw-gradient-from: rgb(6 182 212 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600 {
  --tw-gradient-from: #0891b2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/0 {
  --tw-gradient-from: rgb(8 145 178 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/10 {
  --tw-gradient-from: rgb(8 145 178 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/100 {
  --tw-gradient-from: rgb(8 145 178 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/15 {
  --tw-gradient-from: rgb(8 145 178 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/20 {
  --tw-gradient-from: rgb(8 145 178 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/25 {
  --tw-gradient-from: rgb(8 145 178 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/30 {
  --tw-gradient-from: rgb(8 145 178 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/35 {
  --tw-gradient-from: rgb(8 145 178 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/40 {
  --tw-gradient-from: rgb(8 145 178 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/45 {
  --tw-gradient-from: rgb(8 145 178 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/5 {
  --tw-gradient-from: rgb(8 145 178 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/50 {
  --tw-gradient-from: rgb(8 145 178 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/55 {
  --tw-gradient-from: rgb(8 145 178 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/60 {
  --tw-gradient-from: rgb(8 145 178 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/65 {
  --tw-gradient-from: rgb(8 145 178 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/70 {
  --tw-gradient-from: rgb(8 145 178 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/75 {
  --tw-gradient-from: rgb(8 145 178 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/80 {
  --tw-gradient-from: rgb(8 145 178 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/85 {
  --tw-gradient-from: rgb(8 145 178 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/90 {
  --tw-gradient-from: rgb(8 145 178 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600\/95 {
  --tw-gradient-from: rgb(8 145 178 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 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: rgb(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: rgb(52 211 153 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400\/15 {
  --tw-gradient-from: rgb(52 211 153 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400\/35 {
  --tw-gradient-from: rgb(52 211 153 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400\/45 {
  --tw-gradient-from: rgb(52 211 153 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400\/55 {
  --tw-gradient-from: rgb(52 211 153 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400\/65 {
  --tw-gradient-from: rgb(52 211 153 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400\/85 {
  --tw-gradient-from: rgb(52 211 153 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(52 211 153 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(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: rgb(16 185 129 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/15 {
  --tw-gradient-from: rgb(16 185 129 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/35 {
  --tw-gradient-from: rgb(16 185 129 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/45 {
  --tw-gradient-from: rgb(16 185 129 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/55 {
  --tw-gradient-from: rgb(16 185 129 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/65 {
  --tw-gradient-from: rgb(16 185 129 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/85 {
  --tw-gradient-from: rgb(16 185 129 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(16 185 129 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(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: rgb(5 150 105 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-600\/15 {
  --tw-gradient-from: rgb(5 150 105 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-600\/35 {
  --tw-gradient-from: rgb(5 150 105 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-600\/45 {
  --tw-gradient-from: rgb(5 150 105 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-600\/55 {
  --tw-gradient-from: rgb(5 150 105 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-600\/65 {
  --tw-gradient-from: rgb(5 150 105 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-600\/85 {
  --tw-gradient-from: rgb(5 150 105 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(5 150 105 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-400 {
  --tw-gradient-from: #9ca3af var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(156 163 175 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-500 {
  --tw-gradient-from: #6b7280 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(107 114 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-700 {
  --tw-gradient-from: #374151 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-800\/80 {
  --tw-gradient-from: rgb(31 41 55 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(31 41 55 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900 {
  --tw-gradient-from: #111827 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 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: rgb(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: rgb(74 222 128 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400\/15 {
  --tw-gradient-from: rgb(74 222 128 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400\/35 {
  --tw-gradient-from: rgb(74 222 128 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400\/45 {
  --tw-gradient-from: rgb(74 222 128 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400\/55 {
  --tw-gradient-from: rgb(74 222 128 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400\/65 {
  --tw-gradient-from: rgb(74 222 128 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-400\/85 {
  --tw-gradient-from: rgb(74 222 128 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(74 222 128 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(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: rgb(34 197 94 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/15 {
  --tw-gradient-from: rgb(34 197 94 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/35 {
  --tw-gradient-from: rgb(34 197 94 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/45 {
  --tw-gradient-from: rgb(34 197 94 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/55 {
  --tw-gradient-from: rgb(34 197 94 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/65 {
  --tw-gradient-from: rgb(34 197 94 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/85 {
  --tw-gradient-from: rgb(34 197 94 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(34 197 94 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(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: rgb(22 163 74 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600\/15 {
  --tw-gradient-from: rgb(22 163 74 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600\/35 {
  --tw-gradient-from: rgb(22 163 74 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600\/45 {
  --tw-gradient-from: rgb(22 163 74 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600\/55 {
  --tw-gradient-from: rgb(22 163 74 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600\/65 {
  --tw-gradient-from: rgb(22 163 74 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-600\/85 {
  --tw-gradient-from: rgb(22 163 74 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(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: rgb(22 163 74 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-400 {
  --tw-gradient-from: #818cf8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(129 140 248 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-900 {
  --tw-gradient-from: #312e81 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(49 46 129 / 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: rgb(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: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-900 {
  --tw-gradient-from: #7c2d12 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(124 45 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400 {
  --tw-gradient-from: #f472b6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/0 {
  --tw-gradient-from: rgb(244 114 182 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/10 {
  --tw-gradient-from: rgb(244 114 182 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/100 {
  --tw-gradient-from: rgb(244 114 182 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/15 {
  --tw-gradient-from: rgb(244 114 182 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/20 {
  --tw-gradient-from: rgb(244 114 182 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/25 {
  --tw-gradient-from: rgb(244 114 182 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/30 {
  --tw-gradient-from: rgb(244 114 182 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/35 {
  --tw-gradient-from: rgb(244 114 182 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/40 {
  --tw-gradient-from: rgb(244 114 182 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/45 {
  --tw-gradient-from: rgb(244 114 182 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/5 {
  --tw-gradient-from: rgb(244 114 182 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/50 {
  --tw-gradient-from: rgb(244 114 182 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/55 {
  --tw-gradient-from: rgb(244 114 182 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/60 {
  --tw-gradient-from: rgb(244 114 182 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/65 {
  --tw-gradient-from: rgb(244 114 182 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/70 {
  --tw-gradient-from: rgb(244 114 182 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/75 {
  --tw-gradient-from: rgb(244 114 182 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/80 {
  --tw-gradient-from: rgb(244 114 182 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/85 {
  --tw-gradient-from: rgb(244 114 182 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/90 {
  --tw-gradient-from: rgb(244 114 182 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-400\/95 {
  --tw-gradient-from: rgb(244 114 182 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500 {
  --tw-gradient-from: #ec4899 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/0 {
  --tw-gradient-from: rgb(236 72 153 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/10 {
  --tw-gradient-from: rgb(236 72 153 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/100 {
  --tw-gradient-from: rgb(236 72 153 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/15 {
  --tw-gradient-from: rgb(236 72 153 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/20 {
  --tw-gradient-from: rgb(236 72 153 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/25 {
  --tw-gradient-from: rgb(236 72 153 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/30 {
  --tw-gradient-from: rgb(236 72 153 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/35 {
  --tw-gradient-from: rgb(236 72 153 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/40 {
  --tw-gradient-from: rgb(236 72 153 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/45 {
  --tw-gradient-from: rgb(236 72 153 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/5 {
  --tw-gradient-from: rgb(236 72 153 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/50 {
  --tw-gradient-from: rgb(236 72 153 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/55 {
  --tw-gradient-from: rgb(236 72 153 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/60 {
  --tw-gradient-from: rgb(236 72 153 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/65 {
  --tw-gradient-from: rgb(236 72 153 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/70 {
  --tw-gradient-from: rgb(236 72 153 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/75 {
  --tw-gradient-from: rgb(236 72 153 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/80 {
  --tw-gradient-from: rgb(236 72 153 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/85 {
  --tw-gradient-from: rgb(236 72 153 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/90 {
  --tw-gradient-from: rgb(236 72 153 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/95 {
  --tw-gradient-from: rgb(236 72 153 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600 {
  --tw-gradient-from: #db2777 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/0 {
  --tw-gradient-from: rgb(219 39 119 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/10 {
  --tw-gradient-from: rgb(219 39 119 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/100 {
  --tw-gradient-from: rgb(219 39 119 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/15 {
  --tw-gradient-from: rgb(219 39 119 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/20 {
  --tw-gradient-from: rgb(219 39 119 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/25 {
  --tw-gradient-from: rgb(219 39 119 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/30 {
  --tw-gradient-from: rgb(219 39 119 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/35 {
  --tw-gradient-from: rgb(219 39 119 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/40 {
  --tw-gradient-from: rgb(219 39 119 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/45 {
  --tw-gradient-from: rgb(219 39 119 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/5 {
  --tw-gradient-from: rgb(219 39 119 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/50 {
  --tw-gradient-from: rgb(219 39 119 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/55 {
  --tw-gradient-from: rgb(219 39 119 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/60 {
  --tw-gradient-from: rgb(219 39 119 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/65 {
  --tw-gradient-from: rgb(219 39 119 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/70 {
  --tw-gradient-from: rgb(219 39 119 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/75 {
  --tw-gradient-from: rgb(219 39 119 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/80 {
  --tw-gradient-from: rgb(219 39 119 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/85 {
  --tw-gradient-from: rgb(219 39 119 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/90 {
  --tw-gradient-from: rgb(219 39 119 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600\/95 {
  --tw-gradient-from: rgb(219 39 119 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400 {
  --tw-gradient-from: #c084fc var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/0 {
  --tw-gradient-from: rgb(192 132 252 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/10 {
  --tw-gradient-from: rgb(192 132 252 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/100 {
  --tw-gradient-from: rgb(192 132 252 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/15 {
  --tw-gradient-from: rgb(192 132 252 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/20 {
  --tw-gradient-from: rgb(192 132 252 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/25 {
  --tw-gradient-from: rgb(192 132 252 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/30 {
  --tw-gradient-from: rgb(192 132 252 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/35 {
  --tw-gradient-from: rgb(192 132 252 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/40 {
  --tw-gradient-from: rgb(192 132 252 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/45 {
  --tw-gradient-from: rgb(192 132 252 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/5 {
  --tw-gradient-from: rgb(192 132 252 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/50 {
  --tw-gradient-from: rgb(192 132 252 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/55 {
  --tw-gradient-from: rgb(192 132 252 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/60 {
  --tw-gradient-from: rgb(192 132 252 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/65 {
  --tw-gradient-from: rgb(192 132 252 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/70 {
  --tw-gradient-from: rgb(192 132 252 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/75 {
  --tw-gradient-from: rgb(192 132 252 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/80 {
  --tw-gradient-from: rgb(192 132 252 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/85 {
  --tw-gradient-from: rgb(192 132 252 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/90 {
  --tw-gradient-from: rgb(192 132 252 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-400\/95 {
  --tw-gradient-from: rgb(192 132 252 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/0 {
  --tw-gradient-from: rgb(168 85 247 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/10 {
  --tw-gradient-from: rgb(168 85 247 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/100 {
  --tw-gradient-from: rgb(168 85 247 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/15 {
  --tw-gradient-from: rgb(168 85 247 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/20 {
  --tw-gradient-from: rgb(168 85 247 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/25 {
  --tw-gradient-from: rgb(168 85 247 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/30 {
  --tw-gradient-from: rgb(168 85 247 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/35 {
  --tw-gradient-from: rgb(168 85 247 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/40 {
  --tw-gradient-from: rgb(168 85 247 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/45 {
  --tw-gradient-from: rgb(168 85 247 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/5 {
  --tw-gradient-from: rgb(168 85 247 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/50 {
  --tw-gradient-from: rgb(168 85 247 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/55 {
  --tw-gradient-from: rgb(168 85 247 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/60 {
  --tw-gradient-from: rgb(168 85 247 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/65 {
  --tw-gradient-from: rgb(168 85 247 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/70 {
  --tw-gradient-from: rgb(168 85 247 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/75 {
  --tw-gradient-from: rgb(168 85 247 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/80 {
  --tw-gradient-from: rgb(168 85 247 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/85 {
  --tw-gradient-from: rgb(168 85 247 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/90 {
  --tw-gradient-from: rgb(168 85 247 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/95 {
  --tw-gradient-from: rgb(168 85 247 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600 {
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/0 {
  --tw-gradient-from: rgb(147 51 234 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/10 {
  --tw-gradient-from: rgb(147 51 234 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/100 {
  --tw-gradient-from: rgb(147 51 234 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/15 {
  --tw-gradient-from: rgb(147 51 234 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/20 {
  --tw-gradient-from: rgb(147 51 234 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/25 {
  --tw-gradient-from: rgb(147 51 234 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/30 {
  --tw-gradient-from: rgb(147 51 234 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/35 {
  --tw-gradient-from: rgb(147 51 234 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/40 {
  --tw-gradient-from: rgb(147 51 234 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/45 {
  --tw-gradient-from: rgb(147 51 234 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/5 {
  --tw-gradient-from: rgb(147 51 234 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/50 {
  --tw-gradient-from: rgb(147 51 234 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/55 {
  --tw-gradient-from: rgb(147 51 234 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/60 {
  --tw-gradient-from: rgb(147 51 234 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/65 {
  --tw-gradient-from: rgb(147 51 234 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/70 {
  --tw-gradient-from: rgb(147 51 234 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/75 {
  --tw-gradient-from: rgb(147 51 234 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/80 {
  --tw-gradient-from: rgb(147 51 234 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/85 {
  --tw-gradient-from: rgb(147 51 234 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/90 {
  --tw-gradient-from: rgb(147 51 234 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600\/95 {
  --tw-gradient-from: rgb(147 51 234 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 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: rgb(248 113 113 / 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: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-900 {
  --tw-gradient-from: #7f1d1d var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(127 29 29 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-sky-500 {
  --tw-gradient-from: #0ea5e9 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(14 165 233 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400 {
  --tw-gradient-from: #2dd4bf var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/0 {
  --tw-gradient-from: rgb(45 212 191 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/10 {
  --tw-gradient-from: rgb(45 212 191 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/100 {
  --tw-gradient-from: rgb(45 212 191 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/15 {
  --tw-gradient-from: rgb(45 212 191 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/20 {
  --tw-gradient-from: rgb(45 212 191 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/25 {
  --tw-gradient-from: rgb(45 212 191 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/30 {
  --tw-gradient-from: rgb(45 212 191 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/35 {
  --tw-gradient-from: rgb(45 212 191 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/40 {
  --tw-gradient-from: rgb(45 212 191 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/45 {
  --tw-gradient-from: rgb(45 212 191 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/5 {
  --tw-gradient-from: rgb(45 212 191 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/50 {
  --tw-gradient-from: rgb(45 212 191 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/55 {
  --tw-gradient-from: rgb(45 212 191 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/60 {
  --tw-gradient-from: rgb(45 212 191 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/65 {
  --tw-gradient-from: rgb(45 212 191 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/70 {
  --tw-gradient-from: rgb(45 212 191 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/75 {
  --tw-gradient-from: rgb(45 212 191 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/80 {
  --tw-gradient-from: rgb(45 212 191 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/85 {
  --tw-gradient-from: rgb(45 212 191 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/90 {
  --tw-gradient-from: rgb(45 212 191 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400\/95 {
  --tw-gradient-from: rgb(45 212 191 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500 {
  --tw-gradient-from: #14b8a6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/0 {
  --tw-gradient-from: rgb(20 184 166 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/10 {
  --tw-gradient-from: rgb(20 184 166 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/100 {
  --tw-gradient-from: rgb(20 184 166 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/15 {
  --tw-gradient-from: rgb(20 184 166 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/20 {
  --tw-gradient-from: rgb(20 184 166 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/25 {
  --tw-gradient-from: rgb(20 184 166 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/30 {
  --tw-gradient-from: rgb(20 184 166 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/35 {
  --tw-gradient-from: rgb(20 184 166 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/40 {
  --tw-gradient-from: rgb(20 184 166 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/45 {
  --tw-gradient-from: rgb(20 184 166 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/5 {
  --tw-gradient-from: rgb(20 184 166 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/50 {
  --tw-gradient-from: rgb(20 184 166 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/55 {
  --tw-gradient-from: rgb(20 184 166 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/60 {
  --tw-gradient-from: rgb(20 184 166 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/65 {
  --tw-gradient-from: rgb(20 184 166 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/70 {
  --tw-gradient-from: rgb(20 184 166 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/75 {
  --tw-gradient-from: rgb(20 184 166 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/80 {
  --tw-gradient-from: rgb(20 184 166 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/85 {
  --tw-gradient-from: rgb(20 184 166 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/90 {
  --tw-gradient-from: rgb(20 184 166 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/95 {
  --tw-gradient-from: rgb(20 184 166 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600 {
  --tw-gradient-from: #0d9488 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/0 {
  --tw-gradient-from: rgb(13 148 136 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/10 {
  --tw-gradient-from: rgb(13 148 136 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/100 {
  --tw-gradient-from: rgb(13 148 136 / 1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/15 {
  --tw-gradient-from: rgb(13 148 136 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/20 {
  --tw-gradient-from: rgb(13 148 136 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/25 {
  --tw-gradient-from: rgb(13 148 136 / 0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/30 {
  --tw-gradient-from: rgb(13 148 136 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/35 {
  --tw-gradient-from: rgb(13 148 136 / 0.35) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/40 {
  --tw-gradient-from: rgb(13 148 136 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/45 {
  --tw-gradient-from: rgb(13 148 136 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/5 {
  --tw-gradient-from: rgb(13 148 136 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/50 {
  --tw-gradient-from: rgb(13 148 136 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/55 {
  --tw-gradient-from: rgb(13 148 136 / 0.55) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/60 {
  --tw-gradient-from: rgb(13 148 136 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/65 {
  --tw-gradient-from: rgb(13 148 136 / 0.65) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/70 {
  --tw-gradient-from: rgb(13 148 136 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/75 {
  --tw-gradient-from: rgb(13 148 136 / 0.75) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/80 {
  --tw-gradient-from: rgb(13 148 136 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/85 {
  --tw-gradient-from: rgb(13 148 136 / 0.85) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/90 {
  --tw-gradient-from: rgb(13 148 136 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-600\/95 {
  --tw-gradient-from: rgb(13 148 136 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 148 136 / 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: rgb(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: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-900 {
  --tw-gradient-from: #713f12 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(113 63 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-blue-500 {
  --tw-gradient-to: rgb(59 130 246 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #3b82f6 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-blue-500\/20 {
  --tw-gradient-to: rgb(59 130 246 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(59 130 246 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-blue-500\/30 {
  --tw-gradient-to: rgb(59 130 246 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(59 130 246 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-blue-900 {
  --tw-gradient-to: rgb(30 58 138 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-gray-800 {
  --tw-gradient-to: rgb(31 41 55 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #1f2937 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-orange-900 {
  --tw-gradient-to: rgb(124 45 18 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #7c2d12 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-pink-900 {
  --tw-gradient-to: rgb(131 24 67 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #831843 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-900 {
  --tw-gradient-to: rgb(88 28 135 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #581c87 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-red-900 {
  --tw-gradient-to: rgb(127 29 29 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-slate-900 {
  --tw-gradient-to: rgb(15 23 42 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #0f172a var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-blue-400 {
  --tw-gradient-to: #60a5fa var(--tw-gradient-to-position);
}
.to-blue-400\/0 {
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
}
.to-blue-400\/10 {
  --tw-gradient-to: rgb(96 165 250 / 0.1) var(--tw-gradient-to-position);
}
.to-blue-400\/100 {
  --tw-gradient-to: rgb(96 165 250 / 1) var(--tw-gradient-to-position);
}
.to-blue-400\/15 {
  --tw-gradient-to: rgb(96 165 250 / 0.15) var(--tw-gradient-to-position);
}
.to-blue-400\/20 {
  --tw-gradient-to: rgb(96 165 250 / 0.2) var(--tw-gradient-to-position);
}
.to-blue-400\/25 {
  --tw-gradient-to: rgb(96 165 250 / 0.25) var(--tw-gradient-to-position);
}
.to-blue-400\/30 {
  --tw-gradient-to: rgb(96 165 250 / 0.3) var(--tw-gradient-to-position);
}
.to-blue-400\/35 {
  --tw-gradient-to: rgb(96 165 250 / 0.35) var(--tw-gradient-to-position);
}
.to-blue-400\/40 {
  --tw-gradient-to: rgb(96 165 250 / 0.4) var(--tw-gradient-to-position);
}
.to-blue-400\/45 {
  --tw-gradient-to: rgb(96 165 250 / 0.45) var(--tw-gradient-to-position);
}
.to-blue-400\/5 {
  --tw-gradient-to: rgb(96 165 250 / 0.05) var(--tw-gradient-to-position);
}
.to-blue-400\/50 {
  --tw-gradient-to: rgb(96 165 250 / 0.5) var(--tw-gradient-to-position);
}
.to-blue-400\/55 {
  --tw-gradient-to: rgb(96 165 250 / 0.55) var(--tw-gradient-to-position);
}
.to-blue-400\/60 {
  --tw-gradient-to: rgb(96 165 250 / 0.6) var(--tw-gradient-to-position);
}
.to-blue-400\/65 {
  --tw-gradient-to: rgb(96 165 250 / 0.65) var(--tw-gradient-to-position);
}
.to-blue-400\/70 {
  --tw-gradient-to: rgb(96 165 250 / 0.7) var(--tw-gradient-to-position);
}
.to-blue-400\/75 {
  --tw-gradient-to: rgb(96 165 250 / 0.75) var(--tw-gradient-to-position);
}
.to-blue-400\/80 {
  --tw-gradient-to: rgb(96 165 250 / 0.8) var(--tw-gradient-to-position);
}
.to-blue-400\/85 {
  --tw-gradient-to: rgb(96 165 250 / 0.85) var(--tw-gradient-to-position);
}
.to-blue-400\/90 {
  --tw-gradient-to: rgb(96 165 250 / 0.9) var(--tw-gradient-to-position);
}
.to-blue-400\/95 {
  --tw-gradient-to: rgb(96 165 250 / 0.95) var(--tw-gradient-to-position);
}
.to-blue-500 {
  --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}
.to-blue-500\/0 {
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
}
.to-blue-500\/10 {
  --tw-gradient-to: rgb(59 130 246 / 0.1) var(--tw-gradient-to-position);
}
.to-blue-500\/100 {
  --tw-gradient-to: rgb(59 130 246 / 1) var(--tw-gradient-to-position);
}
.to-blue-500\/15 {
  --tw-gradient-to: rgb(59 130 246 / 0.15) var(--tw-gradient-to-position);
}
.to-blue-500\/20 {
  --tw-gradient-to: rgb(59 130 246 / 0.2) var(--tw-gradient-to-position);
}
.to-blue-500\/25 {
  --tw-gradient-to: rgb(59 130 246 / 0.25) var(--tw-gradient-to-position);
}
.to-blue-500\/30 {
  --tw-gradient-to: rgb(59 130 246 / 0.3) var(--tw-gradient-to-position);
}
.to-blue-500\/35 {
  --tw-gradient-to: rgb(59 130 246 / 0.35) var(--tw-gradient-to-position);
}
.to-blue-500\/40 {
  --tw-gradient-to: rgb(59 130 246 / 0.4) var(--tw-gradient-to-position);
}
.to-blue-500\/45 {
  --tw-gradient-to: rgb(59 130 246 / 0.45) var(--tw-gradient-to-position);
}
.to-blue-500\/5 {
  --tw-gradient-to: rgb(59 130 246 / 0.05) var(--tw-gradient-to-position);
}
.to-blue-500\/50 {
  --tw-gradient-to: rgb(59 130 246 / 0.5) var(--tw-gradient-to-position);
}
.to-blue-500\/55 {
  --tw-gradient-to: rgb(59 130 246 / 0.55) var(--tw-gradient-to-position);
}
.to-blue-500\/60 {
  --tw-gradient-to: rgb(59 130 246 / 0.6) var(--tw-gradient-to-position);
}
.to-blue-500\/65 {
  --tw-gradient-to: rgb(59 130 246 / 0.65) var(--tw-gradient-to-position);
}
.to-blue-500\/70 {
  --tw-gradient-to: rgb(59 130 246 / 0.7) var(--tw-gradient-to-position);
}
.to-blue-500\/75 {
  --tw-gradient-to: rgb(59 130 246 / 0.75) var(--tw-gradient-to-position);
}
.to-blue-500\/80 {
  --tw-gradient-to: rgb(59 130 246 / 0.8) var(--tw-gradient-to-position);
}
.to-blue-500\/85 {
  --tw-gradient-to: rgb(59 130 246 / 0.85) var(--tw-gradient-to-position);
}
.to-blue-500\/90 {
  --tw-gradient-to: rgb(59 130 246 / 0.9) var(--tw-gradient-to-position);
}
.to-blue-500\/95 {
  --tw-gradient-to: rgb(59 130 246 / 0.95) var(--tw-gradient-to-position);
}
.to-blue-600 {
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}
.to-blue-600\/0 {
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
}
.to-blue-600\/10 {
  --tw-gradient-to: rgb(37 99 235 / 0.1) var(--tw-gradient-to-position);
}
.to-blue-600\/100 {
  --tw-gradient-to: rgb(37 99 235 / 1) var(--tw-gradient-to-position);
}
.to-blue-600\/15 {
  --tw-gradient-to: rgb(37 99 235 / 0.15) var(--tw-gradient-to-position);
}
.to-blue-600\/20 {
  --tw-gradient-to: rgb(37 99 235 / 0.2) var(--tw-gradient-to-position);
}
.to-blue-600\/25 {
  --tw-gradient-to: rgb(37 99 235 / 0.25) var(--tw-gradient-to-position);
}
.to-blue-600\/30 {
  --tw-gradient-to: rgb(37 99 235 / 0.3) var(--tw-gradient-to-position);
}
.to-blue-600\/35 {
  --tw-gradient-to: rgb(37 99 235 / 0.35) var(--tw-gradient-to-position);
}
.to-blue-600\/40 {
  --tw-gradient-to: rgb(37 99 235 / 0.4) var(--tw-gradient-to-position);
}
.to-blue-600\/45 {
  --tw-gradient-to: rgb(37 99 235 / 0.45) var(--tw-gradient-to-position);
}
.to-blue-600\/5 {
  --tw-gradient-to: rgb(37 99 235 / 0.05) var(--tw-gradient-to-position);
}
.to-blue-600\/50 {
  --tw-gradient-to: rgb(37 99 235 / 0.5) var(--tw-gradient-to-position);
}
.to-blue-600\/55 {
  --tw-gradient-to: rgb(37 99 235 / 0.55) var(--tw-gradient-to-position);
}
.to-blue-600\/60 {
  --tw-gradient-to: rgb(37 99 235 / 0.6) var(--tw-gradient-to-position);
}
.to-blue-600\/65 {
  --tw-gradient-to: rgb(37 99 235 / 0.65) var(--tw-gradient-to-position);
}
.to-blue-600\/70 {
  --tw-gradient-to: rgb(37 99 235 / 0.7) var(--tw-gradient-to-position);
}
.to-blue-600\/75 {
  --tw-gradient-to: rgb(37 99 235 / 0.75) var(--tw-gradient-to-position);
}
.to-blue-600\/80 {
  --tw-gradient-to: rgb(37 99 235 / 0.8) var(--tw-gradient-to-position);
}
.to-blue-600\/85 {
  --tw-gradient-to: rgb(37 99 235 / 0.85) var(--tw-gradient-to-position);
}
.to-blue-600\/90 {
  --tw-gradient-to: rgb(37 99 235 / 0.9) var(--tw-gradient-to-position);
}
.to-blue-600\/95 {
  --tw-gradient-to: rgb(37 99 235 / 0.95) var(--tw-gradient-to-position);
}
.to-cyan-400 {
  --tw-gradient-to: #22d3ee var(--tw-gradient-to-position);
}
.to-cyan-400\/0 {
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
}
.to-cyan-400\/10 {
  --tw-gradient-to: rgb(34 211 238 / 0.1) var(--tw-gradient-to-position);
}
.to-cyan-400\/100 {
  --tw-gradient-to: rgb(34 211 238 / 1) var(--tw-gradient-to-position);
}
.to-cyan-400\/15 {
  --tw-gradient-to: rgb(34 211 238 / 0.15) var(--tw-gradient-to-position);
}
.to-cyan-400\/20 {
  --tw-gradient-to: rgb(34 211 238 / 0.2) var(--tw-gradient-to-position);
}
.to-cyan-400\/25 {
  --tw-gradient-to: rgb(34 211 238 / 0.25) var(--tw-gradient-to-position);
}
.to-cyan-400\/30 {
  --tw-gradient-to: rgb(34 211 238 / 0.3) var(--tw-gradient-to-position);
}
.to-cyan-400\/35 {
  --tw-gradient-to: rgb(34 211 238 / 0.35) var(--tw-gradient-to-position);
}
.to-cyan-400\/40 {
  --tw-gradient-to: rgb(34 211 238 / 0.4) var(--tw-gradient-to-position);
}
.to-cyan-400\/45 {
  --tw-gradient-to: rgb(34 211 238 / 0.45) var(--tw-gradient-to-position);
}
.to-cyan-400\/5 {
  --tw-gradient-to: rgb(34 211 238 / 0.05) var(--tw-gradient-to-position);
}
.to-cyan-400\/50 {
  --tw-gradient-to: rgb(34 211 238 / 0.5) var(--tw-gradient-to-position);
}
.to-cyan-400\/55 {
  --tw-gradient-to: rgb(34 211 238 / 0.55) var(--tw-gradient-to-position);
}
.to-cyan-400\/60 {
  --tw-gradient-to: rgb(34 211 238 / 0.6) var(--tw-gradient-to-position);
}
.to-cyan-400\/65 {
  --tw-gradient-to: rgb(34 211 238 / 0.65) var(--tw-gradient-to-position);
}
.to-cyan-400\/70 {
  --tw-gradient-to: rgb(34 211 238 / 0.7) var(--tw-gradient-to-position);
}
.to-cyan-400\/75 {
  --tw-gradient-to: rgb(34 211 238 / 0.75) var(--tw-gradient-to-position);
}
.to-cyan-400\/80 {
  --tw-gradient-to: rgb(34 211 238 / 0.8) var(--tw-gradient-to-position);
}
.to-cyan-400\/85 {
  --tw-gradient-to: rgb(34 211 238 / 0.85) var(--tw-gradient-to-position);
}
.to-cyan-400\/90 {
  --tw-gradient-to: rgb(34 211 238 / 0.9) var(--tw-gradient-to-position);
}
.to-cyan-400\/95 {
  --tw-gradient-to: rgb(34 211 238 / 0.95) var(--tw-gradient-to-position);
}
.to-cyan-500 {
  --tw-gradient-to: #06b6d4 var(--tw-gradient-to-position);
}
.to-cyan-500\/0 {
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
}
.to-cyan-500\/10 {
  --tw-gradient-to: rgb(6 182 212 / 0.1) var(--tw-gradient-to-position);
}
.to-cyan-500\/100 {
  --tw-gradient-to: rgb(6 182 212 / 1) var(--tw-gradient-to-position);
}
.to-cyan-500\/15 {
  --tw-gradient-to: rgb(6 182 212 / 0.15) var(--tw-gradient-to-position);
}
.to-cyan-500\/20 {
  --tw-gradient-to: rgb(6 182 212 / 0.2) var(--tw-gradient-to-position);
}
.to-cyan-500\/25 {
  --tw-gradient-to: rgb(6 182 212 / 0.25) var(--tw-gradient-to-position);
}
.to-cyan-500\/30 {
  --tw-gradient-to: rgb(6 182 212 / 0.3) var(--tw-gradient-to-position);
}
.to-cyan-500\/35 {
  --tw-gradient-to: rgb(6 182 212 / 0.35) var(--tw-gradient-to-position);
}
.to-cyan-500\/40 {
  --tw-gradient-to: rgb(6 182 212 / 0.4) var(--tw-gradient-to-position);
}
.to-cyan-500\/45 {
  --tw-gradient-to: rgb(6 182 212 / 0.45) var(--tw-gradient-to-position);
}
.to-cyan-500\/5 {
  --tw-gradient-to: rgb(6 182 212 / 0.05) var(--tw-gradient-to-position);
}
.to-cyan-500\/50 {
  --tw-gradient-to: rgb(6 182 212 / 0.5) var(--tw-gradient-to-position);
}
.to-cyan-500\/55 {
  --tw-gradient-to: rgb(6 182 212 / 0.55) var(--tw-gradient-to-position);
}
.to-cyan-500\/60 {
  --tw-gradient-to: rgb(6 182 212 / 0.6) var(--tw-gradient-to-position);
}
.to-cyan-500\/65 {
  --tw-gradient-to: rgb(6 182 212 / 0.65) var(--tw-gradient-to-position);
}
.to-cyan-500\/70 {
  --tw-gradient-to: rgb(6 182 212 / 0.7) var(--tw-gradient-to-position);
}
.to-cyan-500\/75 {
  --tw-gradient-to: rgb(6 182 212 / 0.75) var(--tw-gradient-to-position);
}
.to-cyan-500\/80 {
  --tw-gradient-to: rgb(6 182 212 / 0.8) var(--tw-gradient-to-position);
}
.to-cyan-500\/85 {
  --tw-gradient-to: rgb(6 182 212 / 0.85) var(--tw-gradient-to-position);
}
.to-cyan-500\/90 {
  --tw-gradient-to: rgb(6 182 212 / 0.9) var(--tw-gradient-to-position);
}
.to-cyan-500\/95 {
  --tw-gradient-to: rgb(6 182 212 / 0.95) var(--tw-gradient-to-position);
}
.to-cyan-600 {
  --tw-gradient-to: #0891b2 var(--tw-gradient-to-position);
}
.to-cyan-600\/0 {
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
}
.to-cyan-600\/10 {
  --tw-gradient-to: rgb(8 145 178 / 0.1) var(--tw-gradient-to-position);
}
.to-cyan-600\/100 {
  --tw-gradient-to: rgb(8 145 178 / 1) var(--tw-gradient-to-position);
}
.to-cyan-600\/15 {
  --tw-gradient-to: rgb(8 145 178 / 0.15) var(--tw-gradient-to-position);
}
.to-cyan-600\/20 {
  --tw-gradient-to: rgb(8 145 178 / 0.2) var(--tw-gradient-to-position);
}
.to-cyan-600\/25 {
  --tw-gradient-to: rgb(8 145 178 / 0.25) var(--tw-gradient-to-position);
}
.to-cyan-600\/30 {
  --tw-gradient-to: rgb(8 145 178 / 0.3) var(--tw-gradient-to-position);
}
.to-cyan-600\/35 {
  --tw-gradient-to: rgb(8 145 178 / 0.35) var(--tw-gradient-to-position);
}
.to-cyan-600\/40 {
  --tw-gradient-to: rgb(8 145 178 / 0.4) var(--tw-gradient-to-position);
}
.to-cyan-600\/45 {
  --tw-gradient-to: rgb(8 145 178 / 0.45) var(--tw-gradient-to-position);
}
.to-cyan-600\/5 {
  --tw-gradient-to: rgb(8 145 178 / 0.05) var(--tw-gradient-to-position);
}
.to-cyan-600\/50 {
  --tw-gradient-to: rgb(8 145 178 / 0.5) var(--tw-gradient-to-position);
}
.to-cyan-600\/55 {
  --tw-gradient-to: rgb(8 145 178 / 0.55) var(--tw-gradient-to-position);
}
.to-cyan-600\/60 {
  --tw-gradient-to: rgb(8 145 178 / 0.6) var(--tw-gradient-to-position);
}
.to-cyan-600\/65 {
  --tw-gradient-to: rgb(8 145 178 / 0.65) var(--tw-gradient-to-position);
}
.to-cyan-600\/70 {
  --tw-gradient-to: rgb(8 145 178 / 0.7) var(--tw-gradient-to-position);
}
.to-cyan-600\/75 {
  --tw-gradient-to: rgb(8 145 178 / 0.75) var(--tw-gradient-to-position);
}
.to-cyan-600\/80 {
  --tw-gradient-to: rgb(8 145 178 / 0.8) var(--tw-gradient-to-position);
}
.to-cyan-600\/85 {
  --tw-gradient-to: rgb(8 145 178 / 0.85) var(--tw-gradient-to-position);
}
.to-cyan-600\/90 {
  --tw-gradient-to: rgb(8 145 178 / 0.9) var(--tw-gradient-to-position);
}
.to-cyan-600\/95 {
  --tw-gradient-to: rgb(8 145 178 / 0.95) var(--tw-gradient-to-position);
}
.to-emerald-400 {
  --tw-gradient-to: #34d399 var(--tw-gradient-to-position);
}
.to-emerald-400\/0 {
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
}
.to-emerald-400\/10 {
  --tw-gradient-to: rgb(52 211 153 / 0.1) var(--tw-gradient-to-position);
}
.to-emerald-400\/100 {
  --tw-gradient-to: rgb(52 211 153 / 1) var(--tw-gradient-to-position);
}
.to-emerald-400\/15 {
  --tw-gradient-to: rgb(52 211 153 / 0.15) var(--tw-gradient-to-position);
}
.to-emerald-400\/20 {
  --tw-gradient-to: rgb(52 211 153 / 0.2) var(--tw-gradient-to-position);
}
.to-emerald-400\/25 {
  --tw-gradient-to: rgb(52 211 153 / 0.25) var(--tw-gradient-to-position);
}
.to-emerald-400\/30 {
  --tw-gradient-to: rgb(52 211 153 / 0.3) var(--tw-gradient-to-position);
}
.to-emerald-400\/35 {
  --tw-gradient-to: rgb(52 211 153 / 0.35) var(--tw-gradient-to-position);
}
.to-emerald-400\/40 {
  --tw-gradient-to: rgb(52 211 153 / 0.4) var(--tw-gradient-to-position);
}
.to-emerald-400\/45 {
  --tw-gradient-to: rgb(52 211 153 / 0.45) var(--tw-gradient-to-position);
}
.to-emerald-400\/5 {
  --tw-gradient-to: rgb(52 211 153 / 0.05) var(--tw-gradient-to-position);
}
.to-emerald-400\/50 {
  --tw-gradient-to: rgb(52 211 153 / 0.5) var(--tw-gradient-to-position);
}
.to-emerald-400\/55 {
  --tw-gradient-to: rgb(52 211 153 / 0.55) var(--tw-gradient-to-position);
}
.to-emerald-400\/60 {
  --tw-gradient-to: rgb(52 211 153 / 0.6) var(--tw-gradient-to-position);
}
.to-emerald-400\/65 {
  --tw-gradient-to: rgb(52 211 153 / 0.65) var(--tw-gradient-to-position);
}
.to-emerald-400\/70 {
  --tw-gradient-to: rgb(52 211 153 / 0.7) var(--tw-gradient-to-position);
}
.to-emerald-400\/75 {
  --tw-gradient-to: rgb(52 211 153 / 0.75) var(--tw-gradient-to-position);
}
.to-emerald-400\/80 {
  --tw-gradient-to: rgb(52 211 153 / 0.8) var(--tw-gradient-to-position);
}
.to-emerald-400\/85 {
  --tw-gradient-to: rgb(52 211 153 / 0.85) var(--tw-gradient-to-position);
}
.to-emerald-400\/90 {
  --tw-gradient-to: rgb(52 211 153 / 0.9) var(--tw-gradient-to-position);
}
.to-emerald-400\/95 {
  --tw-gradient-to: rgb(52 211 153 / 0.95) var(--tw-gradient-to-position);
}
.to-emerald-500 {
  --tw-gradient-to: #10b981 var(--tw-gradient-to-position);
}
.to-emerald-500\/0 {
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
}
.to-emerald-500\/10 {
  --tw-gradient-to: rgb(16 185 129 / 0.1) var(--tw-gradient-to-position);
}
.to-emerald-500\/100 {
  --tw-gradient-to: rgb(16 185 129 / 1) var(--tw-gradient-to-position);
}
.to-emerald-500\/15 {
  --tw-gradient-to: rgb(16 185 129 / 0.15) var(--tw-gradient-to-position);
}
.to-emerald-500\/20 {
  --tw-gradient-to: rgb(16 185 129 / 0.2) var(--tw-gradient-to-position);
}
.to-emerald-500\/25 {
  --tw-gradient-to: rgb(16 185 129 / 0.25) var(--tw-gradient-to-position);
}
.to-emerald-500\/30 {
  --tw-gradient-to: rgb(16 185 129 / 0.3) var(--tw-gradient-to-position);
}
.to-emerald-500\/35 {
  --tw-gradient-to: rgb(16 185 129 / 0.35) var(--tw-gradient-to-position);
}
.to-emerald-500\/40 {
  --tw-gradient-to: rgb(16 185 129 / 0.4) var(--tw-gradient-to-position);
}
.to-emerald-500\/45 {
  --tw-gradient-to: rgb(16 185 129 / 0.45) var(--tw-gradient-to-position);
}
.to-emerald-500\/5 {
  --tw-gradient-to: rgb(16 185 129 / 0.05) var(--tw-gradient-to-position);
}
.to-emerald-500\/50 {
  --tw-gradient-to: rgb(16 185 129 / 0.5) var(--tw-gradient-to-position);
}
.to-emerald-500\/55 {
  --tw-gradient-to: rgb(16 185 129 / 0.55) var(--tw-gradient-to-position);
}
.to-emerald-500\/60 {
  --tw-gradient-to: rgb(16 185 129 / 0.6) var(--tw-gradient-to-position);
}
.to-emerald-500\/65 {
  --tw-gradient-to: rgb(16 185 129 / 0.65) var(--tw-gradient-to-position);
}
.to-emerald-500\/70 {
  --tw-gradient-to: rgb(16 185 129 / 0.7) var(--tw-gradient-to-position);
}
.to-emerald-500\/75 {
  --tw-gradient-to: rgb(16 185 129 / 0.75) var(--tw-gradient-to-position);
}
.to-emerald-500\/80 {
  --tw-gradient-to: rgb(16 185 129 / 0.8) var(--tw-gradient-to-position);
}
.to-emerald-500\/85 {
  --tw-gradient-to: rgb(16 185 129 / 0.85) var(--tw-gradient-to-position);
}
.to-emerald-500\/90 {
  --tw-gradient-to: rgb(16 185 129 / 0.9) var(--tw-gradient-to-position);
}
.to-emerald-500\/95 {
  --tw-gradient-to: rgb(16 185 129 / 0.95) var(--tw-gradient-to-position);
}
.to-emerald-600 {
  --tw-gradient-to: #059669 var(--tw-gradient-to-position);
}
.to-emerald-600\/0 {
  --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
}
.to-emerald-600\/10 {
  --tw-gradient-to: rgb(5 150 105 / 0.1) var(--tw-gradient-to-position);
}
.to-emerald-600\/100 {
  --tw-gradient-to: rgb(5 150 105 / 1) var(--tw-gradient-to-position);
}
.to-emerald-600\/15 {
  --tw-gradient-to: rgb(5 150 105 / 0.15) var(--tw-gradient-to-position);
}
.to-emerald-600\/20 {
  --tw-gradient-to: rgb(5 150 105 / 0.2) var(--tw-gradient-to-position);
}
.to-emerald-600\/25 {
  --tw-gradient-to: rgb(5 150 105 / 0.25) var(--tw-gradient-to-position);
}
.to-emerald-600\/30 {
  --tw-gradient-to: rgb(5 150 105 / 0.3) var(--tw-gradient-to-position);
}
.to-emerald-600\/35 {
  --tw-gradient-to: rgb(5 150 105 / 0.35) var(--tw-gradient-to-position);
}
.to-emerald-600\/40 {
  --tw-gradient-to: rgb(5 150 105 / 0.4) var(--tw-gradient-to-position);
}
.to-emerald-600\/45 {
  --tw-gradient-to: rgb(5 150 105 / 0.45) var(--tw-gradient-to-position);
}
.to-emerald-600\/5 {
  --tw-gradient-to: rgb(5 150 105 / 0.05) var(--tw-gradient-to-position);
}
.to-emerald-600\/50 {
  --tw-gradient-to: rgb(5 150 105 / 0.5) var(--tw-gradient-to-position);
}
.to-emerald-600\/55 {
  --tw-gradient-to: rgb(5 150 105 / 0.55) var(--tw-gradient-to-position);
}
.to-emerald-600\/60 {
  --tw-gradient-to: rgb(5 150 105 / 0.6) var(--tw-gradient-to-position);
}
.to-emerald-600\/65 {
  --tw-gradient-to: rgb(5 150 105 / 0.65) var(--tw-gradient-to-position);
}
.to-emerald-600\/70 {
  --tw-gradient-to: rgb(5 150 105 / 0.7) var(--tw-gradient-to-position);
}
.to-emerald-600\/75 {
  --tw-gradient-to: rgb(5 150 105 / 0.75) var(--tw-gradient-to-position);
}
.to-emerald-600\/80 {
  --tw-gradient-to: rgb(5 150 105 / 0.8) var(--tw-gradient-to-position);
}
.to-emerald-600\/85 {
  --tw-gradient-to: rgb(5 150 105 / 0.85) var(--tw-gradient-to-position);
}
.to-emerald-600\/90 {
  --tw-gradient-to: rgb(5 150 105 / 0.9) var(--tw-gradient-to-position);
}
.to-emerald-600\/95 {
  --tw-gradient-to: rgb(5 150 105 / 0.95) var(--tw-gradient-to-position);
}
.to-gray-800 {
  --tw-gradient-to: #1f2937 var(--tw-gradient-to-position);
}
.to-gray-900 {
  --tw-gradient-to: #111827 var(--tw-gradient-to-position);
}
.to-gray-900\/80 {
  --tw-gradient-to: rgb(17 24 39 / 0.8) var(--tw-gradient-to-position);
}
.to-green-400 {
  --tw-gradient-to: #4ade80 var(--tw-gradient-to-position);
}
.to-green-400\/0 {
  --tw-gradient-to: rgb(74 222 128 / 0) var(--tw-gradient-to-position);
}
.to-green-400\/10 {
  --tw-gradient-to: rgb(74 222 128 / 0.1) var(--tw-gradient-to-position);
}
.to-green-400\/100 {
  --tw-gradient-to: rgb(74 222 128 / 1) var(--tw-gradient-to-position);
}
.to-green-400\/15 {
  --tw-gradient-to: rgb(74 222 128 / 0.15) var(--tw-gradient-to-position);
}
.to-green-400\/20 {
  --tw-gradient-to: rgb(74 222 128 / 0.2) var(--tw-gradient-to-position);
}
.to-green-400\/25 {
  --tw-gradient-to: rgb(74 222 128 / 0.25) var(--tw-gradient-to-position);
}
.to-green-400\/30 {
  --tw-gradient-to: rgb(74 222 128 / 0.3) var(--tw-gradient-to-position);
}
.to-green-400\/35 {
  --tw-gradient-to: rgb(74 222 128 / 0.35) var(--tw-gradient-to-position);
}
.to-green-400\/40 {
  --tw-gradient-to: rgb(74 222 128 / 0.4) var(--tw-gradient-to-position);
}
.to-green-400\/45 {
  --tw-gradient-to: rgb(74 222 128 / 0.45) var(--tw-gradient-to-position);
}
.to-green-400\/5 {
  --tw-gradient-to: rgb(74 222 128 / 0.05) var(--tw-gradient-to-position);
}
.to-green-400\/50 {
  --tw-gradient-to: rgb(74 222 128 / 0.5) var(--tw-gradient-to-position);
}
.to-green-400\/55 {
  --tw-gradient-to: rgb(74 222 128 / 0.55) var(--tw-gradient-to-position);
}
.to-green-400\/60 {
  --tw-gradient-to: rgb(74 222 128 / 0.6) var(--tw-gradient-to-position);
}
.to-green-400\/65 {
  --tw-gradient-to: rgb(74 222 128 / 0.65) var(--tw-gradient-to-position);
}
.to-green-400\/70 {
  --tw-gradient-to: rgb(74 222 128 / 0.7) var(--tw-gradient-to-position);
}
.to-green-400\/75 {
  --tw-gradient-to: rgb(74 222 128 / 0.75) var(--tw-gradient-to-position);
}
.to-green-400\/80 {
  --tw-gradient-to: rgb(74 222 128 / 0.8) var(--tw-gradient-to-position);
}
.to-green-400\/85 {
  --tw-gradient-to: rgb(74 222 128 / 0.85) var(--tw-gradient-to-position);
}
.to-green-400\/90 {
  --tw-gradient-to: rgb(74 222 128 / 0.9) var(--tw-gradient-to-position);
}
.to-green-400\/95 {
  --tw-gradient-to: rgb(74 222 128 / 0.95) var(--tw-gradient-to-position);
}
.to-green-500 {
  --tw-gradient-to: #22c55e var(--tw-gradient-to-position);
}
.to-green-500\/0 {
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
}
.to-green-500\/10 {
  --tw-gradient-to: rgb(34 197 94 / 0.1) var(--tw-gradient-to-position);
}
.to-green-500\/100 {
  --tw-gradient-to: rgb(34 197 94 / 1) var(--tw-gradient-to-position);
}
.to-green-500\/15 {
  --tw-gradient-to: rgb(34 197 94 / 0.15) var(--tw-gradient-to-position);
}
.to-green-500\/20 {
  --tw-gradient-to: rgb(34 197 94 / 0.2) var(--tw-gradient-to-position);
}
.to-green-500\/25 {
  --tw-gradient-to: rgb(34 197 94 / 0.25) var(--tw-gradient-to-position);
}
.to-green-500\/30 {
  --tw-gradient-to: rgb(34 197 94 / 0.3) var(--tw-gradient-to-position);
}
.to-green-500\/35 {
  --tw-gradient-to: rgb(34 197 94 / 0.35) var(--tw-gradient-to-position);
}
.to-green-500\/40 {
  --tw-gradient-to: rgb(34 197 94 / 0.4) var(--tw-gradient-to-position);
}
.to-green-500\/45 {
  --tw-gradient-to: rgb(34 197 94 / 0.45) var(--tw-gradient-to-position);
}
.to-green-500\/5 {
  --tw-gradient-to: rgb(34 197 94 / 0.05) var(--tw-gradient-to-position);
}
.to-green-500\/50 {
  --tw-gradient-to: rgb(34 197 94 / 0.5) var(--tw-gradient-to-position);
}
.to-green-500\/55 {
  --tw-gradient-to: rgb(34 197 94 / 0.55) var(--tw-gradient-to-position);
}
.to-green-500\/60 {
  --tw-gradient-to: rgb(34 197 94 / 0.6) var(--tw-gradient-to-position);
}
.to-green-500\/65 {
  --tw-gradient-to: rgb(34 197 94 / 0.65) var(--tw-gradient-to-position);
}
.to-green-500\/70 {
  --tw-gradient-to: rgb(34 197 94 / 0.7) var(--tw-gradient-to-position);
}
.to-green-500\/75 {
  --tw-gradient-to: rgb(34 197 94 / 0.75) var(--tw-gradient-to-position);
}
.to-green-500\/80 {
  --tw-gradient-to: rgb(34 197 94 / 0.8) var(--tw-gradient-to-position);
}
.to-green-500\/85 {
  --tw-gradient-to: rgb(34 197 94 / 0.85) var(--tw-gradient-to-position);
}
.to-green-500\/90 {
  --tw-gradient-to: rgb(34 197 94 / 0.9) var(--tw-gradient-to-position);
}
.to-green-500\/95 {
  --tw-gradient-to: rgb(34 197 94 / 0.95) var(--tw-gradient-to-position);
}
.to-green-600 {
  --tw-gradient-to: #16a34a var(--tw-gradient-to-position);
}
.to-green-600\/0 {
  --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
}
.to-green-600\/10 {
  --tw-gradient-to: rgb(22 163 74 / 0.1) var(--tw-gradient-to-position);
}
.to-green-600\/100 {
  --tw-gradient-to: rgb(22 163 74 / 1) var(--tw-gradient-to-position);
}
.to-green-600\/15 {
  --tw-gradient-to: rgb(22 163 74 / 0.15) var(--tw-gradient-to-position);
}
.to-green-600\/20 {
  --tw-gradient-to: rgb(22 163 74 / 0.2) var(--tw-gradient-to-position);
}
.to-green-600\/25 {
  --tw-gradient-to: rgb(22 163 74 / 0.25) var(--tw-gradient-to-position);
}
.to-green-600\/30 {
  --tw-gradient-to: rgb(22 163 74 / 0.3) var(--tw-gradient-to-position);
}
.to-green-600\/35 {
  --tw-gradient-to: rgb(22 163 74 / 0.35) var(--tw-gradient-to-position);
}
.to-green-600\/40 {
  --tw-gradient-to: rgb(22 163 74 / 0.4) var(--tw-gradient-to-position);
}
.to-green-600\/45 {
  --tw-gradient-to: rgb(22 163 74 / 0.45) var(--tw-gradient-to-position);
}
.to-green-600\/5 {
  --tw-gradient-to: rgb(22 163 74 / 0.05) var(--tw-gradient-to-position);
}
.to-green-600\/50 {
  --tw-gradient-to: rgb(22 163 74 / 0.5) var(--tw-gradient-to-position);
}
.to-green-600\/55 {
  --tw-gradient-to: rgb(22 163 74 / 0.55) var(--tw-gradient-to-position);
}
.to-green-600\/60 {
  --tw-gradient-to: rgb(22 163 74 / 0.6) var(--tw-gradient-to-position);
}
.to-green-600\/65 {
  --tw-gradient-to: rgb(22 163 74 / 0.65) var(--tw-gradient-to-position);
}
.to-green-600\/70 {
  --tw-gradient-to: rgb(22 163 74 / 0.7) var(--tw-gradient-to-position);
}
.to-green-600\/75 {
  --tw-gradient-to: rgb(22 163 74 / 0.75) var(--tw-gradient-to-position);
}
.to-green-600\/80 {
  --tw-gradient-to: rgb(22 163 74 / 0.8) var(--tw-gradient-to-position);
}
.to-green-600\/85 {
  --tw-gradient-to: rgb(22 163 74 / 0.85) var(--tw-gradient-to-position);
}
.to-green-600\/90 {
  --tw-gradient-to: rgb(22 163 74 / 0.9) var(--tw-gradient-to-position);
}
.to-green-600\/95 {
  --tw-gradient-to: rgb(22 163 74 / 0.95) var(--tw-gradient-to-position);
}
.to-indigo-600 {
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}
.to-orange-600 {
  --tw-gradient-to: #ea580c var(--tw-gradient-to-position);
}
.to-pink-400 {
  --tw-gradient-to: #f472b6 var(--tw-gradient-to-position);
}
.to-pink-400\/0 {
  --tw-gradient-to: rgb(244 114 182 / 0) var(--tw-gradient-to-position);
}
.to-pink-400\/10 {
  --tw-gradient-to: rgb(244 114 182 / 0.1) var(--tw-gradient-to-position);
}
.to-pink-400\/100 {
  --tw-gradient-to: rgb(244 114 182 / 1) var(--tw-gradient-to-position);
}
.to-pink-400\/15 {
  --tw-gradient-to: rgb(244 114 182 / 0.15) var(--tw-gradient-to-position);
}
.to-pink-400\/20 {
  --tw-gradient-to: rgb(244 114 182 / 0.2) var(--tw-gradient-to-position);
}
.to-pink-400\/25 {
  --tw-gradient-to: rgb(244 114 182 / 0.25) var(--tw-gradient-to-position);
}
.to-pink-400\/30 {
  --tw-gradient-to: rgb(244 114 182 / 0.3) var(--tw-gradient-to-position);
}
.to-pink-400\/35 {
  --tw-gradient-to: rgb(244 114 182 / 0.35) var(--tw-gradient-to-position);
}
.to-pink-400\/40 {
  --tw-gradient-to: rgb(244 114 182 / 0.4) var(--tw-gradient-to-position);
}
.to-pink-400\/45 {
  --tw-gradient-to: rgb(244 114 182 / 0.45) var(--tw-gradient-to-position);
}
.to-pink-400\/5 {
  --tw-gradient-to: rgb(244 114 182 / 0.05) var(--tw-gradient-to-position);
}
.to-pink-400\/50 {
  --tw-gradient-to: rgb(244 114 182 / 0.5) var(--tw-gradient-to-position);
}
.to-pink-400\/55 {
  --tw-gradient-to: rgb(244 114 182 / 0.55) var(--tw-gradient-to-position);
}
.to-pink-400\/60 {
  --tw-gradient-to: rgb(244 114 182 / 0.6) var(--tw-gradient-to-position);
}
.to-pink-400\/65 {
  --tw-gradient-to: rgb(244 114 182 / 0.65) var(--tw-gradient-to-position);
}
.to-pink-400\/70 {
  --tw-gradient-to: rgb(244 114 182 / 0.7) var(--tw-gradient-to-position);
}
.to-pink-400\/75 {
  --tw-gradient-to: rgb(244 114 182 / 0.75) var(--tw-gradient-to-position);
}
.to-pink-400\/80 {
  --tw-gradient-to: rgb(244 114 182 / 0.8) var(--tw-gradient-to-position);
}
.to-pink-400\/85 {
  --tw-gradient-to: rgb(244 114 182 / 0.85) var(--tw-gradient-to-position);
}
.to-pink-400\/90 {
  --tw-gradient-to: rgb(244 114 182 / 0.9) var(--tw-gradient-to-position);
}
.to-pink-400\/95 {
  --tw-gradient-to: rgb(244 114 182 / 0.95) var(--tw-gradient-to-position);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-pink-500\/0 {
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
}
.to-pink-500\/10 {
  --tw-gradient-to: rgb(236 72 153 / 0.1) var(--tw-gradient-to-position);
}
.to-pink-500\/100 {
  --tw-gradient-to: rgb(236 72 153 / 1) var(--tw-gradient-to-position);
}
.to-pink-500\/15 {
  --tw-gradient-to: rgb(236 72 153 / 0.15) var(--tw-gradient-to-position);
}
.to-pink-500\/20 {
  --tw-gradient-to: rgb(236 72 153 / 0.2) var(--tw-gradient-to-position);
}
.to-pink-500\/25 {
  --tw-gradient-to: rgb(236 72 153 / 0.25) var(--tw-gradient-to-position);
}
.to-pink-500\/30 {
  --tw-gradient-to: rgb(236 72 153 / 0.3) var(--tw-gradient-to-position);
}
.to-pink-500\/35 {
  --tw-gradient-to: rgb(236 72 153 / 0.35) var(--tw-gradient-to-position);
}
.to-pink-500\/40 {
  --tw-gradient-to: rgb(236 72 153 / 0.4) var(--tw-gradient-to-position);
}
.to-pink-500\/45 {
  --tw-gradient-to: rgb(236 72 153 / 0.45) var(--tw-gradient-to-position);
}
.to-pink-500\/5 {
  --tw-gradient-to: rgb(236 72 153 / 0.05) var(--tw-gradient-to-position);
}
.to-pink-500\/50 {
  --tw-gradient-to: rgb(236 72 153 / 0.5) var(--tw-gradient-to-position);
}
.to-pink-500\/55 {
  --tw-gradient-to: rgb(236 72 153 / 0.55) var(--tw-gradient-to-position);
}
.to-pink-500\/60 {
  --tw-gradient-to: rgb(236 72 153 / 0.6) var(--tw-gradient-to-position);
}
.to-pink-500\/65 {
  --tw-gradient-to: rgb(236 72 153 / 0.65) var(--tw-gradient-to-position);
}
.to-pink-500\/70 {
  --tw-gradient-to: rgb(236 72 153 / 0.7) var(--tw-gradient-to-position);
}
.to-pink-500\/75 {
  --tw-gradient-to: rgb(236 72 153 / 0.75) var(--tw-gradient-to-position);
}
.to-pink-500\/80 {
  --tw-gradient-to: rgb(236 72 153 / 0.8) var(--tw-gradient-to-position);
}
.to-pink-500\/85 {
  --tw-gradient-to: rgb(236 72 153 / 0.85) var(--tw-gradient-to-position);
}
.to-pink-500\/90 {
  --tw-gradient-to: rgb(236 72 153 / 0.9) var(--tw-gradient-to-position);
}
.to-pink-500\/95 {
  --tw-gradient-to: rgb(236 72 153 / 0.95) var(--tw-gradient-to-position);
}
.to-pink-600 {
  --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
}
.to-pink-600\/0 {
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
}
.to-pink-600\/10 {
  --tw-gradient-to: rgb(219 39 119 / 0.1) var(--tw-gradient-to-position);
}
.to-pink-600\/100 {
  --tw-gradient-to: rgb(219 39 119 / 1) var(--tw-gradient-to-position);
}
.to-pink-600\/15 {
  --tw-gradient-to: rgb(219 39 119 / 0.15) var(--tw-gradient-to-position);
}
.to-pink-600\/20 {
  --tw-gradient-to: rgb(219 39 119 / 0.2) var(--tw-gradient-to-position);
}
.to-pink-600\/25 {
  --tw-gradient-to: rgb(219 39 119 / 0.25) var(--tw-gradient-to-position);
}
.to-pink-600\/30 {
  --tw-gradient-to: rgb(219 39 119 / 0.3) var(--tw-gradient-to-position);
}
.to-pink-600\/35 {
  --tw-gradient-to: rgb(219 39 119 / 0.35) var(--tw-gradient-to-position);
}
.to-pink-600\/40 {
  --tw-gradient-to: rgb(219 39 119 / 0.4) var(--tw-gradient-to-position);
}
.to-pink-600\/45 {
  --tw-gradient-to: rgb(219 39 119 / 0.45) var(--tw-gradient-to-position);
}
.to-pink-600\/5 {
  --tw-gradient-to: rgb(219 39 119 / 0.05) var(--tw-gradient-to-position);
}
.to-pink-600\/50 {
  --tw-gradient-to: rgb(219 39 119 / 0.5) var(--tw-gradient-to-position);
}
.to-pink-600\/55 {
  --tw-gradient-to: rgb(219 39 119 / 0.55) var(--tw-gradient-to-position);
}
.to-pink-600\/60 {
  --tw-gradient-to: rgb(219 39 119 / 0.6) var(--tw-gradient-to-position);
}
.to-pink-600\/65 {
  --tw-gradient-to: rgb(219 39 119 / 0.65) var(--tw-gradient-to-position);
}
.to-pink-600\/70 {
  --tw-gradient-to: rgb(219 39 119 / 0.7) var(--tw-gradient-to-position);
}
.to-pink-600\/75 {
  --tw-gradient-to: rgb(219 39 119 / 0.75) var(--tw-gradient-to-position);
}
.to-pink-600\/80 {
  --tw-gradient-to: rgb(219 39 119 / 0.8) var(--tw-gradient-to-position);
}
.to-pink-600\/85 {
  --tw-gradient-to: rgb(219 39 119 / 0.85) var(--tw-gradient-to-position);
}
.to-pink-600\/90 {
  --tw-gradient-to: rgb(219 39 119 / 0.9) var(--tw-gradient-to-position);
}
.to-pink-600\/95 {
  --tw-gradient-to: rgb(219 39 119 / 0.95) var(--tw-gradient-to-position);
}
.to-pink-900 {
  --tw-gradient-to: #831843 var(--tw-gradient-to-position);
}
.to-purple-400 {
  --tw-gradient-to: #c084fc var(--tw-gradient-to-position);
}
.to-purple-400\/0 {
  --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
}
.to-purple-400\/10 {
  --tw-gradient-to: rgb(192 132 252 / 0.1) var(--tw-gradient-to-position);
}
.to-purple-400\/100 {
  --tw-gradient-to: rgb(192 132 252 / 1) var(--tw-gradient-to-position);
}
.to-purple-400\/15 {
  --tw-gradient-to: rgb(192 132 252 / 0.15) var(--tw-gradient-to-position);
}
.to-purple-400\/20 {
  --tw-gradient-to: rgb(192 132 252 / 0.2) var(--tw-gradient-to-position);
}
.to-purple-400\/25 {
  --tw-gradient-to: rgb(192 132 252 / 0.25) var(--tw-gradient-to-position);
}
.to-purple-400\/30 {
  --tw-gradient-to: rgb(192 132 252 / 0.3) var(--tw-gradient-to-position);
}
.to-purple-400\/35 {
  --tw-gradient-to: rgb(192 132 252 / 0.35) var(--tw-gradient-to-position);
}
.to-purple-400\/40 {
  --tw-gradient-to: rgb(192 132 252 / 0.4) var(--tw-gradient-to-position);
}
.to-purple-400\/45 {
  --tw-gradient-to: rgb(192 132 252 / 0.45) var(--tw-gradient-to-position);
}
.to-purple-400\/5 {
  --tw-gradient-to: rgb(192 132 252 / 0.05) var(--tw-gradient-to-position);
}
.to-purple-400\/50 {
  --tw-gradient-to: rgb(192 132 252 / 0.5) var(--tw-gradient-to-position);
}
.to-purple-400\/55 {
  --tw-gradient-to: rgb(192 132 252 / 0.55) var(--tw-gradient-to-position);
}
.to-purple-400\/60 {
  --tw-gradient-to: rgb(192 132 252 / 0.6) var(--tw-gradient-to-position);
}
.to-purple-400\/65 {
  --tw-gradient-to: rgb(192 132 252 / 0.65) var(--tw-gradient-to-position);
}
.to-purple-400\/70 {
  --tw-gradient-to: rgb(192 132 252 / 0.7) var(--tw-gradient-to-position);
}
.to-purple-400\/75 {
  --tw-gradient-to: rgb(192 132 252 / 0.75) var(--tw-gradient-to-position);
}
.to-purple-400\/80 {
  --tw-gradient-to: rgb(192 132 252 / 0.8) var(--tw-gradient-to-position);
}
.to-purple-400\/85 {
  --tw-gradient-to: rgb(192 132 252 / 0.85) var(--tw-gradient-to-position);
}
.to-purple-400\/90 {
  --tw-gradient-to: rgb(192 132 252 / 0.9) var(--tw-gradient-to-position);
}
.to-purple-400\/95 {
  --tw-gradient-to: rgb(192 132 252 / 0.95) var(--tw-gradient-to-position);
}
.to-purple-500 {
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.to-purple-500\/0 {
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
}
.to-purple-500\/10 {
  --tw-gradient-to: rgb(168 85 247 / 0.1) var(--tw-gradient-to-position);
}
.to-purple-500\/100 {
  --tw-gradient-to: rgb(168 85 247 / 1) var(--tw-gradient-to-position);
}
.to-purple-500\/15 {
  --tw-gradient-to: rgb(168 85 247 / 0.15) var(--tw-gradient-to-position);
}
.to-purple-500\/20 {
  --tw-gradient-to: rgb(168 85 247 / 0.2) var(--tw-gradient-to-position);
}
.to-purple-500\/25 {
  --tw-gradient-to: rgb(168 85 247 / 0.25) var(--tw-gradient-to-position);
}
.to-purple-500\/30 {
  --tw-gradient-to: rgb(168 85 247 / 0.3) var(--tw-gradient-to-position);
}
.to-purple-500\/35 {
  --tw-gradient-to: rgb(168 85 247 / 0.35) var(--tw-gradient-to-position);
}
.to-purple-500\/40 {
  --tw-gradient-to: rgb(168 85 247 / 0.4) var(--tw-gradient-to-position);
}
.to-purple-500\/45 {
  --tw-gradient-to: rgb(168 85 247 / 0.45) var(--tw-gradient-to-position);
}
.to-purple-500\/5 {
  --tw-gradient-to: rgb(168 85 247 / 0.05) var(--tw-gradient-to-position);
}
.to-purple-500\/50 {
  --tw-gradient-to: rgb(168 85 247 / 0.5) var(--tw-gradient-to-position);
}
.to-purple-500\/55 {
  --tw-gradient-to: rgb(168 85 247 / 0.55) var(--tw-gradient-to-position);
}
.to-purple-500\/60 {
  --tw-gradient-to: rgb(168 85 247 / 0.6) var(--tw-gradient-to-position);
}
.to-purple-500\/65 {
  --tw-gradient-to: rgb(168 85 247 / 0.65) var(--tw-gradient-to-position);
}
.to-purple-500\/70 {
  --tw-gradient-to: rgb(168 85 247 / 0.7) var(--tw-gradient-to-position);
}
.to-purple-500\/75 {
  --tw-gradient-to: rgb(168 85 247 / 0.75) var(--tw-gradient-to-position);
}
.to-purple-500\/80 {
  --tw-gradient-to: rgb(168 85 247 / 0.8) var(--tw-gradient-to-position);
}
.to-purple-500\/85 {
  --tw-gradient-to: rgb(168 85 247 / 0.85) var(--tw-gradient-to-position);
}
.to-purple-500\/90 {
  --tw-gradient-to: rgb(168 85 247 / 0.9) var(--tw-gradient-to-position);
}
.to-purple-500\/95 {
  --tw-gradient-to: rgb(168 85 247 / 0.95) var(--tw-gradient-to-position);
}
.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-purple-600\/0 {
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
}
.to-purple-600\/10 {
  --tw-gradient-to: rgb(147 51 234 / 0.1) var(--tw-gradient-to-position);
}
.to-purple-600\/100 {
  --tw-gradient-to: rgb(147 51 234 / 1) var(--tw-gradient-to-position);
}
.to-purple-600\/15 {
  --tw-gradient-to: rgb(147 51 234 / 0.15) var(--tw-gradient-to-position);
}
.to-purple-600\/20 {
  --tw-gradient-to: rgb(147 51 234 / 0.2) var(--tw-gradient-to-position);
}
.to-purple-600\/25 {
  --tw-gradient-to: rgb(147 51 234 / 0.25) var(--tw-gradient-to-position);
}
.to-purple-600\/30 {
  --tw-gradient-to: rgb(147 51 234 / 0.3) var(--tw-gradient-to-position);
}
.to-purple-600\/35 {
  --tw-gradient-to: rgb(147 51 234 / 0.35) var(--tw-gradient-to-position);
}
.to-purple-600\/40 {
  --tw-gradient-to: rgb(147 51 234 / 0.4) var(--tw-gradient-to-position);
}
.to-purple-600\/45 {
  --tw-gradient-to: rgb(147 51 234 / 0.45) var(--tw-gradient-to-position);
}
.to-purple-600\/5 {
  --tw-gradient-to: rgb(147 51 234 / 0.05) var(--tw-gradient-to-position);
}
.to-purple-600\/50 {
  --tw-gradient-to: rgb(147 51 234 / 0.5) var(--tw-gradient-to-position);
}
.to-purple-600\/55 {
  --tw-gradient-to: rgb(147 51 234 / 0.55) var(--tw-gradient-to-position);
}
.to-purple-600\/60 {
  --tw-gradient-to: rgb(147 51 234 / 0.6) var(--tw-gradient-to-position);
}
.to-purple-600\/65 {
  --tw-gradient-to: rgb(147 51 234 / 0.65) var(--tw-gradient-to-position);
}
.to-purple-600\/70 {
  --tw-gradient-to: rgb(147 51 234 / 0.7) var(--tw-gradient-to-position);
}
.to-purple-600\/75 {
  --tw-gradient-to: rgb(147 51 234 / 0.75) var(--tw-gradient-to-position);
}
.to-purple-600\/80 {
  --tw-gradient-to: rgb(147 51 234 / 0.8) var(--tw-gradient-to-position);
}
.to-purple-600\/85 {
  --tw-gradient-to: rgb(147 51 234 / 0.85) var(--tw-gradient-to-position);
}
.to-purple-600\/90 {
  --tw-gradient-to: rgb(147 51 234 / 0.9) var(--tw-gradient-to-position);
}
.to-purple-600\/95 {
  --tw-gradient-to: rgb(147 51 234 / 0.95) var(--tw-gradient-to-position);
}
.to-purple-900 {
  --tw-gradient-to: #581c87 var(--tw-gradient-to-position);
}
.to-red-600 {
  --tw-gradient-to: #dc2626 var(--tw-gradient-to-position);
}
.to-red-900 {
  --tw-gradient-to: #7f1d1d var(--tw-gradient-to-position);
}
.to-slate-600 {
  --tw-gradient-to: #475569 var(--tw-gradient-to-position);
}
.to-teal-400 {
  --tw-gradient-to: #2dd4bf var(--tw-gradient-to-position);
}
.to-teal-400\/0 {
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
}
.to-teal-400\/10 {
  --tw-gradient-to: rgb(45 212 191 / 0.1) var(--tw-gradient-to-position);
}
.to-teal-400\/100 {
  --tw-gradient-to: rgb(45 212 191 / 1) var(--tw-gradient-to-position);
}
.to-teal-400\/15 {
  --tw-gradient-to: rgb(45 212 191 / 0.15) var(--tw-gradient-to-position);
}
.to-teal-400\/20 {
  --tw-gradient-to: rgb(45 212 191 / 0.2) var(--tw-gradient-to-position);
}
.to-teal-400\/25 {
  --tw-gradient-to: rgb(45 212 191 / 0.25) var(--tw-gradient-to-position);
}
.to-teal-400\/30 {
  --tw-gradient-to: rgb(45 212 191 / 0.3) var(--tw-gradient-to-position);
}
.to-teal-400\/35 {
  --tw-gradient-to: rgb(45 212 191 / 0.35) var(--tw-gradient-to-position);
}
.to-teal-400\/40 {
  --tw-gradient-to: rgb(45 212 191 / 0.4) var(--tw-gradient-to-position);
}
.to-teal-400\/45 {
  --tw-gradient-to: rgb(45 212 191 / 0.45) var(--tw-gradient-to-position);
}
.to-teal-400\/5 {
  --tw-gradient-to: rgb(45 212 191 / 0.05) var(--tw-gradient-to-position);
}
.to-teal-400\/50 {
  --tw-gradient-to: rgb(45 212 191 / 0.5) var(--tw-gradient-to-position);
}
.to-teal-400\/55 {
  --tw-gradient-to: rgb(45 212 191 / 0.55) var(--tw-gradient-to-position);
}
.to-teal-400\/60 {
  --tw-gradient-to: rgb(45 212 191 / 0.6) var(--tw-gradient-to-position);
}
.to-teal-400\/65 {
  --tw-gradient-to: rgb(45 212 191 / 0.65) var(--tw-gradient-to-position);
}
.to-teal-400\/70 {
  --tw-gradient-to: rgb(45 212 191 / 0.7) var(--tw-gradient-to-position);
}
.to-teal-400\/75 {
  --tw-gradient-to: rgb(45 212 191 / 0.75) var(--tw-gradient-to-position);
}
.to-teal-400\/80 {
  --tw-gradient-to: rgb(45 212 191 / 0.8) var(--tw-gradient-to-position);
}
.to-teal-400\/85 {
  --tw-gradient-to: rgb(45 212 191 / 0.85) var(--tw-gradient-to-position);
}
.to-teal-400\/90 {
  --tw-gradient-to: rgb(45 212 191 / 0.9) var(--tw-gradient-to-position);
}
.to-teal-400\/95 {
  --tw-gradient-to: rgb(45 212 191 / 0.95) var(--tw-gradient-to-position);
}
.to-teal-500 {
  --tw-gradient-to: #14b8a6 var(--tw-gradient-to-position);
}
.to-teal-500\/0 {
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
}
.to-teal-500\/10 {
  --tw-gradient-to: rgb(20 184 166 / 0.1) var(--tw-gradient-to-position);
}
.to-teal-500\/100 {
  --tw-gradient-to: rgb(20 184 166 / 1) var(--tw-gradient-to-position);
}
.to-teal-500\/15 {
  --tw-gradient-to: rgb(20 184 166 / 0.15) var(--tw-gradient-to-position);
}
.to-teal-500\/20 {
  --tw-gradient-to: rgb(20 184 166 / 0.2) var(--tw-gradient-to-position);
}
.to-teal-500\/25 {
  --tw-gradient-to: rgb(20 184 166 / 0.25) var(--tw-gradient-to-position);
}
.to-teal-500\/30 {
  --tw-gradient-to: rgb(20 184 166 / 0.3) var(--tw-gradient-to-position);
}
.to-teal-500\/35 {
  --tw-gradient-to: rgb(20 184 166 / 0.35) var(--tw-gradient-to-position);
}
.to-teal-500\/40 {
  --tw-gradient-to: rgb(20 184 166 / 0.4) var(--tw-gradient-to-position);
}
.to-teal-500\/45 {
  --tw-gradient-to: rgb(20 184 166 / 0.45) var(--tw-gradient-to-position);
}
.to-teal-500\/5 {
  --tw-gradient-to: rgb(20 184 166 / 0.05) var(--tw-gradient-to-position);
}
.to-teal-500\/50 {
  --tw-gradient-to: rgb(20 184 166 / 0.5) var(--tw-gradient-to-position);
}
.to-teal-500\/55 {
  --tw-gradient-to: rgb(20 184 166 / 0.55) var(--tw-gradient-to-position);
}
.to-teal-500\/60 {
  --tw-gradient-to: rgb(20 184 166 / 0.6) var(--tw-gradient-to-position);
}
.to-teal-500\/65 {
  --tw-gradient-to: rgb(20 184 166 / 0.65) var(--tw-gradient-to-position);
}
.to-teal-500\/70 {
  --tw-gradient-to: rgb(20 184 166 / 0.7) var(--tw-gradient-to-position);
}
.to-teal-500\/75 {
  --tw-gradient-to: rgb(20 184 166 / 0.75) var(--tw-gradient-to-position);
}
.to-teal-500\/80 {
  --tw-gradient-to: rgb(20 184 166 / 0.8) var(--tw-gradient-to-position);
}
.to-teal-500\/85 {
  --tw-gradient-to: rgb(20 184 166 / 0.85) var(--tw-gradient-to-position);
}
.to-teal-500\/90 {
  --tw-gradient-to: rgb(20 184 166 / 0.9) var(--tw-gradient-to-position);
}
.to-teal-500\/95 {
  --tw-gradient-to: rgb(20 184 166 / 0.95) var(--tw-gradient-to-position);
}
.to-teal-600 {
  --tw-gradient-to: #0d9488 var(--tw-gradient-to-position);
}
.to-teal-600\/0 {
  --tw-gradient-to: rgb(13 148 136 / 0) var(--tw-gradient-to-position);
}
.to-teal-600\/10 {
  --tw-gradient-to: rgb(13 148 136 / 0.1) var(--tw-gradient-to-position);
}
.to-teal-600\/100 {
  --tw-gradient-to: rgb(13 148 136 / 1) var(--tw-gradient-to-position);
}
.to-teal-600\/15 {
  --tw-gradient-to: rgb(13 148 136 / 0.15) var(--tw-gradient-to-position);
}
.to-teal-600\/20 {
  --tw-gradient-to: rgb(13 148 136 / 0.2) var(--tw-gradient-to-position);
}
.to-teal-600\/25 {
  --tw-gradient-to: rgb(13 148 136 / 0.25) var(--tw-gradient-to-position);
}
.to-teal-600\/30 {
  --tw-gradient-to: rgb(13 148 136 / 0.3) var(--tw-gradient-to-position);
}
.to-teal-600\/35 {
  --tw-gradient-to: rgb(13 148 136 / 0.35) var(--tw-gradient-to-position);
}
.to-teal-600\/40 {
  --tw-gradient-to: rgb(13 148 136 / 0.4) var(--tw-gradient-to-position);
}
.to-teal-600\/45 {
  --tw-gradient-to: rgb(13 148 136 / 0.45) var(--tw-gradient-to-position);
}
.to-teal-600\/5 {
  --tw-gradient-to: rgb(13 148 136 / 0.05) var(--tw-gradient-to-position);
}
.to-teal-600\/50 {
  --tw-gradient-to: rgb(13 148 136 / 0.5) var(--tw-gradient-to-position);
}
.to-teal-600\/55 {
  --tw-gradient-to: rgb(13 148 136 / 0.55) var(--tw-gradient-to-position);
}
.to-teal-600\/60 {
  --tw-gradient-to: rgb(13 148 136 / 0.6) var(--tw-gradient-to-position);
}
.to-teal-600\/65 {
  --tw-gradient-to: rgb(13 148 136 / 0.65) var(--tw-gradient-to-position);
}
.to-teal-600\/70 {
  --tw-gradient-to: rgb(13 148 136 / 0.7) var(--tw-gradient-to-position);
}
.to-teal-600\/75 {
  --tw-gradient-to: rgb(13 148 136 / 0.75) var(--tw-gradient-to-position);
}
.to-teal-600\/80 {
  --tw-gradient-to: rgb(13 148 136 / 0.8) var(--tw-gradient-to-position);
}
.to-teal-600\/85 {
  --tw-gradient-to: rgb(13 148 136 / 0.85) var(--tw-gradient-to-position);
}
.to-teal-600\/90 {
  --tw-gradient-to: rgb(13 148 136 / 0.9) var(--tw-gradient-to-position);
}
.to-teal-600\/95 {
  --tw-gradient-to: rgb(13 148 136 / 0.95) var(--tw-gradient-to-position);
}
.to-yellow-900 {
  --tw-gradient-to: #713f12 var(--tw-gradient-to-position);
}
.to-zinc-900 {
  --tw-gradient-to: #18181b var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.slashed-zero {
  --tw-slashed-zero: slashed-zero;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.lining-nums {
  --tw-numeric-figure: lining-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.oldstyle-nums {
  --tw-numeric-figure: oldstyle-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.proportional-nums {
  --tw-numeric-spacing: proportional-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.diagonal-fractions {
  --tw-numeric-fraction: diagonal-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.stacked-fractions {
  --tw-numeric-fraction: stacked-fractions;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-relaxed {
  line-height: 1.625;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-blue-400\/0 {
  color: rgb(96 165 250 / 0);
}
.text-blue-400\/10 {
  color: rgb(96 165 250 / 0.1);
}
.text-blue-400\/100 {
  color: rgb(96 165 250 / 1);
}
.text-blue-400\/15 {
  color: rgb(96 165 250 / 0.15);
}
.text-blue-400\/20 {
  color: rgb(96 165 250 / 0.2);
}
.text-blue-400\/25 {
  color: rgb(96 165 250 / 0.25);
}
.text-blue-400\/30 {
  color: rgb(96 165 250 / 0.3);
}
.text-blue-400\/35 {
  color: rgb(96 165 250 / 0.35);
}
.text-blue-400\/40 {
  color: rgb(96 165 250 / 0.4);
}
.text-blue-400\/45 {
  color: rgb(96 165 250 / 0.45);
}
.text-blue-400\/5 {
  color: rgb(96 165 250 / 0.05);
}
.text-blue-400\/50 {
  color: rgb(96 165 250 / 0.5);
}
.text-blue-400\/55 {
  color: rgb(96 165 250 / 0.55);
}
.text-blue-400\/60 {
  color: rgb(96 165 250 / 0.6);
}
.text-blue-400\/65 {
  color: rgb(96 165 250 / 0.65);
}
.text-blue-400\/70 {
  color: rgb(96 165 250 / 0.7);
}
.text-blue-400\/75 {
  color: rgb(96 165 250 / 0.75);
}
.text-blue-400\/80 {
  color: rgb(96 165 250 / 0.8);
}
.text-blue-400\/85 {
  color: rgb(96 165 250 / 0.85);
}
.text-blue-400\/90 {
  color: rgb(96 165 250 / 0.9);
}
.text-blue-400\/95 {
  color: rgb(96 165 250 / 0.95);
}
.text-blue-50 {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-500\/0 {
  color: rgb(59 130 246 / 0);
}
.text-blue-500\/10 {
  color: rgb(59 130 246 / 0.1);
}
.text-blue-500\/100 {
  color: rgb(59 130 246 / 1);
}
.text-blue-500\/15 {
  color: rgb(59 130 246 / 0.15);
}
.text-blue-500\/20 {
  color: rgb(59 130 246 / 0.2);
}
.text-blue-500\/25 {
  color: rgb(59 130 246 / 0.25);
}
.text-blue-500\/30 {
  color: rgb(59 130 246 / 0.3);
}
.text-blue-500\/35 {
  color: rgb(59 130 246 / 0.35);
}
.text-blue-500\/40 {
  color: rgb(59 130 246 / 0.4);
}
.text-blue-500\/45 {
  color: rgb(59 130 246 / 0.45);
}
.text-blue-500\/5 {
  color: rgb(59 130 246 / 0.05);
}
.text-blue-500\/50 {
  color: rgb(59 130 246 / 0.5);
}
.text-blue-500\/55 {
  color: rgb(59 130 246 / 0.55);
}
.text-blue-500\/60 {
  color: rgb(59 130 246 / 0.6);
}
.text-blue-500\/65 {
  color: rgb(59 130 246 / 0.65);
}
.text-blue-500\/70 {
  color: rgb(59 130 246 / 0.7);
}
.text-blue-500\/75 {
  color: rgb(59 130 246 / 0.75);
}
.text-blue-500\/80 {
  color: rgb(59 130 246 / 0.8);
}
.text-blue-500\/85 {
  color: rgb(59 130 246 / 0.85);
}
.text-blue-500\/90 {
  color: rgb(59 130 246 / 0.9);
}
.text-blue-500\/95 {
  color: rgb(59 130 246 / 0.95);
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-600\/0 {
  color: rgb(37 99 235 / 0);
}
.text-blue-600\/10 {
  color: rgb(37 99 235 / 0.1);
}
.text-blue-600\/100 {
  color: rgb(37 99 235 / 1);
}
.text-blue-600\/15 {
  color: rgb(37 99 235 / 0.15);
}
.text-blue-600\/20 {
  color: rgb(37 99 235 / 0.2);
}
.text-blue-600\/25 {
  color: rgb(37 99 235 / 0.25);
}
.text-blue-600\/30 {
  color: rgb(37 99 235 / 0.3);
}
.text-blue-600\/35 {
  color: rgb(37 99 235 / 0.35);
}
.text-blue-600\/40 {
  color: rgb(37 99 235 / 0.4);
}
.text-blue-600\/45 {
  color: rgb(37 99 235 / 0.45);
}
.text-blue-600\/5 {
  color: rgb(37 99 235 / 0.05);
}
.text-blue-600\/50 {
  color: rgb(37 99 235 / 0.5);
}
.text-blue-600\/55 {
  color: rgb(37 99 235 / 0.55);
}
.text-blue-600\/60 {
  color: rgb(37 99 235 / 0.6);
}
.text-blue-600\/65 {
  color: rgb(37 99 235 / 0.65);
}
.text-blue-600\/70 {
  color: rgb(37 99 235 / 0.7);
}
.text-blue-600\/75 {
  color: rgb(37 99 235 / 0.75);
}
.text-blue-600\/80 {
  color: rgb(37 99 235 / 0.8);
}
.text-blue-600\/85 {
  color: rgb(37 99 235 / 0.85);
}
.text-blue-600\/90 {
  color: rgb(37 99 235 / 0.9);
}
.text-blue-600\/95 {
  color: rgb(37 99 235 / 0.95);
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.text-cyan-400\/0 {
  color: rgb(34 211 238 / 0);
}
.text-cyan-400\/10 {
  color: rgb(34 211 238 / 0.1);
}
.text-cyan-400\/100 {
  color: rgb(34 211 238 / 1);
}
.text-cyan-400\/15 {
  color: rgb(34 211 238 / 0.15);
}
.text-cyan-400\/20 {
  color: rgb(34 211 238 / 0.2);
}
.text-cyan-400\/25 {
  color: rgb(34 211 238 / 0.25);
}
.text-cyan-400\/30 {
  color: rgb(34 211 238 / 0.3);
}
.text-cyan-400\/35 {
  color: rgb(34 211 238 / 0.35);
}
.text-cyan-400\/40 {
  color: rgb(34 211 238 / 0.4);
}
.text-cyan-400\/45 {
  color: rgb(34 211 238 / 0.45);
}
.text-cyan-400\/5 {
  color: rgb(34 211 238 / 0.05);
}
.text-cyan-400\/50 {
  color: rgb(34 211 238 / 0.5);
}
.text-cyan-400\/55 {
  color: rgb(34 211 238 / 0.55);
}
.text-cyan-400\/60 {
  color: rgb(34 211 238 / 0.6);
}
.text-cyan-400\/65 {
  color: rgb(34 211 238 / 0.65);
}
.text-cyan-400\/70 {
  color: rgb(34 211 238 / 0.7);
}
.text-cyan-400\/75 {
  color: rgb(34 211 238 / 0.75);
}
.text-cyan-400\/80 {
  color: rgb(34 211 238 / 0.8);
}
.text-cyan-400\/85 {
  color: rgb(34 211 238 / 0.85);
}
.text-cyan-400\/90 {
  color: rgb(34 211 238 / 0.9);
}
.text-cyan-400\/95 {
  color: rgb(34 211 238 / 0.95);
}
.text-cyan-500 {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.text-cyan-500\/0 {
  color: rgb(6 182 212 / 0);
}
.text-cyan-500\/10 {
  color: rgb(6 182 212 / 0.1);
}
.text-cyan-500\/100 {
  color: rgb(6 182 212 / 1);
}
.text-cyan-500\/15 {
  color: rgb(6 182 212 / 0.15);
}
.text-cyan-500\/20 {
  color: rgb(6 182 212 / 0.2);
}
.text-cyan-500\/25 {
  color: rgb(6 182 212 / 0.25);
}
.text-cyan-500\/30 {
  color: rgb(6 182 212 / 0.3);
}
.text-cyan-500\/35 {
  color: rgb(6 182 212 / 0.35);
}
.text-cyan-500\/40 {
  color: rgb(6 182 212 / 0.4);
}
.text-cyan-500\/45 {
  color: rgb(6 182 212 / 0.45);
}
.text-cyan-500\/5 {
  color: rgb(6 182 212 / 0.05);
}
.text-cyan-500\/50 {
  color: rgb(6 182 212 / 0.5);
}
.text-cyan-500\/55 {
  color: rgb(6 182 212 / 0.55);
}
.text-cyan-500\/60 {
  color: rgb(6 182 212 / 0.6);
}
.text-cyan-500\/65 {
  color: rgb(6 182 212 / 0.65);
}
.text-cyan-500\/70 {
  color: rgb(6 182 212 / 0.7);
}
.text-cyan-500\/75 {
  color: rgb(6 182 212 / 0.75);
}
.text-cyan-500\/80 {
  color: rgb(6 182 212 / 0.8);
}
.text-cyan-500\/85 {
  color: rgb(6 182 212 / 0.85);
}
.text-cyan-500\/90 {
  color: rgb(6 182 212 / 0.9);
}
.text-cyan-500\/95 {
  color: rgb(6 182 212 / 0.95);
}
.text-cyan-600 {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.text-cyan-600\/0 {
  color: rgb(8 145 178 / 0);
}
.text-cyan-600\/10 {
  color: rgb(8 145 178 / 0.1);
}
.text-cyan-600\/100 {
  color: rgb(8 145 178 / 1);
}
.text-cyan-600\/15 {
  color: rgb(8 145 178 / 0.15);
}
.text-cyan-600\/20 {
  color: rgb(8 145 178 / 0.2);
}
.text-cyan-600\/25 {
  color: rgb(8 145 178 / 0.25);
}
.text-cyan-600\/30 {
  color: rgb(8 145 178 / 0.3);
}
.text-cyan-600\/35 {
  color: rgb(8 145 178 / 0.35);
}
.text-cyan-600\/40 {
  color: rgb(8 145 178 / 0.4);
}
.text-cyan-600\/45 {
  color: rgb(8 145 178 / 0.45);
}
.text-cyan-600\/5 {
  color: rgb(8 145 178 / 0.05);
}
.text-cyan-600\/50 {
  color: rgb(8 145 178 / 0.5);
}
.text-cyan-600\/55 {
  color: rgb(8 145 178 / 0.55);
}
.text-cyan-600\/60 {
  color: rgb(8 145 178 / 0.6);
}
.text-cyan-600\/65 {
  color: rgb(8 145 178 / 0.65);
}
.text-cyan-600\/70 {
  color: rgb(8 145 178 / 0.7);
}
.text-cyan-600\/75 {
  color: rgb(8 145 178 / 0.75);
}
.text-cyan-600\/80 {
  color: rgb(8 145 178 / 0.8);
}
.text-cyan-600\/85 {
  color: rgb(8 145 178 / 0.85);
}
.text-cyan-600\/90 {
  color: rgb(8 145 178 / 0.9);
}
.text-cyan-600\/95 {
  color: rgb(8 145 178 / 0.95);
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-emerald-400\/0 {
  color: rgb(52 211 153 / 0);
}
.text-emerald-400\/10 {
  color: rgb(52 211 153 / 0.1);
}
.text-emerald-400\/100 {
  color: rgb(52 211 153 / 1);
}
.text-emerald-400\/15 {
  color: rgb(52 211 153 / 0.15);
}
.text-emerald-400\/20 {
  color: rgb(52 211 153 / 0.2);
}
.text-emerald-400\/25 {
  color: rgb(52 211 153 / 0.25);
}
.text-emerald-400\/30 {
  color: rgb(52 211 153 / 0.3);
}
.text-emerald-400\/35 {
  color: rgb(52 211 153 / 0.35);
}
.text-emerald-400\/40 {
  color: rgb(52 211 153 / 0.4);
}
.text-emerald-400\/45 {
  color: rgb(52 211 153 / 0.45);
}
.text-emerald-400\/5 {
  color: rgb(52 211 153 / 0.05);
}
.text-emerald-400\/50 {
  color: rgb(52 211 153 / 0.5);
}
.text-emerald-400\/55 {
  color: rgb(52 211 153 / 0.55);
}
.text-emerald-400\/60 {
  color: rgb(52 211 153 / 0.6);
}
.text-emerald-400\/65 {
  color: rgb(52 211 153 / 0.65);
}
.text-emerald-400\/70 {
  color: rgb(52 211 153 / 0.7);
}
.text-emerald-400\/75 {
  color: rgb(52 211 153 / 0.75);
}
.text-emerald-400\/80 {
  color: rgb(52 211 153 / 0.8);
}
.text-emerald-400\/85 {
  color: rgb(52 211 153 / 0.85);
}
.text-emerald-400\/90 {
  color: rgb(52 211 153 / 0.9);
}
.text-emerald-400\/95 {
  color: rgb(52 211 153 / 0.95);
}
.text-emerald-500 {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.text-emerald-500\/0 {
  color: rgb(16 185 129 / 0);
}
.text-emerald-500\/10 {
  color: rgb(16 185 129 / 0.1);
}
.text-emerald-500\/100 {
  color: rgb(16 185 129 / 1);
}
.text-emerald-500\/15 {
  color: rgb(16 185 129 / 0.15);
}
.text-emerald-500\/20 {
  color: rgb(16 185 129 / 0.2);
}
.text-emerald-500\/25 {
  color: rgb(16 185 129 / 0.25);
}
.text-emerald-500\/30 {
  color: rgb(16 185 129 / 0.3);
}
.text-emerald-500\/35 {
  color: rgb(16 185 129 / 0.35);
}
.text-emerald-500\/40 {
  color: rgb(16 185 129 / 0.4);
}
.text-emerald-500\/45 {
  color: rgb(16 185 129 / 0.45);
}
.text-emerald-500\/5 {
  color: rgb(16 185 129 / 0.05);
}
.text-emerald-500\/50 {
  color: rgb(16 185 129 / 0.5);
}
.text-emerald-500\/55 {
  color: rgb(16 185 129 / 0.55);
}
.text-emerald-500\/60 {
  color: rgb(16 185 129 / 0.6);
}
.text-emerald-500\/65 {
  color: rgb(16 185 129 / 0.65);
}
.text-emerald-500\/70 {
  color: rgb(16 185 129 / 0.7);
}
.text-emerald-500\/75 {
  color: rgb(16 185 129 / 0.75);
}
.text-emerald-500\/80 {
  color: rgb(16 185 129 / 0.8);
}
.text-emerald-500\/85 {
  color: rgb(16 185 129 / 0.85);
}
.text-emerald-500\/90 {
  color: rgb(16 185 129 / 0.9);
}
.text-emerald-500\/95 {
  color: rgb(16 185 129 / 0.95);
}
.text-emerald-600 {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-emerald-600\/0 {
  color: rgb(5 150 105 / 0);
}
.text-emerald-600\/10 {
  color: rgb(5 150 105 / 0.1);
}
.text-emerald-600\/100 {
  color: rgb(5 150 105 / 1);
}
.text-emerald-600\/15 {
  color: rgb(5 150 105 / 0.15);
}
.text-emerald-600\/20 {
  color: rgb(5 150 105 / 0.2);
}
.text-emerald-600\/25 {
  color: rgb(5 150 105 / 0.25);
}
.text-emerald-600\/30 {
  color: rgb(5 150 105 / 0.3);
}
.text-emerald-600\/35 {
  color: rgb(5 150 105 / 0.35);
}
.text-emerald-600\/40 {
  color: rgb(5 150 105 / 0.4);
}
.text-emerald-600\/45 {
  color: rgb(5 150 105 / 0.45);
}
.text-emerald-600\/5 {
  color: rgb(5 150 105 / 0.05);
}
.text-emerald-600\/50 {
  color: rgb(5 150 105 / 0.5);
}
.text-emerald-600\/55 {
  color: rgb(5 150 105 / 0.55);
}
.text-emerald-600\/60 {
  color: rgb(5 150 105 / 0.6);
}
.text-emerald-600\/65 {
  color: rgb(5 150 105 / 0.65);
}
.text-emerald-600\/70 {
  color: rgb(5 150 105 / 0.7);
}
.text-emerald-600\/75 {
  color: rgb(5 150 105 / 0.75);
}
.text-emerald-600\/80 {
  color: rgb(5 150 105 / 0.8);
}
.text-emerald-600\/85 {
  color: rgb(5 150 105 / 0.85);
}
.text-emerald-600\/90 {
  color: rgb(5 150 105 / 0.9);
}
.text-emerald-600\/95 {
  color: rgb(5 150 105 / 0.95);
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-400\/0 {
  color: rgb(74 222 128 / 0);
}
.text-green-400\/10 {
  color: rgb(74 222 128 / 0.1);
}
.text-green-400\/100 {
  color: rgb(74 222 128 / 1);
}
.text-green-400\/15 {
  color: rgb(74 222 128 / 0.15);
}
.text-green-400\/20 {
  color: rgb(74 222 128 / 0.2);
}
.text-green-400\/25 {
  color: rgb(74 222 128 / 0.25);
}
.text-green-400\/30 {
  color: rgb(74 222 128 / 0.3);
}
.text-green-400\/35 {
  color: rgb(74 222 128 / 0.35);
}
.text-green-400\/40 {
  color: rgb(74 222 128 / 0.4);
}
.text-green-400\/45 {
  color: rgb(74 222 128 / 0.45);
}
.text-green-400\/5 {
  color: rgb(74 222 128 / 0.05);
}
.text-green-400\/50 {
  color: rgb(74 222 128 / 0.5);
}
.text-green-400\/55 {
  color: rgb(74 222 128 / 0.55);
}
.text-green-400\/60 {
  color: rgb(74 222 128 / 0.6);
}
.text-green-400\/65 {
  color: rgb(74 222 128 / 0.65);
}
.text-green-400\/70 {
  color: rgb(74 222 128 / 0.7);
}
.text-green-400\/75 {
  color: rgb(74 222 128 / 0.75);
}
.text-green-400\/80 {
  color: rgb(74 222 128 / 0.8);
}
.text-green-400\/85 {
  color: rgb(74 222 128 / 0.85);
}
.text-green-400\/90 {
  color: rgb(74 222 128 / 0.9);
}
.text-green-400\/95 {
  color: rgb(74 222 128 / 0.95);
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-500\/0 {
  color: rgb(34 197 94 / 0);
}
.text-green-500\/10 {
  color: rgb(34 197 94 / 0.1);
}
.text-green-500\/100 {
  color: rgb(34 197 94 / 1);
}
.text-green-500\/15 {
  color: rgb(34 197 94 / 0.15);
}
.text-green-500\/20 {
  color: rgb(34 197 94 / 0.2);
}
.text-green-500\/25 {
  color: rgb(34 197 94 / 0.25);
}
.text-green-500\/30 {
  color: rgb(34 197 94 / 0.3);
}
.text-green-500\/35 {
  color: rgb(34 197 94 / 0.35);
}
.text-green-500\/40 {
  color: rgb(34 197 94 / 0.4);
}
.text-green-500\/45 {
  color: rgb(34 197 94 / 0.45);
}
.text-green-500\/5 {
  color: rgb(34 197 94 / 0.05);
}
.text-green-500\/50 {
  color: rgb(34 197 94 / 0.5);
}
.text-green-500\/55 {
  color: rgb(34 197 94 / 0.55);
}
.text-green-500\/60 {
  color: rgb(34 197 94 / 0.6);
}
.text-green-500\/65 {
  color: rgb(34 197 94 / 0.65);
}
.text-green-500\/70 {
  color: rgb(34 197 94 / 0.7);
}
.text-green-500\/75 {
  color: rgb(34 197 94 / 0.75);
}
.text-green-500\/80 {
  color: rgb(34 197 94 / 0.8);
}
.text-green-500\/85 {
  color: rgb(34 197 94 / 0.85);
}
.text-green-500\/90 {
  color: rgb(34 197 94 / 0.9);
}
.text-green-500\/95 {
  color: rgb(34 197 94 / 0.95);
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-600\/0 {
  color: rgb(22 163 74 / 0);
}
.text-green-600\/10 {
  color: rgb(22 163 74 / 0.1);
}
.text-green-600\/100 {
  color: rgb(22 163 74 / 1);
}
.text-green-600\/15 {
  color: rgb(22 163 74 / 0.15);
}
.text-green-600\/20 {
  color: rgb(22 163 74 / 0.2);
}
.text-green-600\/25 {
  color: rgb(22 163 74 / 0.25);
}
.text-green-600\/30 {
  color: rgb(22 163 74 / 0.3);
}
.text-green-600\/35 {
  color: rgb(22 163 74 / 0.35);
}
.text-green-600\/40 {
  color: rgb(22 163 74 / 0.4);
}
.text-green-600\/45 {
  color: rgb(22 163 74 / 0.45);
}
.text-green-600\/5 {
  color: rgb(22 163 74 / 0.05);
}
.text-green-600\/50 {
  color: rgb(22 163 74 / 0.5);
}
.text-green-600\/55 {
  color: rgb(22 163 74 / 0.55);
}
.text-green-600\/60 {
  color: rgb(22 163 74 / 0.6);
}
.text-green-600\/65 {
  color: rgb(22 163 74 / 0.65);
}
.text-green-600\/70 {
  color: rgb(22 163 74 / 0.7);
}
.text-green-600\/75 {
  color: rgb(22 163 74 / 0.75);
}
.text-green-600\/80 {
  color: rgb(22 163 74 / 0.8);
}
.text-green-600\/85 {
  color: rgb(22 163 74 / 0.85);
}
.text-green-600\/90 {
  color: rgb(22 163 74 / 0.9);
}
.text-green-600\/95 {
  color: rgb(22 163 74 / 0.95);
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-indigo-400 {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.text-pink-400\/0 {
  color: rgb(244 114 182 / 0);
}
.text-pink-400\/10 {
  color: rgb(244 114 182 / 0.1);
}
.text-pink-400\/100 {
  color: rgb(244 114 182 / 1);
}
.text-pink-400\/15 {
  color: rgb(244 114 182 / 0.15);
}
.text-pink-400\/20 {
  color: rgb(244 114 182 / 0.2);
}
.text-pink-400\/25 {
  color: rgb(244 114 182 / 0.25);
}
.text-pink-400\/30 {
  color: rgb(244 114 182 / 0.3);
}
.text-pink-400\/35 {
  color: rgb(244 114 182 / 0.35);
}
.text-pink-400\/40 {
  color: rgb(244 114 182 / 0.4);
}
.text-pink-400\/45 {
  color: rgb(244 114 182 / 0.45);
}
.text-pink-400\/5 {
  color: rgb(244 114 182 / 0.05);
}
.text-pink-400\/50 {
  color: rgb(244 114 182 / 0.5);
}
.text-pink-400\/55 {
  color: rgb(244 114 182 / 0.55);
}
.text-pink-400\/60 {
  color: rgb(244 114 182 / 0.6);
}
.text-pink-400\/65 {
  color: rgb(244 114 182 / 0.65);
}
.text-pink-400\/70 {
  color: rgb(244 114 182 / 0.7);
}
.text-pink-400\/75 {
  color: rgb(244 114 182 / 0.75);
}
.text-pink-400\/80 {
  color: rgb(244 114 182 / 0.8);
}
.text-pink-400\/85 {
  color: rgb(244 114 182 / 0.85);
}
.text-pink-400\/90 {
  color: rgb(244 114 182 / 0.9);
}
.text-pink-400\/95 {
  color: rgb(244 114 182 / 0.95);
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-pink-500\/0 {
  color: rgb(236 72 153 / 0);
}
.text-pink-500\/10 {
  color: rgb(236 72 153 / 0.1);
}
.text-pink-500\/100 {
  color: rgb(236 72 153 / 1);
}
.text-pink-500\/15 {
  color: rgb(236 72 153 / 0.15);
}
.text-pink-500\/20 {
  color: rgb(236 72 153 / 0.2);
}
.text-pink-500\/25 {
  color: rgb(236 72 153 / 0.25);
}
.text-pink-500\/30 {
  color: rgb(236 72 153 / 0.3);
}
.text-pink-500\/35 {
  color: rgb(236 72 153 / 0.35);
}
.text-pink-500\/40 {
  color: rgb(236 72 153 / 0.4);
}
.text-pink-500\/45 {
  color: rgb(236 72 153 / 0.45);
}
.text-pink-500\/5 {
  color: rgb(236 72 153 / 0.05);
}
.text-pink-500\/50 {
  color: rgb(236 72 153 / 0.5);
}
.text-pink-500\/55 {
  color: rgb(236 72 153 / 0.55);
}
.text-pink-500\/60 {
  color: rgb(236 72 153 / 0.6);
}
.text-pink-500\/65 {
  color: rgb(236 72 153 / 0.65);
}
.text-pink-500\/70 {
  color: rgb(236 72 153 / 0.7);
}
.text-pink-500\/75 {
  color: rgb(236 72 153 / 0.75);
}
.text-pink-500\/80 {
  color: rgb(236 72 153 / 0.8);
}
.text-pink-500\/85 {
  color: rgb(236 72 153 / 0.85);
}
.text-pink-500\/90 {
  color: rgb(236 72 153 / 0.9);
}
.text-pink-500\/95 {
  color: rgb(236 72 153 / 0.95);
}
.text-pink-600 {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.text-pink-600\/0 {
  color: rgb(219 39 119 / 0);
}
.text-pink-600\/10 {
  color: rgb(219 39 119 / 0.1);
}
.text-pink-600\/100 {
  color: rgb(219 39 119 / 1);
}
.text-pink-600\/15 {
  color: rgb(219 39 119 / 0.15);
}
.text-pink-600\/20 {
  color: rgb(219 39 119 / 0.2);
}
.text-pink-600\/25 {
  color: rgb(219 39 119 / 0.25);
}
.text-pink-600\/30 {
  color: rgb(219 39 119 / 0.3);
}
.text-pink-600\/35 {
  color: rgb(219 39 119 / 0.35);
}
.text-pink-600\/40 {
  color: rgb(219 39 119 / 0.4);
}
.text-pink-600\/45 {
  color: rgb(219 39 119 / 0.45);
}
.text-pink-600\/5 {
  color: rgb(219 39 119 / 0.05);
}
.text-pink-600\/50 {
  color: rgb(219 39 119 / 0.5);
}
.text-pink-600\/55 {
  color: rgb(219 39 119 / 0.55);
}
.text-pink-600\/60 {
  color: rgb(219 39 119 / 0.6);
}
.text-pink-600\/65 {
  color: rgb(219 39 119 / 0.65);
}
.text-pink-600\/70 {
  color: rgb(219 39 119 / 0.7);
}
.text-pink-600\/75 {
  color: rgb(219 39 119 / 0.75);
}
.text-pink-600\/80 {
  color: rgb(219 39 119 / 0.8);
}
.text-pink-600\/85 {
  color: rgb(219 39 119 / 0.85);
}
.text-pink-600\/90 {
  color: rgb(219 39 119 / 0.9);
}
.text-pink-600\/95 {
  color: rgb(219 39 119 / 0.95);
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.text-purple-400\/0 {
  color: rgb(192 132 252 / 0);
}
.text-purple-400\/10 {
  color: rgb(192 132 252 / 0.1);
}
.text-purple-400\/100 {
  color: rgb(192 132 252 / 1);
}
.text-purple-400\/15 {
  color: rgb(192 132 252 / 0.15);
}
.text-purple-400\/20 {
  color: rgb(192 132 252 / 0.2);
}
.text-purple-400\/25 {
  color: rgb(192 132 252 / 0.25);
}
.text-purple-400\/30 {
  color: rgb(192 132 252 / 0.3);
}
.text-purple-400\/35 {
  color: rgb(192 132 252 / 0.35);
}
.text-purple-400\/40 {
  color: rgb(192 132 252 / 0.4);
}
.text-purple-400\/45 {
  color: rgb(192 132 252 / 0.45);
}
.text-purple-400\/5 {
  color: rgb(192 132 252 / 0.05);
}
.text-purple-400\/50 {
  color: rgb(192 132 252 / 0.5);
}
.text-purple-400\/55 {
  color: rgb(192 132 252 / 0.55);
}
.text-purple-400\/60 {
  color: rgb(192 132 252 / 0.6);
}
.text-purple-400\/65 {
  color: rgb(192 132 252 / 0.65);
}
.text-purple-400\/70 {
  color: rgb(192 132 252 / 0.7);
}
.text-purple-400\/75 {
  color: rgb(192 132 252 / 0.75);
}
.text-purple-400\/80 {
  color: rgb(192 132 252 / 0.8);
}
.text-purple-400\/85 {
  color: rgb(192 132 252 / 0.85);
}
.text-purple-400\/90 {
  color: rgb(192 132 252 / 0.9);
}
.text-purple-400\/95 {
  color: rgb(192 132 252 / 0.95);
}
.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-purple-500\/0 {
  color: rgb(168 85 247 / 0);
}
.text-purple-500\/10 {
  color: rgb(168 85 247 / 0.1);
}
.text-purple-500\/100 {
  color: rgb(168 85 247 / 1);
}
.text-purple-500\/15 {
  color: rgb(168 85 247 / 0.15);
}
.text-purple-500\/20 {
  color: rgb(168 85 247 / 0.2);
}
.text-purple-500\/25 {
  color: rgb(168 85 247 / 0.25);
}
.text-purple-500\/30 {
  color: rgb(168 85 247 / 0.3);
}
.text-purple-500\/35 {
  color: rgb(168 85 247 / 0.35);
}
.text-purple-500\/40 {
  color: rgb(168 85 247 / 0.4);
}
.text-purple-500\/45 {
  color: rgb(168 85 247 / 0.45);
}
.text-purple-500\/5 {
  color: rgb(168 85 247 / 0.05);
}
.text-purple-500\/50 {
  color: rgb(168 85 247 / 0.5);
}
.text-purple-500\/55 {
  color: rgb(168 85 247 / 0.55);
}
.text-purple-500\/60 {
  color: rgb(168 85 247 / 0.6);
}
.text-purple-500\/65 {
  color: rgb(168 85 247 / 0.65);
}
.text-purple-500\/70 {
  color: rgb(168 85 247 / 0.7);
}
.text-purple-500\/75 {
  color: rgb(168 85 247 / 0.75);
}
.text-purple-500\/80 {
  color: rgb(168 85 247 / 0.8);
}
.text-purple-500\/85 {
  color: rgb(168 85 247 / 0.85);
}
.text-purple-500\/90 {
  color: rgb(168 85 247 / 0.9);
}
.text-purple-500\/95 {
  color: rgb(168 85 247 / 0.95);
}
.text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-600\/0 {
  color: rgb(147 51 234 / 0);
}
.text-purple-600\/10 {
  color: rgb(147 51 234 / 0.1);
}
.text-purple-600\/100 {
  color: rgb(147 51 234 / 1);
}
.text-purple-600\/15 {
  color: rgb(147 51 234 / 0.15);
}
.text-purple-600\/20 {
  color: rgb(147 51 234 / 0.2);
}
.text-purple-600\/25 {
  color: rgb(147 51 234 / 0.25);
}
.text-purple-600\/30 {
  color: rgb(147 51 234 / 0.3);
}
.text-purple-600\/35 {
  color: rgb(147 51 234 / 0.35);
}
.text-purple-600\/40 {
  color: rgb(147 51 234 / 0.4);
}
.text-purple-600\/45 {
  color: rgb(147 51 234 / 0.45);
}
.text-purple-600\/5 {
  color: rgb(147 51 234 / 0.05);
}
.text-purple-600\/50 {
  color: rgb(147 51 234 / 0.5);
}
.text-purple-600\/55 {
  color: rgb(147 51 234 / 0.55);
}
.text-purple-600\/60 {
  color: rgb(147 51 234 / 0.6);
}
.text-purple-600\/65 {
  color: rgb(147 51 234 / 0.65);
}
.text-purple-600\/70 {
  color: rgb(147 51 234 / 0.7);
}
.text-purple-600\/75 {
  color: rgb(147 51 234 / 0.75);
}
.text-purple-600\/80 {
  color: rgb(147 51 234 / 0.8);
}
.text-purple-600\/85 {
  color: rgb(147 51 234 / 0.85);
}
.text-purple-600\/90 {
  color: rgb(147 51 234 / 0.9);
}
.text-purple-600\/95 {
  color: rgb(147 51 234 / 0.95);
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.text-teal-400\/0 {
  color: rgb(45 212 191 / 0);
}
.text-teal-400\/10 {
  color: rgb(45 212 191 / 0.1);
}
.text-teal-400\/100 {
  color: rgb(45 212 191 / 1);
}
.text-teal-400\/15 {
  color: rgb(45 212 191 / 0.15);
}
.text-teal-400\/20 {
  color: rgb(45 212 191 / 0.2);
}
.text-teal-400\/25 {
  color: rgb(45 212 191 / 0.25);
}
.text-teal-400\/30 {
  color: rgb(45 212 191 / 0.3);
}
.text-teal-400\/35 {
  color: rgb(45 212 191 / 0.35);
}
.text-teal-400\/40 {
  color: rgb(45 212 191 / 0.4);
}
.text-teal-400\/45 {
  color: rgb(45 212 191 / 0.45);
}
.text-teal-400\/5 {
  color: rgb(45 212 191 / 0.05);
}
.text-teal-400\/50 {
  color: rgb(45 212 191 / 0.5);
}
.text-teal-400\/55 {
  color: rgb(45 212 191 / 0.55);
}
.text-teal-400\/60 {
  color: rgb(45 212 191 / 0.6);
}
.text-teal-400\/65 {
  color: rgb(45 212 191 / 0.65);
}
.text-teal-400\/70 {
  color: rgb(45 212 191 / 0.7);
}
.text-teal-400\/75 {
  color: rgb(45 212 191 / 0.75);
}
.text-teal-400\/80 {
  color: rgb(45 212 191 / 0.8);
}
.text-teal-400\/85 {
  color: rgb(45 212 191 / 0.85);
}
.text-teal-400\/90 {
  color: rgb(45 212 191 / 0.9);
}
.text-teal-400\/95 {
  color: rgb(45 212 191 / 0.95);
}
.text-teal-500 {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.text-teal-500\/0 {
  color: rgb(20 184 166 / 0);
}
.text-teal-500\/10 {
  color: rgb(20 184 166 / 0.1);
}
.text-teal-500\/100 {
  color: rgb(20 184 166 / 1);
}
.text-teal-500\/15 {
  color: rgb(20 184 166 / 0.15);
}
.text-teal-500\/20 {
  color: rgb(20 184 166 / 0.2);
}
.text-teal-500\/25 {
  color: rgb(20 184 166 / 0.25);
}
.text-teal-500\/30 {
  color: rgb(20 184 166 / 0.3);
}
.text-teal-500\/35 {
  color: rgb(20 184 166 / 0.35);
}
.text-teal-500\/40 {
  color: rgb(20 184 166 / 0.4);
}
.text-teal-500\/45 {
  color: rgb(20 184 166 / 0.45);
}
.text-teal-500\/5 {
  color: rgb(20 184 166 / 0.05);
}
.text-teal-500\/50 {
  color: rgb(20 184 166 / 0.5);
}
.text-teal-500\/55 {
  color: rgb(20 184 166 / 0.55);
}
.text-teal-500\/60 {
  color: rgb(20 184 166 / 0.6);
}
.text-teal-500\/65 {
  color: rgb(20 184 166 / 0.65);
}
.text-teal-500\/70 {
  color: rgb(20 184 166 / 0.7);
}
.text-teal-500\/75 {
  color: rgb(20 184 166 / 0.75);
}
.text-teal-500\/80 {
  color: rgb(20 184 166 / 0.8);
}
.text-teal-500\/85 {
  color: rgb(20 184 166 / 0.85);
}
.text-teal-500\/90 {
  color: rgb(20 184 166 / 0.9);
}
.text-teal-500\/95 {
  color: rgb(20 184 166 / 0.95);
}
.text-teal-600 {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.text-teal-600\/0 {
  color: rgb(13 148 136 / 0);
}
.text-teal-600\/10 {
  color: rgb(13 148 136 / 0.1);
}
.text-teal-600\/100 {
  color: rgb(13 148 136 / 1);
}
.text-teal-600\/15 {
  color: rgb(13 148 136 / 0.15);
}
.text-teal-600\/20 {
  color: rgb(13 148 136 / 0.2);
}
.text-teal-600\/25 {
  color: rgb(13 148 136 / 0.25);
}
.text-teal-600\/30 {
  color: rgb(13 148 136 / 0.3);
}
.text-teal-600\/35 {
  color: rgb(13 148 136 / 0.35);
}
.text-teal-600\/40 {
  color: rgb(13 148 136 / 0.4);
}
.text-teal-600\/45 {
  color: rgb(13 148 136 / 0.45);
}
.text-teal-600\/5 {
  color: rgb(13 148 136 / 0.05);
}
.text-teal-600\/50 {
  color: rgb(13 148 136 / 0.5);
}
.text-teal-600\/55 {
  color: rgb(13 148 136 / 0.55);
}
.text-teal-600\/60 {
  color: rgb(13 148 136 / 0.6);
}
.text-teal-600\/65 {
  color: rgb(13 148 136 / 0.65);
}
.text-teal-600\/70 {
  color: rgb(13 148 136 / 0.7);
}
.text-teal-600\/75 {
  color: rgb(13 148 136 / 0.75);
}
.text-teal-600\/80 {
  color: rgb(13 148 136 / 0.8);
}
.text-teal-600\/85 {
  color: rgb(13 148 136 / 0.85);
}
.text-teal-600\/90 {
  color: rgb(13 148 136 / 0.9);
}
.text-teal-600\/95 {
  color: rgb(13 148 136 / 0.95);
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.overline {
  text-decoration-line: overline;
}
.line-through {
  text-decoration-line: line-through;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-gray-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.opacity-0 {
  opacity: 0;
}
.opacity-10 {
  opacity: 0.1;
}
.opacity-100 {
  opacity: 1;
}
.opacity-15 {
  opacity: 0.15;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 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);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 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);
}
.shadow-cyan-500\/25 {
  --tw-shadow-color: rgb(6 182 212 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/40 {
  --tw-shadow-color: rgb(6 182 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.blur {
  --tw-blur: blur(8px);
  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-3xl {
  --tw-blur: blur(64px);
  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-xl {
  --tw-blur: blur(24px);
  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);
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  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);
}
.invert {
  --tw-invert: invert(100%);
  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);
}
.sepia {
  --tw-sepia: sepia(100%);
  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);
}
.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-sm {
  --tw-backdrop-blur: blur(4px);
  -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-filter {
  -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);
}
.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(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.scrollbar-styled::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scrollbar-styled::-webkit-scrollbar-track {
  background-color: #1f2937;
  border-radius: 6px;
  border: 2px solid #111827;
}
.scrollbar-styled::-webkit-scrollbar-thumb {
  background-color: #3b82f6;
  border-radius: 6px;
  border: 2px solid #1f2937;
}
.scrollbar-styled::-webkit-scrollbar-thumb:hover {
  background-color: #60a5fa;
}
.scrollbar-styled::-webkit-scrollbar-thumb:active {
  background-color: #2563eb;
}
.scrollbar-styled::-webkit-scrollbar-corner {
  background-color: #1f2937;
}
.scrollbar-styled {
  scrollbar-width: auto;
  scrollbar-color: #3b82f6 #1f2937;
}
.\[-2\:-1\] {
  -2: -1;
}
.\[-n\:-1\] {
  -n: -1;
}
.\[b\:e\] {
  b: e;
}
.\[bottom\:top\] {
  bottom: top;
}
.\[chunk_start\:pos\] {
  chunk_start: pos;
}
.\[cols_start\:cols_end\] {
  cols_start: cols end;
}
.\[end\:next\] {
  end: next;
}
.\[endpos\:i\] {
  endpos: i;
}
.\[endpos\:semicolon\+1\] {
  endpos: semicolon+1;
}
.\[fr\:to\] {
  fr: to;
}
.\[i1\:i2\] {
  i1: i2;
}
.\[i\:hi\] {
  i: hi;
}
.\[i\:i\+1\] {
  i: i+1;
}
.\[i\:i\+2\] {
  i: i+2;
}
.\[i\:i\+span\+1\] {
  i: i+span+1;
}
.\[i\:i\+span\] {
  i: i+span;
}
.\[i\:i\+vpr\] {
  i: i+vpr;
}
.\[i\:j\+tokcount\] {
  i: j+tokcount;
}
.\[i\:j\] {
  i: j;
}
.\[index\:index\+2\] {
  index: index+2;
}
.\[index\:index\] {
  index: index;
}
.\[index\:newIndex\] {
  index: newIndex;
}
.\[inherit_ndx\:inherit_ndx\+1\] {
  inherit_ndx: inherit ndx+1;
}
.\[j\:chunk_end\] {
  j: chunk end;
}
.\[j\:i\] {
  j: i;
}
.\[j\:k\] {
  j: k;
}
.\[last\:m\.start\(0\)\] {
  last: m.start(0);
}
.\[last\:pos\] {
  last: pos;
}
.\[last\:start\] {
  last: start;
}
.\[last_i\:end_args\] {
  last_i: end args;
}
.\[lbound\:ubound\] {
  lbound: ubound;
}
.\[left\:right\] {
  left: right;
}
.\[length\:resume_index\] {
  length: resume index;
}
.\[line_offset\:end_line\] {
  line_offset: end line;
}
.\[lo\:i\] {
  lo: i;
}
.\[lower_bound\:lineno\] {
  lower_bound: lineno;
}
.\[model_fields_start\:model_fields_end\] {
  model_fields_start: model fields end;
}
.\[n1\:regionCount\] {
  n1: regionCount;
}
.\[offset\:next_offset\] {
  offset: next offset;
}
.\[offset\:pos\] {
  offset: pos;
}
.\[old_position\:self\.data\.position\] {
  old_position: self.data.position;
}
.\[p\:p\+3\] {
  p: p+3;
}
.\[parse_start\:parse_end\] {
  parse_start: parse end;
}
.\[parseopt_notrack_start\:parseopt_notrack_end\] {
  parseopt_notrack_start: parseopt notrack end;
}
.\[parseopt_start\:parseopt_end\] {
  parseopt_start: parseopt end;
}
.\[pos\:endPos\] {
  pos: endPos;
}
.\[pos\:end_pos\] {
  pos: end pos;
}
.\[pos\:new_pos\] {
  pos: new pos;
}
.\[pos\:newpos\] {
  pos: newpos;
}
.\[pos\:nextPos\] {
  pos: nextPos;
}
.\[pos\:nextpos\] {
  pos: nextpos;
}
.\[position\:offset\] {
  position: offset;
}
.\[position\:start\] {
  position: start;
}
.\[prev_end\:start\] {
  prev_end: start;
}
.\[s\:e\] {
  s: e;
}
.\[server\:main\] {
  server: main;
}
.\[skip_row\:resume_row\] {
  skip_row: resume row;
}
.\[start\:end\] {
  start: end;
}
.\[start\:stop\] {
  start: stop;
}
.\[startOffset\:endOffset\] {
  start-offset: endOffset;
}
.\[start_idx\:end_idx\] {
  start_idx: end idx;
}
.\[start_pos\:pos\] {
  start_pos: pos;
}
.\[start_word\:stop_word\] {
  start_word: stop word;
}
.\[token_start_pos\:pos\] {
  token_start_pos: pos;
}
.\[top\:bottom\] {
  top: bottom;
}
.\[trail_start\:middle_semicolon_index\] {
  trail_start: middle semicolon index;
}
.\[tuplei\:next_ti\] {
  tuplei: next ti;
}
.\[upto\:next\] {
  upto: next;
}
.\[upto\:start\] {
  upto: start;
}
.\[user\:passwd\@\] {
  user: passwd@;
}
.\[x\:nx\] {
  x: nx;
}
.\[x\:x\+width\] {
  x: x+width;
}
.\[y1\:y2\] {
  y1: y2;
}
.\[y\:y\+height\] {
  y: y+height;
}

/* Import custom styles */
.empty\:hidden:empty {
  display: none;
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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\:border-cyan-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-400\/50:hover {
  border-color: rgb(34 211 238 / 0.5);
}
.hover\:border-cyan-500\/50:hover {
  border-color: rgb(6 182 212 / 0.5);
}
.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-cyan-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700\/50:hover {
  background-color: rgb(55 65 81 / 0.5);
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/30:hover {
  background-color: rgb(255 255 255 / 0.3);
}
.hover\:bg-yellow-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.hover\:from-blue-600:hover {
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-cyan-600:hover {
  --tw-gradient-from: #0891b2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-indigo-600:hover {
  --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-orange-600:hover {
  --tw-gradient-from: #ea580c var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(234 88 12 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-red-600:hover {
  --tw-gradient-from: #dc2626 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(220 38 38 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-yellow-600:hover {
  --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(202 138 4 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:to-blue-600:hover {
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}
.hover\:to-blue-700:hover {
  --tw-gradient-to: #1d4ed8 var(--tw-gradient-to-position);
}
.hover\:to-indigo-700:hover {
  --tw-gradient-to: #4338ca var(--tw-gradient-to-position);
}
.hover\:to-orange-700:hover {
  --tw-gradient-to: #c2410c var(--tw-gradient-to-position);
}
.hover\:to-pink-700:hover {
  --tw-gradient-to: #be185d var(--tw-gradient-to-position);
}
.hover\:to-purple-700:hover {
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}
.hover\:to-red-700:hover {
  --tw-gradient-to: #b91c1c var(--tw-gradient-to-position);
}
.hover\:text-blue-300:hover {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-300:hover {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-400:hover {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-400:hover {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-300:hover {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.hover\:text-red-300:hover {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.hover\:text-yellow-300:hover {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:border-transparent:focus {
  border-color: transparent;
}
.focus\:text-cyan-400:focus {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-cyan-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 204 21 / var(--tw-ring-opacity, 1));
}
.disabled\:transform-none:disabled {
  transform: none;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:from-gray-600:disabled {
  --tw-gradient-from: #4b5563 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(75 85 99 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.disabled\:to-gray-700:disabled {
  --tw-gradient-to: #374151 var(--tw-gradient-to-position);
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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\:text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:h-24 {
    height: 6rem;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:h-40 {
    height: 10rem;
  }

  .md\:w-16 {
    width: 4rem;
  }

  .md\:w-24 {
    width: 6rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:w-40 {
    width: 10rem;
  }

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

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

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

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\: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)));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {

  .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\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}
