/* DESIGN SYSTEM */
/* --------------------------------------------------------------------------
  DESIGN SYSTEM BASE VARIABLES

  Naming follows Tailwind's conventions as much as possible:
  - bg = background
  - fg = foreground (used mostly for texts and borders)
  - b  = border (same with bx, by, etc.)
  - p  = padding (same with px, py, etc.)
  - m  = margin (same with mx, my, etc.)
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
  [COLOR] HARD DEFAULTS
-------------------------------------------------------------------------- */
:root {
  --hx-base-bg: #ffffff;
  --hx-base-fg: #0a0a0a;

  /* Accessibility: Global focus outline - available everywhere */
  --hx-outline: #0066ff; /* Strong, saturated blue for accessibility */
  --hx-outline-offset: 2px;
  --hx-outline-size: 2px;
}
/* --------------------------------------------------------------------------
  [COLOR] GLOBAL DERIVATIVES
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
  ACCESSIBILITY: GLOBAL FOCUS STYLES
  Applied to ALL interactive elements site-wide for keyboard navigation

  Note: Using @layer utilities to ensure these styles come after all
  component styles (like DaisyUI .btn) in the cascade
-------------------------------------------------------------------------- */
/* Intentionally empty: placeholder to silence postcss-import warnings */
/* Intentionally minimal; import placeholder */
/* HX SETUP */
/* COMPONENTS */
/*

  ⚠️ Do not modify this file directly!

  This is auto-generated from the Hexis Design System configuration,
  which can be found at: `frontend/_config/design-system.ts`.

*/
/* --------------------------------------------------------------------------
  Based on DaisyUI breadcrumbs

  Note to self: we had to switch to the css file because Tailwind v3 does
  not support container query ranges (from + to).
-------------------------------------------------------------------------- */
/* imports Design System component styles */
.hx .card {
  padding: 0px;
}
.hx .card .card-body {
  padding: 16px;
}
/* Stretches the content from edge to edge (X axis) */
.hx .card .card-body .edge-x {
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
  max-width: calc(100% + 30px);
}
.hx .stay-teaser {
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.2;
}
/* Separator */
.hx .stay-teaser:not(:last-child) {
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
/* Inner spacing */
.hx .stay-teaser > *:not(:last-child) { margin-right: 0.75rem; }
.hx .stay-teaser-ident {
    width: 1.35em;
    flex-shrink: 0;
    font-family: var(--font-family-mono);
    font-size: 1.85em;
    font-weight: 400;
  }
.hx .stay-teaser-stay {
    /* flex-grow: 1; */
  }
.hx .stay-teaser-secondary {
    color: var(--neutral-600);
  }
.hx .stay-teaser-orders {
    flex-grow: 1;
  }
.hx .stay-teaser-orders ul {
      list-style: disc;
    }
.hx .stay-teaser-orders ul li {
        margin: .2em 0;
        margin-left: 1em;
      }
.hx .stay-teaser .link {
    text-decoration: none;
  }
.hx .stay-teaser .link .mono {
      font-family: var(--font-family-mono);
    }
.hx .stay-teaser .link:hover, .hx .stay-teaser .link:focus {
       text-decoration: underline;
    }
.hx raster {
  --col-count: 10;
  --row-count: 5;
  --header-rows: 22px 20px 18px;
  --aside-columns: 25px 10px 10px;
  --cell-width: 1fr;
  --cell-height: 1fr;

  display: grid;
  grid-template-columns: var(--aside-columns) repeat(calc(var(--col-count)), var(--cell-width));
  grid-template-rows: var(--header-rows) repeat(calc(var(--row-count)), var(--cell-height));
  overflow-x: scroll;
  max-width: 100%;
  max-height: 90vh;
}
.hx raster header {
    position: sticky;
    z-index: 3;
    top: 0;
    grid-column: 1 / -1;
    grid-row: 1 / 4;
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    font-size: 0.9rem;
    line-height: 1.15;
  }
.hx raster header .raster-corner {
      position: sticky;
      top: 0;
      left: 0;
      grid-area: 1 / 1 / 4 / 4;
    }
.hx raster header > section {
      grid-column: 4 / -1;
      display: grid;
      grid-template-columns: subgrid;
      grid-template-rows: subgrid;
    }
.hx raster header > section.full { z-index: 1; grid-row: 1/4; }
.hx raster header > section.full > :is(a, div, span, placeholder) { grid-row: 1/4; }
.hx raster header > section.row1 { z-index: 2; grid-row: 1/2; }
.hx raster header > section.row1_2 { z-index: 3; grid-row: 1/3; }
.hx raster header > section.row1_2 > :is(a, div, span, placeholder) { grid-row: 1/3; }
.hx raster header > section.row2 { z-index: 4; grid-row: 2/3; }
.hx raster header > section.row2_3 { z-index: 5; grid-row: 2/4; }
.hx raster header > section.row2_3 > :is(a, div, span, placeholder) { grid-row: 1/3; }
.hx raster header > section.row3 { z-index: 6; grid-row: 3/4; }
.hx raster header > section > :is(a, div, span, placeholder) {
        display: flex;
        align-items: center;
        justify-content: center;
      }
/* First-row assumed to be some main sections */
.hx raster header > section.row1 > :is(a, div, span, placeholder) {
        justify-content: flex-start;
        padding-left: .65em;
        font-weight: bold;
      }
/* All other rows assumed to be of secondary importance */
.hx raster header > section:is(.row2, .row3) > :is(a, div, span, placeholder) {
        /* */
      }
.hx raster aside {
    position: sticky;
    z-index: 2;
    left: 0;
    grid-column: 1 / 4;
    grid-row: 4 / -1;
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
  }
.hx raster aside > section {
      grid-row: 1 / -1;
      display: grid;
      grid-template-columns: subgrid;
      grid-template-rows: subgrid;
    }
.hx raster aside > section.column1 { z-index:1; grid-column:1/2; }
.hx raster aside > section.column1_2 { z-index:2; grid-column:1/3; }
.hx raster aside > section.column1_2 > :is(a, div, span, placeholder) { grid-column:1/3; }
.hx raster aside > section.column2 { z-index:3; grid-column:2/3; }
.hx raster aside > section.column2_3 { z-index:4; grid-column:2/4; }
.hx raster aside > section.column2_3 > :is(a, div, span, placeholder) { grid-column:1/3; }
.hx raster aside > section.column3 { z-index:5; grid-column:3/4; }
.hx raster aside > section > :is(a, div, span, placeholder) {
        display: flex;
        align-items: center;
        justify-content: center;
      }
.hx raster main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-column: 4 / -1;
    grid-row: 4 / -1;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    gap: 1px;

  }
.hx raster main > :where(a, div, span, placeholder) {
  padding: 4px;
  text-align: center;
}
/* ALL ITEMS */
.hx raster main > :where(a, placeholder, div, span) {
  padding: 4px;
  text-align: center;
}
/* INTERACTIVE ITEMS */
.hx raster main > a:hover {
  z-index: 5;
  cursor: pointer;
  --tw-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.08), 0px 2px 1px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0px 1px 3px 0px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 2px 1px -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);
}
.hx raster main > a[disabled] {
  pointer-events: none;
}
/* NON-INTERACTIVE ITEMS */
.hx raster main > :where(placeholder, div, span) {}
/* PLACEHOLDERS */
.hx raster main > placeholder {
  font-style: italic;
}
/* --------------------------------------------------------------------------
  SELECT MODE
-------------------------------------------------------------------------- */
.hx raster.raster-select-mode.raster-select-item {

  }
.hx raster.raster-select-mode main {

    /*!* ALL ITEMS *!*/
    /*> :is(a, placeholder, div, span) {}*/

    /*!* INTERACTIVE ITEMS *!*/
    /*> a {*/
    /*  &:hover {*/
    /*    @apply z-5 cursor-pointer shadow-lg;*/
    /*  }*/

    /*  &[disabled] {*/
    /*    @apply pointer-events-none;*/
    /*  }*/
    /*}*/

    /*!* NON-INTERACTIVE ITEMS *!*/
    /*> :is(placeholder, div, span) {}*/

    /*!* PLACEHOLDERS *!*/
    /*> placeholder {*/
    /*  @apply italic;*/
    /*}*/

  }
/* --------------------------------------------------------------------------
  LIGHT THEME
-------------------------------------------------------------------------- */
.hx raster[data-theme="light"] {
  background: rgb(249, 249, 250);
}
.hx raster[data-theme="light"] header {
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  }
.hx raster[data-theme="light"] header > section > a {
        cursor: pointer;
      }
.hx raster[data-theme="light"] header > section > a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(235 247 255 / var(--tw-bg-opacity, 1));
}
/* First-row assumed to be some main sections */
.hx raster[data-theme="light"] header > section.row1 > :is(a, div, span, placeholder):not(:first-child) {
          margin-left: -1px;
          border-left: 2px solid gray;
        }
/* All other rows assumed to be of secondary importance */
.hx raster[data-theme="light"] header > section:is(.full, .row2, .row3, .row2_3) > :is(a, div, span, placeholder):not(:first-child) {
          margin-left: -0.5px;
          border-left: 1px solid lightgray;
        }
.hx raster[data-theme="light"] aside {
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  }
.hx raster[data-theme="light"] aside > section > :is(a, div, span, placeholder):not(:first-child) {
          margin-top: -0.5px;
          border-top: 1px solid lightgray;
        }
.hx raster[data-theme="light"] main {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1)); /* grid lines effectively */
}
/* ALL ITEMS */
.hx raster[data-theme="light"] main > :is(a, placeholder, div, span) {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
/* INTERACTIVE ITEMS */
/*@apply text-green-800 bg-green-50;*/
.hx raster[data-theme="light"] main > a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.hx raster[data-theme="light"] main > a[disabled] {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.hx raster[data-theme="light"] main > a[disabled]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
/* NON-INTERACTIVE ITEMS */
.hx raster[data-theme="light"] main > :is(placeholder, div, span) {}
/* PLACEHOLDERS */
.hx raster[data-theme="light"] main > placeholder {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
/* --------------------------------------------------------------------------
  DEBUG STYLES
-------------------------------------------------------------------------- */
.hx raster[data-debug] {
  gap: 5px;
}
.hx raster[data-debug] header {
    padding: 5px;
    background-color: #f0f0f0;
  }
.hx raster[data-debug] header .raster-corner {
      background: yellow;
    }
.hx raster[data-debug] header > section > div {
        background: yellow;
      }
.hx raster[data-debug] aside {
    padding: 5px;
    background-color: #e0e0e0;
  }
.hx raster[data-debug] aside > section {
      background: yellow;
    }
.hx raster[data-debug] main {
    padding: 5px;
    background-color: lightgray;
  }
.hx raster[data-debug] main > :is(a, div, span, placeholder) {
      color: white;
      background: gray;
    }
/* DAISYU OVERRIDES */
/* --------------------------------------------------------------------------
  DARK THEME ADJUSTMENTS
-------------------------------------------------------------------------- */
.hx [data-theme='dark'] .menu {
  --tw-bg-opacity: 1;
  background-color: rgb(23 32 79 / var(--tw-bg-opacity, 1));
}
.hx [data-theme='dark'] .menu :where(a, summary) {
  --tw-text-opacity: 1;
  color: rgb(209 225 245 / var(--tw-text-opacity, 1));
}
.hx [data-theme='dark'] .menu :where(a, summary):is(:hover,:focus) {
  --tw-bg-opacity: 1;
  background-color: rgb(64 73 125 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(221 234 248 / var(--tw-text-opacity, 1));
}
.hx [data-theme='dark'] .menu a.active {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 102 150 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(250 253 255 / var(--tw-text-opacity, 1)) !important;
}
/* --------------------------------------------------------------------------
  SIDEBAR (MAIN) MENU
-------------------------------------------------------------------------- */
/* Nested items */
.hx .menu.menu-sidebar :is(li ul) {
  margin-inline-start: 0px; /* no left margin */
}
/* Anchor: default styles */
.hx .menu.menu-sidebar :where(li:not(.menu-title) > *:not(ul, details, .menu-title, .btn)), .hx .menu.menu-sidebar :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-left: .65em;
  padding-right: .65em;
  padding-top: .7em;
  padding-bottom: .7em;
}
/* --------------------------------------------------------------------------
  DROPDOWN DIVIDER OVERRIDES
  Make dividers inside dropdown menus thin (remove the 1rem height)
-------------------------------------------------------------------------- */
.hx .hx .dropdown .divider {
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
/* VENDOR */
/**
 * tom-select.css (v2.4.3)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.hx .ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.hx .ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 1px) 8px calc(8px - 2px - 3px - 1px);
}
.hx .full .ts-control {
  background-color: #fff;
}
.hx .disabled .ts-control, .hx .disabled .ts-control * {
  cursor: default !important;
}
.hx .focus .ts-control {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.hx .ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.hx .ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #fff;
  border: 1px solid #0073bb;
}
.hx .ts-wrapper.multi .ts-control > div.active {
  background: #92c836;
  color: #fff;
  border: 1px solid #00578d;
}
.hx .ts-wrapper.multi.disabled .ts-control > div, .hx .ts-wrapper.multi.disabled .ts-control > div.active {
  color: white;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}
.hx .ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}
.hx .ts-control > input::-ms-clear {
  display: none;
}
.hx .ts-control > input:focus {
  outline: none !important;
}
.hx .has-items .ts-control > input {
  margin: 0 4px !important;
}
.hx .ts-control.rtl {
  text-align: right;
}
.hx .ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.hx .ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.hx .disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.hx .input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.hx .ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.hx .ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.hx .ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.hx .ts-dropdown .option, .hx .ts-dropdown .optgroup-header, .hx .ts-dropdown .no-results, .hx .ts-dropdown .create {
  padding: 5px 8px;
}
.hx .ts-dropdown .option, .hx .ts-dropdown [data-disabled], .hx .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.hx .ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.hx .ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.hx .ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.hx .ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.hx .ts-dropdown .active.create {
  color: #495c68;
}
.hx .ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.hx .ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.hx .ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hx .ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}
.hx .ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.hx .ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}
.hx .plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}
.hx .plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}
/* stylelint-disable function-name-case */
.hx .plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.hx .plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.hx .plugin-clear_button.form-select .clear-button, .hx .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}
.hx .plugin-clear_button.focus.has-items .clear-button, .hx .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}
.hx .ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.hx .ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.hx .ts-wrapper .dropdown-header-close:hover {
  color: black;
}
.hx .plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.hx .plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: transparent;
}
.hx .plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.hx .plugin-dropdown_input.has-items .items-placeholder, .hx .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}
.hx .ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.hx .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.hx .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}
.hx .ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.hx .ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.hx .ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.hx .ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.hx .ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.hx .ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.hx .ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.hx .ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.hx .ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.hx .ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.hx .ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.hx .ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #0073bb;
  margin-left: 6px;
}
.hx .ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #00578d;
}
.hx .ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: #aaaaaa;
}
.hx .ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.hx .ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #0073bb;
  margin-right: 6px;
}
.hx .ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #00578d;
}
.hx .ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: #aaaaaa;
}
:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}
.hx .ts-wrapper.single .ts-control, .hx .ts-wrapper.single .ts-control input {
  cursor: pointer;
}
.hx .ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.hx .ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.hx .ts-wrapper {
  position: relative;
}
.hx .ts-dropdown, .hx .ts-control, .hx .ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}
.hx .ts-control, .hx .ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}
.hx .ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.hx .ts-wrapper.single .ts-control {
  --ts-pr-caret: 2rem;
}
.hx .ts-wrapper.single .ts-control::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}
.hx .ts-wrapper.single .ts-control:not(.rtl)::after {
  right: 15px;
}
.hx .ts-wrapper.single .ts-control.rtl::after {
  left: 15px;
}
.hx .ts-wrapper.single.dropdown-active .ts-control::after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}
.hx .ts-wrapper.single.input-active .ts-control, .hx .ts-wrapper.single.input-active .ts-control input {
  cursor: text;
}
.hx .ts-wrapper {
  display: flex;
  min-height: 36px;
}
.hx .ts-wrapper.multi.has-items .ts-control {
  padding-left: 5px;
  --ts-pr-min: $padding-x;
}
.hx .ts-wrapper.multi .ts-control [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  border-radius: 3px;
  background-color: color-mix(#1da7ee, #178ee9, 60%);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}
.hx .ts-wrapper.multi .ts-control [data-value].active {
  background-color: color-mix(#008fd8, #0075cf, 60%);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
}
.hx .ts-wrapper.multi.disabled .ts-control [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  box-shadow: none;
}
.hx .ts-wrapper.multi.disabled .ts-control [data-value], .hx .ts-wrapper.multi.disabled .ts-control [data-value] .remove {
  border-color: #e6e6e6;
}
.hx .ts-wrapper.multi.disabled .ts-control [data-value] .remove {
  background: none;
}
.hx .ts-wrapper.single .ts-control {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: color-mix(#fefefe, #f2f2f2, 60%);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
}
.hx .ts-wrapper.single .ts-control, .hx .ts-dropdown.single {
  border-color: #b8b8b8;
}
.hx .dropdown-active .ts-control {
  border-radius: 3px 3px 0 0;
}
.hx .ts-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: 0.85em;
}
.hx .ts-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}
.hx .ts-dropdown .optgroup:first-child {
  border-top: 0 none;
}
.hx [x-cloak] {
  display: none !important;
}
/*  */
.hx .apygrid-table input, .hx .apygrid-table select {
    --input-height: auto;
  }
/* Fixes DaisyUI's `.loading` class conflict */
.hx .ts-wrapper.loading {
  pointer-events: unset !important;
  aspect-ratio: unset !important;
  background-color: unset !important;
  -webkit-mask: unset !important;
          mask: unset !important;
}
/* */
.hx turbo-frame {
  position: relative;
  display: block;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.hx turbo-frame[busy] {
  opacity: 0.25;
  transition-duration: 700ms;


      /*&::before {*/
      /*  @apply absolute inset-t-*/
      /*}*/
}
/* TAILWIND DIRECTIVES */
.hx *, .hx ::before, .hx ::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:  ;
}
.hx ::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.19 | 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)
*/
.hx *, .hx ::before, .hx ::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
.hx ::before, .hx ::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
*/
.hx, .hx :host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: SF Pro, system-ui, -apple-system, Segoe UI, Helvetica Neue, Noto Sans, Liberation Sans, 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.
*/
.hx {
  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.
*/
.hx hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
.hx abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
.hx h1, .hx h2, .hx h3, .hx h4, .hx h5, .hx h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
.hx a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
.hx b, .hx 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.
*/
.hx code, .hx kbd, .hx samp, .hx pre {
  font-family: SF Mono, 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.
*/
.hx small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
.hx sub, .hx sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.hx sub {
  bottom: -0.25em;
}
.hx 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.
*/
.hx 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.
*/
.hx button, .hx input, .hx optgroup, .hx select, .hx 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.
*/
.hx button, .hx select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
.hx button, .hx input:where([type='button']), .hx input:where([type='reset']), .hx 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.
*/
.hx :-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)
*/
.hx :-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
.hx progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
.hx ::-webkit-inner-spin-button, .hx ::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
.hx [type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
.hx ::-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.
*/
.hx ::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
.hx summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
.hx blockquote, .hx dl, .hx dd, .hx h1, .hx h2, .hx h3, .hx h4, .hx h5, .hx h6, .hx hr, .hx figure, .hx p, .hx pre {
  margin: 0;
}
.hx fieldset {
  margin: 0;
  padding: 0;
}
.hx legend {
  padding: 0;
}
.hx ol, .hx ul, .hx menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
.hx dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
.hx 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.
*/
.hx input::placeholder, .hx textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
.hx button, .hx [role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
.hx :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.
*/
.hx img, .hx svg, .hx video, .hx canvas, .hx audio, .hx iframe, .hx embed, .hx 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)
*/
.hx img, .hx video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
.hx [hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root, .hx [data-theme] {
  background-color: var(--fallback-b1,oklch(var(--b1)/1));
  color: var(--fallback-bc,oklch(var(--bc)/1));
}
@supports not (color: oklch(0% 0 0)) {
  :root {
    color-scheme: light;
    --fallback-p: #491eff;
    --fallback-pc: #d4dbff;
    --fallback-s: #ff41c7;
    --fallback-sc: #fff9fc;
    --fallback-a: #00cfbd;
    --fallback-ac: #00100d;
    --fallback-n: #2b3440;
    --fallback-nc: #d7dde4;
    --fallback-b1: #ffffff;
    --fallback-b2: #e5e6e6;
    --fallback-b3: #e5e6e6;
    --fallback-bc: #1f2937;
    --fallback-in: #00b3f0;
    --fallback-inc: #000000;
    --fallback-su: #00ca92;
    --fallback-suc: #000000;
    --fallback-wa: #ffc22d;
    --fallback-wac: #000000;
    --fallback-er: #ff6f70;
    --fallback-erc: #000000;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      color-scheme: dark;
      --fallback-p: #7582ff;
      --fallback-pc: #050617;
      --fallback-s: #ff71cf;
      --fallback-sc: #190211;
      --fallback-a: #00c7b5;
      --fallback-ac: #000e0c;
      --fallback-n: #2a323c;
      --fallback-nc: #a6adbb;
      --fallback-b1: #1d232a;
      --fallback-b2: #191e24;
      --fallback-b3: #15191e;
      --fallback-bc: #a6adbb;
      --fallback-in: #00b3f0;
      --fallback-inc: #000000;
      --fallback-su: #00ca92;
      --fallback-suc: #000000;
      --fallback-wa: #ffc22d;
      --fallback-wac: #000000;
      --fallback-er: #ff6f70;
      --fallback-erc: #000000;
    }
  }
}
.hx {
  -webkit-tap-highlight-color: transparent;
}
.hx * {
  scrollbar-color: color-mix(in oklch, currentColor 35%, transparent) transparent;
}
.hx *:hover {
  scrollbar-color: color-mix(in oklch, currentColor 60%, transparent) transparent;
}
.hx {
  color-scheme: light;
  --in: 72.06% 0.191 231.6;
  --su: 64.8% 0.150 160;
  --wa: 84.71% 0.199 83.87;
  --er: 71.76% 0.221 22.18;
  --pc: 89.824% 0.06192 275.75;
  --ac: 15.352% 0.0368 183.61;
  --inc: 0% 0 0;
  --suc: 0% 0 0;
  --wac: 0% 0 0;
  --erc: 0% 0 0;
  --rounded-box: 1rem;
  --rounded-btn: 0.5rem;
  --rounded-badge: 1.9rem;
  --animation-btn: 0.25s;
  --animation-input: .2s;
  --btn-focus-scale: 0.95;
  --border-btn: 1px;
  --tab-border: 1px;
  --tab-radius: 0.5rem;
  --p: 49.12% 0.3096 275.75;
  --s: 69.71% 0.329 342.55;
  --sc: 98.71% 0.0106 342.55;
  --a: 76.76% 0.184 183.61;
  --n: 32.1785% 0.02476 255.701624;
  --nc: 89.4994% 0.011585 252.096176;
  --b1: 100% 0 0;
  --b2: 96.1151% 0 0;
  --b3: 92.4169% 0.00108 197.137559;
  --bc: 27.8078% 0.029596 256.847952;
}
.hx [data-theme="dark"] {
    --hx-base-bg: #000000;
    --hx-base-fg: #ffffff;
    --hx-outline: #4d94ff;
  }
.hx .hx-ds {

    /* Borders default to the current text color, but with less opacity */
    --hx-color-b: color-mix(in hsl, currentColor 35%, transparent);
    --hx-color-b-focus: color-mix(in hsl, currentColor 35%, transparent);
    --hx-color-b-active: color-mix(in hsl, currentColor 35%, transparent);

  }
/* Default image behaviour */
.hx img { object-fit: cover; }
/* Note: disabled for now because the blacklisting did not work well in practice */
/* Prettier corner rounding: universal default with fast class-only blacklist */
/* @supports (corner-shape: squircle) {
    *, ::before, ::after { corner-shape: squircle; }

    .rounded-full,
    .btn-circle,
    .mask-circle,
    .avatar,
    .hx-shape-circle { corner-shape: round; }
  } */
/* Not needed (?) */
.hx, .hx { margin: 0; padding: 0; }
/* Reserve for projects that need global text sizing via utilities */
.hx .hx-tabs {}
/* --------------------------------------------------------------------------
    TINY CONTAINER
  -------------------------------------------------------------------------- */
@container (max-width: 359px) {
    .hx .hx-tabs {}
  }
/* --------------------------------------------------------------------------
    PHONE-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 360px) and (max-width: 479px) {
    .hx .hx-tabs {}
  }
@container (max-width: 479px) {
    .hx .hx-tabs {}
  }
/* --------------------------------------------------------------------------
    TABLET-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 480px) {
    .hx .hx-tabs {}
  }
@container (min-width: 480px) and (max-width: 1023px) {
    .hx .hx-tabs {}
  }
/* --------------------------------------------------------------------------
    DESKTOP-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 1024px) {
    .hx .hx-tabs {}
  }
/* --------------------------------------------------------------------------
    THEME: FILL
  -------------------------------------------------------------------------- */
.hx .hx-tabs.hx-theme-fill {
    --hx-color-bg-hover: hsla(0, 0%, 0%, 0.03);
  }
.hx [data-theme="dark"] .hx-tabs.hx-theme-fill, .hx .hx-tabs.hx-theme-fill[data-theme="dark"] {
    --hx-color-bg-hover: hsla(0, 0%, 100%, 0.03);
  }
.hx .hx-tabs.hx-theme-fill .hx-tabs-tab:hover:not([disabled]):not([aria-selected="true"]) {
  background-color: var(--hx-color-bg-hover);
}
/* --------------------------------------------------------------------------
    THEME: LINE
  -------------------------------------------------------------------------- */
.hx .hx-tabs.hx-theme-line {
    --hx-color-b: hsla(0, 0%, 0%, 0.05);
    --hx-color-b-active: hsla(0, 0%, 0%, 0.5);
    --hx-color-b-hover: hsla(0, 0%, 0%, 0.2);
    --hx-color-fg-hover: hsla(0, 0%, 0%, 0.8);
  }
.hx [data-theme="dark"] .hx-tabs.hx-theme-line, .hx .hx-tabs.hx-theme-line[data-theme="dark"] {
    --hx-color-b: hsla(0, 0%, 100%, 0.05);
    --hx-color-b-active: hsla(0, 0%, 100%, 0.5);
    --hx-color-b-hover: hsla(0, 0%, 100%, 0.2);
    --hx-color-fg-hover: hsla(0, 0%, 100%, 0.8);
  }
.hx .hx-tabs.hx-theme-line .hx-tabs-tab:hover:not([disabled]):not([aria-selected="true"]) {
  color: var(--hx-color-fg-hover);
}
/* Ensure no borders on non-line themes */
.hx .hx-tabs:not(.hx-theme-line) .hx-tabs-tablist {
    border: none !important;
  }
.hx .hx-tabs:not(.hx-theme-line) .hx-tabs-tab-inner {
    border: none !important;
  }
/* Line theme: border on inner span, not button */
/* Cover tablist border - only for line theme, preserve fill theme backgrounds */
.hx .hx-tabs.hx-theme-line .hx-tabs-tab:not([class*="bg-"]) {
    background-color: var(--hx-base-bg, white);
  }
/* Horizontal (top) position - bottom border */
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="top"] .hx-tabs-tab-inner {
  position: relative;
  border-bottom-width: 2px;
  border-color: var(--hx-color-b);
  padding-bottom: 0.5em;
    flex-grow: 1;
    margin-block-end: calc(-1 * 0.5em - 2px);
    align-self: flex-end;
}
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="top"] .hx-tabs-tab:hover:not([disabled]):not([aria-selected="true"]) .hx-tabs-tab-inner {
  border-color: var(--hx-color-b-hover);
}
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="top"] .hx-tabs-tab[aria-selected="true"] .hx-tabs-tab-inner {
  border-color: var(--hx-color-b-active);
    z-index: 1;
}
/* Vertical (left) position - right border */
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="left"] .hx-tabs-tab-inner {
  position: relative;
  display: inline-block;
}
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="left"] .hx-tabs-tab-inner::after {
      content: '';
      position: absolute;
      background-color: var(--hx-color-b);
      top: 0;
      bottom: 0;
      right: calc(-0.5em - 2px);
      width: 2px;
      height: 100%;
    }
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="left"] .hx-tabs-tab:hover:not([disabled]):not([aria-selected="true"]) .hx-tabs-tab-inner::after {
    background-color: var(--hx-color-b-hover);
  }
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="left"] .hx-tabs-tab[aria-selected="true"] .hx-tabs-tab-inner::after {
    background-color: var(--hx-color-b-active);
    z-index: 1;
  }
/* Vertical (right) position - left border */
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="right"] .hx-tabs-tab-inner {
  position: relative;
  display: inline-block;
}
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="right"] .hx-tabs-tab-inner::after {
      content: '';
      position: absolute;
      background-color: var(--hx-color-b);
      top: 0;
      bottom: 0;
      left: calc(-0.5em - 2px);
      width: 2px;
      height: 100%;
    }
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="right"] .hx-tabs-tab:hover:not([disabled]):not([aria-selected="true"]) .hx-tabs-tab-inner::after {
    background-color: var(--hx-color-b-hover);
  }
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="right"] .hx-tabs-tab[aria-selected="true"] .hx-tabs-tab-inner::after {
    background-color: var(--hx-color-b-active);
    z-index: 1;
  }
/* Remove bottom border from vertical tabs */
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="left"] .hx-tabs-tab-inner, .hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="right"] .hx-tabs-tab-inner {
    border-bottom: none !important;
  }
/* Cover tablist border for vertical tabs */
.hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="left"] .hx-tabs-tab:not([class*="bg-"]), .hx .hx-tabs.hx-theme-line[data-hx--tabs-tab-position-value="right"] .hx-tabs-tab:not([class*="bg-"]) {
    background-color: var(--hx-base-bg, white);
  }
/* --------------------------------------------------------------------------
    THEME: SEGMENTED
  -------------------------------------------------------------------------- */
.hx .hx-tabs.hx-theme-segmented {
    --hx-color-bg: hsla(0, 0%, 0%, 0.05);
    --hx-color-bg-active: hsla(0, 0%, 100%, 0.05);
    --hx-color-bg-hover: hsla(0, 0%, 0%, 0.03);
  }
.hx [data-theme="dark"] .hx-tabs.hx-theme-segmented, .hx .hx-tabs.hx-theme-segmented[data-theme="dark"] {
    --hx-color-bg: hsla(0, 0%, 0%, 1);
    --hx-color-bg-active: hsla(0, 0%, 100%, 0.15);
    --hx-color-bg-hover: hsla(0, 0%, 100%, 0.08);
  }
.hx .hx-tabs.hx-theme-segmented .hx-tabs-tab:hover:not([disabled]):not([aria-selected="true"]) {
  background-color: var(--hx-color-bg-hover);
}
/* --------------------------------------------------------------------------
    ACCESSIBILITY: FOCUS & DISABLED
  -------------------------------------------------------------------------- */
/* Keyboard focus indicator - uses global a11y standard */
.hx .hx-tabs .hx-tabs-tab:focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline);
    outline-offset: var(--hx-outline-offset);
    z-index: 2;
  }
/* Hide focus outline when not using keyboard */
.hx .hx-tabs .hx-tabs-tab:focus:not(:focus-visible) {
    outline: none;
  }
/* Disabled state - reduced opacity and no pointer events */
.hx .hx-tabs .hx-tabs-tab[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}
/* Transition for smooth state changes */
.hx .hx-tabs .hx-tabs-tab, .hx .hx-tabs .hx-tabs-tab-inner, .hx .hx-tabs .hx-tabs-tab-inner::after {
    transition:
      background-color 150ms ease-in-out,
      border-color 150ms ease-in-out,
      color 150ms ease-in-out,
      opacity 150ms ease-in-out;
  }
.hx .container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 1280px) {
  .hx .container {
    max-width: 1280px;
  }
}
.hx .prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.hx .prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.hx .prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.hx .prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.hx .prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.hx .prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.hx .prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.hx .prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.hx .prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.hx .prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.hx .prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.hx .prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.hx .prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.hx .prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.hx .prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.hx .prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.hx .prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.hx .prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.hx .prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.hx .prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.hx .prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.hx .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.hx .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.hx .prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.hx .prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.hx .prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.hx .prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.hx .prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.hx .prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.hx .prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.hx .prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.hx .prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.hx .prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.hx .prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.hx .prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.hx .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.hx .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.hx .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.hx .prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.hx .prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.hx .prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.hx .prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.hx .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.hx .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.hx .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.hx .prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.hx .prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.hx .prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.hx .prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.hx .prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.hx .prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.hx .prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.hx .prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.hx .prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.hx .prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.hx .prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.hx .prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
}
.hx .prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.hx .prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.hx .prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.hx .prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.hx .prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.hx .prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.hx .prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.hx .prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.hx .prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.hx .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.hx .prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.hx .prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.hx .prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.hx .prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.hx .prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.hx .prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.hx .prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.hx .prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.hx .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.hx .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.hx .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.hx .prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.hx .prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.hx .prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.hx .alert {
  display: grid;
  width: 100%;
  grid-auto-flow: row;
  align-content: flex-start;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  border-radius: var(--rounded-box, 1rem);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-b2,oklch(var(--b2)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
  background-color: var(--alert-bg);
}
@media (min-width: 640px) {
  .hx .alert {
    grid-auto-flow: column;
    grid-template-columns: auto minmax(auto,1fr);
    justify-items: start;
    text-align: start;
  }
}
.hx .avatar.placeholder > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hx .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: fit-content;
  padding-left: 0.563rem;
  padding-right: 0.563rem;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.hx .breadcrumbs {
  max-width: 100%;
  overflow-x: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hx .breadcrumbs > ul, .hx .breadcrumbs > ol {
  display: flex;
  align-items: center;
  white-space: nowrap;
  min-height: min-content;
}
.hx .breadcrumbs > ul > li, .hx .breadcrumbs > ol > li {
  display: flex;
  align-items: center;
}
.hx .breadcrumbs > ul > li > a, .hx .breadcrumbs > ol > li > a {
  display: flex;
  cursor: pointer;
  align-items: center;
}
@media (hover:hover) {
  .hx .breadcrumbs > ul > li > a:hover, .hx .breadcrumbs > ol > li > a:hover {
    text-decoration-line: underline;
  }
  .hx .link-hover:hover {
    text-decoration-line: underline;
  }
  .hx .label a:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  }
  .hx .menu li > *:not(ul, .menu-title, details, .btn):active, .hx .menu li > *:not(ul, .menu-title, details, .btn).active, .hx .menu li > details > summary:active {
    --tw-bg-opacity: 1;
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-text-opacity: 1;
    color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
  }
  .hx .tab:hover {
    --tw-text-opacity: 1;
  }
  .hx .tabs-boxed :is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):hover, .hx .tabs-boxed :is(input:checked):hover {
    --tw-text-opacity: 1;
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  .hx .table tr.hover:hover, .hx .table tr.hover:nth-child(even):hover {
    --tw-bg-opacity: 1;
    background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  }
  .hx .table-zebra tr.hover:hover, .hx .table-zebra tr.hover:nth-child(even):hover {
    --tw-bg-opacity: 1;
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
}
.hx .btn {
  display: inline-flex;
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-btn, 0.5rem);
  border-color: transparent;
  border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1em;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration-line: none;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  border-width: var(--border-btn, 1px);
  transition-property: color, background-color, border-color, opacity, box-shadow, transform;
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
  background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
  --tw-border-opacity: 1;
}
.hx .btn-disabled, .hx .btn[disabled], .hx .btn:disabled {
  pointer-events: none;
}
.hx .btn-square {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.hx .btn-circle {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx :where(.btn:is(input[type="checkbox"])), .hx :where(.btn:is(input[type="radio"])) {
  width: auto;
  appearance: none;
}
.hx .btn:is(input[type="checkbox"]):after, .hx .btn:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: var(--tw-content);
}
.hx .card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--rounded-box, 1rem);
}
.hx .card:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: var(--padding-card, 2rem);
  gap: 0.5rem;
}
.hx .card-body :where(p) {
  flex-grow: 1;
}
.hx .card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}
.hx .card figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hx .card.image-full {
  display: grid;
}
.hx .card.image-full:before {
  position: relative;
  content: "";
  z-index: 10;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  opacity: 0.75;
}
.hx .card.image-full:before, .hx .card.image-full > * {
  grid-column-start: 1;
  grid-row-start: 1;
}
.hx .card.image-full > figure img {
  height: 100%;
  object-fit: cover;
}
.hx .card.image-full > .card-body {
  position: relative;
  z-index: 20;
  --tw-text-opacity: 1;
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.hx .checkbox {
  flex-shrink: 0;
  --chkbg: var(--fallback-bc,oklch(var(--bc)/1));
  --chkfg: var(--fallback-b1,oklch(var(--b1)/1));
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  appearance: none;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.2;
}
.hx .collapse:not(td):not(tr):not(colgroup) {
  visibility: visible;
}
.hx .collapse {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-rows: max-content 0fr;
  transition: grid-template-rows 0.2s;
  width: 100%;
  border-radius: var(--rounded-box, 1rem);
}
.hx .collapse-title, .hx .collapse > input[type="checkbox"], .hx .collapse > input[type="radio"], .hx .collapse-content {
  grid-column-start: 1;
  grid-row-start: 1;
}
.hx .collapse > input[type="checkbox"], .hx .collapse > input[type="radio"] {
  appearance: none;
  opacity: 0;
}
.hx :where(.collapse > input[type="checkbox"]), .hx :where(.collapse > input[type="radio"]) {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.hx .collapse-content {
  visibility: hidden;
  grid-column-start: 1;
  grid-row-start: 2;
  min-height: 0px;
  transition: visibility 0.2s;
  transition: padding 0.2s ease-out,
    background-color 0.2s ease-out;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: unset;
}
.hx .collapse[open], .hx .collapse-open, .hx .collapse:focus:not(.collapse-close) {
  grid-template-rows: max-content 1fr;
}
.hx .collapse:not(.collapse-close):has(> input[type="checkbox"]:checked), .hx .collapse:not(.collapse-close):has(> input[type="radio"]:checked) {
  grid-template-rows: max-content 1fr;
}
.hx .collapse[open] > .collapse-content, .hx .collapse-open > .collapse-content, .hx .collapse:focus:not(.collapse-close) > .collapse-content, .hx .collapse:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-content, .hx .collapse:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-content {
  visibility: visible;
  min-height: fit-content;
}
.hx .divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 1rem;
  white-space: nowrap;
}
.hx .divider:before, .hx .divider:after {
  height: 0.125rem;
  width: 100%;
  flex-grow: 1;
  --tw-content: '';
  content: var(--tw-content);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.hx .dropdown {
  position: relative;
  display: inline-block;
}
.hx .dropdown > *:not(summary):focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .dropdown .dropdown-content {
  position: absolute;
}
.hx .dropdown:is(:not(details)) .dropdown-content {
  visibility: hidden;
  opacity: 0;
  transform-origin: top;
  --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));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
}
.hx .dropdown-end .dropdown-content {
  inset-inline-end: 0px;
}
.hx .dropdown-left .dropdown-content {
  bottom: auto;
  inset-inline-end: 100%;
  top: 0px;
  transform-origin: right;
}
.hx .dropdown-right .dropdown-content {
  bottom: auto;
  inset-inline-start: 100%;
  top: 0px;
  transform-origin: left;
}
.hx .dropdown-bottom .dropdown-content {
  bottom: auto;
  top: 100%;
  transform-origin: top;
}
.hx .dropdown-top .dropdown-content {
  bottom: 100%;
  top: auto;
  transform-origin: bottom;
}
.hx .dropdown-end.dropdown-right .dropdown-content {
  bottom: 0px;
  top: auto;
}
.hx .dropdown-end.dropdown-left .dropdown-content {
  bottom: 0px;
  top: auto;
}
.hx .dropdown.dropdown-open .dropdown-content, .hx .dropdown:not(.dropdown-hover):focus .dropdown-content, .hx .dropdown:focus-within .dropdown-content {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) {
  .hx .dropdown.dropdown-hover:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
  }
  .hx .btm-nav > *.disabled:hover, .hx .btm-nav > *[disabled]:hover {
    pointer-events: none;
    --tw-border-opacity: 0;
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.1;
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  .hx .btn:hover {
    --tw-border-opacity: 1;
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn:hover {
      background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
    }
  }
  @supports not (color: oklch(0% 0 0)) {
    .hx .btn:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .hx .btn.glass:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .hx .btn-ghost:hover {
    border-color: transparent;
  }
  @supports (color: oklch(0% 0 0)) {
    .hx .btn-ghost:hover {
      background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
    }
  }
  .hx .btn-link:hover {
    border-color: transparent;
    background-color: transparent;
    text-decoration-line: underline;
  }
  .hx .btn-outline:hover {
    --tw-border-opacity: 1;
    border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
    --tw-text-opacity: 1;
    color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
  }
  .hx .btn-outline.btn-primary:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-primary:hover {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
  }
  .hx .btn-outline.btn-secondary:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-secondary:hover {
      background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    }
  }
  .hx .btn-outline.btn-accent:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-accent:hover {
      background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
    }
  }
  .hx .btn-outline.btn-success:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-success:hover {
      background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
    }
  }
  .hx .btn-outline.btn-info:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-info:hover {
      background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
    }
  }
  .hx .btn-outline.btn-warning:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-warning:hover {
      background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
    }
  }
  .hx .btn-outline.btn-error:hover {
    --tw-text-opacity: 1;
    color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn-outline.btn-error:hover {
      background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
    }
  }
  .hx .btn-disabled:hover, .hx .btn[disabled]:hover, .hx .btn:disabled:hover {
    --tw-border-opacity: 0;
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .hx .btn:is(input[type="checkbox"]:checked):hover, .hx .btn:is(input[type="radio"]:checked):hover {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
  }
  .hx .dropdown.dropdown-hover:hover .dropdown-content {
    --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));
  }
  .hx :where(.menu li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title)):not(.active, .btn):hover, .hx :where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):not(.active, .btn):hover {
    cursor: pointer;
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
  @supports (color: oklch(0% 0 0)) {
    .hx :where(.menu li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title)):not(.active, .btn):hover, .hx :where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):not(.active, .btn):hover {
      background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
    }
  }
  .hx .tab[disabled], .hx .tab[disabled]:hover {
    cursor: not-allowed;
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
}
.hx .dropdown:is(details) summary::-webkit-details-marker {
  display: none;
}
.hx .file-input {
  height: 3rem;
  flex-shrink: 1;
  padding-inline-end: 1rem;
  font-size: 1rem;
  line-height: 2;
  line-height: 1.5rem;
  overflow: hidden;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .file-input::file-selector-button {
  margin-inline-end: 1rem;
  display: inline-flex;
  height: 100%;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1em;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: var(--fallback-n,oklch(var(--n)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
  text-decoration-line: none;
  border-width: var(--border-btn, 1px);
  animation: button-pop var(--animation-btn, 0.25s) ease-out;
}
.hx .footer {
  display: grid;
  width: 100%;
  grid-auto-flow: row;
  place-items: start;
  column-gap: 1rem;
  row-gap: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hx .footer > * {
  display: grid;
  place-items: start;
  gap: 0.5rem;
}
@media (min-width: 48rem) {
  .hx .footer {
    grid-auto-flow: column;
  }
  .hx .footer-center {
    grid-auto-flow: row dense;
  }
}
.hx .form-control {
  display: flex;
  flex-direction: column;
}
.hx .label {
  display: flex;
  -webkit-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hx .\!input {
  flex-shrink: 1 !important;
  appearance: none !important;
  height: 3rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  font-size: 1rem !important;
  line-height: 2 !important;
  line-height: 1.5rem !important;
  border-radius: var(--rounded-btn, 0.5rem) !important;
  border-width: 1px !important;
  border-color: transparent !important;
  --tw-bg-opacity: 1 !important;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity))) !important;
}
.hx .input {
  flex-shrink: 1;
  appearance: none;
  height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 2;
  line-height: 1.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .\!input[type="number"]::-webkit-inner-spin-button {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
  margin-inline-end: -1rem !important;
}
.hx .input[type="number"]::-webkit-inner-spin-button, .hx .input-md[type="number"]::-webkit-inner-spin-button {
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-inline-end: -1rem;
}
.hx .input-xs[type="number"]::-webkit-inner-spin-button {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
  margin-inline-end: -0px;
}
.hx .input-sm[type="number"]::-webkit-inner-spin-button {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-inline-end: -0px;
}
.hx .join {
  display: inline-flex;
  align-items: stretch;
  border-radius: var(--rounded-btn, 0.5rem);
}
.hx .join :where(.join-item) {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  border-start-start-radius: 0;
}
.hx .join .join-item:not(:first-child):not(:last-child), .hx .join *:not(:first-child):not(:last-child) .join-item {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  border-start-start-radius: 0;
}
.hx .join .join-item:first-child:not(:last-child), .hx .join *:first-child:not(:last-child) .join-item {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}
.hx .join .dropdown .join-item:first-child:not(:last-child), .hx .join *:first-child:not(:last-child) .dropdown .join-item {
  border-start-end-radius: inherit;
  border-end-end-radius: inherit;
}
.hx .join :where(.join-item:first-child:not(:last-child)), .hx .join :where(*:first-child:not(:last-child) .join-item) {
  border-end-start-radius: inherit;
  border-start-start-radius: inherit;
}
.hx .join .join-item:last-child:not(:first-child), .hx .join *:last-child:not(:first-child) .join-item {
  border-end-start-radius: 0;
  border-start-start-radius: 0;
}
.hx .join :where(.join-item:last-child:not(:first-child)), .hx .join :where(*:last-child:not(:first-child) .join-item) {
  border-start-end-radius: inherit;
  border-end-end-radius: inherit;
}
@supports not selector(:has(*)) {
  .hx :where(.join *) {
    border-radius: inherit;
  }
}
@supports selector(:has(*)) {
  .hx :where(.join *:has(.join-item)) {
    border-radius: inherit;
  }
}
.hx .link {
  cursor: pointer;
  text-decoration-line: underline;
}
.hx .link-hover {
  text-decoration-line: none;
}
.hx .mask {
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.hx .menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem;
}
.hx .menu :where(li ul) {
  position: relative;
  white-space: nowrap;
  margin-inline-start: 1rem;
  padding-inline-start: 0.5rem;
}
.hx .menu :where(li:not(.menu-title) > *:not(ul, details, .menu-title, .btn)), .hx .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
  display: grid;
  grid-auto-flow: column;
  align-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  grid-auto-columns: minmax(auto, max-content) auto max-content;
  -webkit-user-select: none;
          user-select: none;
}
.hx .menu li.disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
  color: var(--fallback-bc,oklch(var(--bc)/0.3));
}
.hx .menu :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
  display: none;
}
.hx :where(.menu li) {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
}
.hx :where(.menu li) .badge {
  justify-self: end;
}
.hx .modal {
  pointer-events: none;
  position: fixed;
  inset: 0px;
  margin: 0px;
  display: grid;
  height: 100%;
  max-height: none;
  width: 100%;
  max-width: none;
  justify-items: center;
  padding: 0px;
  opacity: 0;
  overscroll-behavior: contain;
  z-index: 999;
  background-color: transparent;
  color: inherit;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-property: transform, opacity, visibility;
  overflow-y: hidden;
}
.hx :where(.modal) {
  align-items: center;
}
.hx .modal-box {
  max-height: calc(100vh - 5em);
  grid-column-start: 1;
  grid-row-start: 1;
  width: 91.666667%;
  max-width: 32rem;
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
  border-bottom-right-radius: var(--rounded-box, 1rem);
  border-bottom-left-radius: var(--rounded-box, 1rem);
  border-top-left-radius: var(--rounded-box, 1rem);
  border-top-right-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  padding: 1.5rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.hx .modal-open, .hx .modal:target, .hx .modal-toggle:checked + .modal, .hx .modal[open] {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.hx .modal-action {
  display: flex;
  margin-top: 1.5rem;
  justify-content: flex-end;
}
.hx:has(:is(.modal-open, .modal:target, .modal-toggle:checked + .modal, .modal[open])) {
  overflow: hidden;
  scrollbar-gutter: stable;
}
.hx .navbar {
  display: flex;
  align-items: center;
  padding: var(--navbar-padding, 0.5rem);
  min-height: 4rem;
  width: 100%;
}
.hx :where(.navbar > *:not(script, style)) {
  display: inline-flex;
  align-items: center;
}
.hx .radio {
  flex-shrink: 0;
  --chkbg: var(--bc);
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  appearance: none;
  border-radius: 9999px;
  border-width: 1px;
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.2;
}
.hx .range {
  height: 1.5rem;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  --range-shdw: var(--fallback-bc,oklch(var(--bc)/1));
  overflow: hidden;
  border-radius: var(--rounded-box, 1rem);
  background-color: transparent;
}
.hx .range:focus {
  outline: none;
}
.hx .select {
  display: inline-flex;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  appearance: none;
  height: 3rem;
  min-height: 3rem;
  padding-inline-start: 1rem;
  padding-inline-end: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1px + 50%),
    calc(100% - 16.1px) calc(1px + 50%);
  background-size: 4px 4px,
    4px 4px;
  background-repeat: no-repeat;
}
.hx .select[multiple] {
  height: auto;
}
.hx .stat {
  display: inline-grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1rem;
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.hx .steps .step {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-columns: auto;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-rows: 40px 1fr;
  place-items: center;
  text-align: center;
  min-width: 4rem;
}
.hx .tabs {
  display: grid;
  align-items: flex-end;
}
.hx .tabs-lifted:has(.tab-content[class^="rounded-"])
    .tab:first-child:not(:is(.tab-active, [aria-selected="true"])), .hx .tabs-lifted:has(.tab-content[class*=" rounded-"])
    .tab:first-child:not(:is(.tab-active, [aria-selected="true"])) {
  border-bottom-color: transparent;
}
.hx .tab {
  position: relative;
  grid-row-start: 1;
  display: inline-flex;
  height: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  appearance: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  --tab-padding: 1rem;
  --tw-text-opacity: 0.5;
  --tab-color: var(--fallback-bc,oklch(var(--bc)/1));
  --tab-bg: var(--fallback-b1,oklch(var(--b1)/1));
  --tab-border-color: var(--fallback-b3,oklch(var(--b3)/1));
  color: var(--tab-color);
  padding-inline-start: var(--tab-padding, 1rem);
  padding-inline-end: var(--tab-padding, 1rem);
}
.hx .tab:is(input[type="radio"]) {
  width: auto;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.hx .tab:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: var(--tw-content);
}
.hx .tab:not(input):empty {
  cursor: default;
  grid-column-start: span 9999;
}
.hx :checked + .tab-content:nth-child(2), .hx :is(.tab-active, [aria-selected="true"]) + .tab-content:nth-child(2) {
  border-start-start-radius: 0px;
}
.hx input.tab:checked + .tab-content, .hx :is(.tab-active, [aria-selected="true"]) + .tab-content {
  display: block;
}
.hx .table {
  position: relative;
  width: 100%;
  border-radius: var(--rounded-box, 1rem);
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hx .table :where(.table-pin-rows thead tr) {
  position: sticky;
  top: 0px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .table :where(.table-pin-rows tfoot tr) {
  position: sticky;
  bottom: 0px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .table :where(.table-pin-cols tr th) {
  position: sticky;
  left: 0px;
  right: 0px;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .table-zebra tbody tr:nth-child(even) :where(.table-pin-cols tr th) {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.hx .textarea {
  min-height: 3rem;
  flex-shrink: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .toast {
  position: fixed;
  display: flex;
  min-width: fit-content;
  flex-direction: column;
  white-space: nowrap;
  gap: 0.5rem;
  padding: 1rem;
}
.hx .toggle {
  flex-shrink: 0;
  --tglbg: var(--fallback-b1,oklch(var(--b1)/1));
  --handleoffset: 1.5rem;
  --handleoffsetcalculator: calc(var(--handleoffset) * -1);
  --togglehandleborder: 0 0;
  height: 1.5rem;
  width: 3rem;
  cursor: pointer;
  appearance: none;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  border-color: currentColor;
  background-color: currentColor;
  color: var(--fallback-bc,oklch(var(--bc)/0.5));
  transition: background,
    box-shadow var(--animation-input, 0.2s) ease-out;
  box-shadow: var(--handleoffsetcalculator) 0 0 2px var(--tglbg) inset,
    0 0 0 2px var(--tglbg) inset,
    var(--togglehandleborder);
}
.hx .alert-info {
  border-color: var(--fallback-in,oklch(var(--in)/0.2));
  --tw-text-opacity: 1;
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-in,oklch(var(--in)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.hx .alert-success {
  border-color: var(--fallback-su,oklch(var(--su)/0.2));
  --tw-text-opacity: 1;
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-su,oklch(var(--su)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.hx .alert-warning {
  border-color: var(--fallback-wa,oklch(var(--wa)/0.2));
  --tw-text-opacity: 1;
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-wa,oklch(var(--wa)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.hx .alert-error {
  border-color: var(--fallback-er,oklch(var(--er)/0.2));
  --tw-text-opacity: 1;
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-er,oklch(var(--er)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.hx .badge-warning {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.hx .badge-outline.badge-warning {
  --tw-text-opacity: 1;
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.hx .btm-nav > *:where(.active) {
  border-top-width: 2px;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.hx .btm-nav > *.disabled, .hx .btm-nav > *[disabled] {
  pointer-events: none;
  --tw-border-opacity: 0;
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.hx .btm-nav > * .label {
  font-size: 1rem;
  line-height: 1.5rem;
}
.hx .breadcrumbs > ul > li > a:focus, .hx .breadcrumbs > ol > li > a:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .breadcrumbs > ul > li > a:focus-visible, .hx .breadcrumbs > ol > li > a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.hx .breadcrumbs > ul > li + *:before, .hx .breadcrumbs > ol > li + *:before {
  content: "";
  margin-left: 0.5rem;
  margin-right: 0.75rem;
  display: block;
  height: 0.375rem;
  width: 0.375rem;
  --tw-rotate: 45deg;
  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));
  opacity: 0.4;
  border-top: 1px solid;
  border-right: 1px solid;
  background-color: transparent;
}
.hx [dir="rtl"] .breadcrumbs > ul > li + *:before, .hx [dir="rtl"] .breadcrumbs > ol > li + *:before {
  --tw-rotate: -135deg;
}
@media (prefers-reduced-motion: no-preference) {
  .hx .btn {
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.hx .btn:active:hover, .hx .btn:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .hx .btn {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
  .hx .btn-primary {
    --btn-color: var(--fallback-p);
  }
  .hx .btn-secondary {
    --btn-color: var(--fallback-s);
  }
  .hx .btn-accent {
    --btn-color: var(--fallback-a);
  }
  .hx .btn-neutral {
    --btn-color: var(--fallback-n);
  }
  .hx .btn-info {
    --btn-color: var(--fallback-in);
  }
  .hx .btn-success {
    --btn-color: var(--fallback-su);
  }
  .hx .btn-warning {
    --btn-color: var(--fallback-wa);
  }
  .hx .btn-error {
    --btn-color: var(--fallback-er);
  }
  .hx .prose :where(code):not(:where([class~="not-prose"] *, pre *)) {
    background-color: var(--fallback-b3,oklch(var(--b3)/1));
  }
}
@supports (color: color-mix(in oklab, black, black)) {
  .hx .btn-active {
    background-color: color-mix(
          in oklab,
          oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity, 1)) 90%,
          black
        );
    border-color: color-mix(
          in oklab,
          oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity, 1)) 90%,
          black
        );
  }
  .hx .btn-outline.btn-primary.btn-active {
    background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
  }
  .hx .btn-outline.btn-secondary.btn-active {
    background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
  }
  .hx .btn-outline.btn-accent.btn-active {
    background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
  }
  .hx .btn-outline.btn-success.btn-active {
    background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
  }
  .hx .btn-outline.btn-info.btn-active {
    background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
  }
  .hx .btn-outline.btn-warning.btn-active {
    background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
  }
  .hx .btn-outline.btn-error.btn-active {
    background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
    border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
  }
}
.hx .btn:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.hx .btn-primary {
  --tw-text-opacity: 1;
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
@supports (color: oklch(0% 0 0)) {
  .hx .btn-primary {
    --btn-color: var(--p);
  }
  .hx .btn-secondary {
    --btn-color: var(--s);
  }
  .hx .btn-accent {
    --btn-color: var(--a);
  }
  .hx .btn-neutral {
    --btn-color: var(--n);
  }
  .hx .btn-info {
    --btn-color: var(--in);
  }
  .hx .btn-success {
    --btn-color: var(--su);
  }
  .hx .btn-warning {
    --btn-color: var(--wa);
  }
  .hx .btn-error {
    --btn-color: var(--er);
  }
}
.hx .btn-secondary {
  --tw-text-opacity: 1;
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.hx .btn-accent {
  --tw-text-opacity: 1;
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  outline-color: var(--fallback-a,oklch(var(--a)/1));
}
.hx .btn-neutral {
  --tw-text-opacity: 1;
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
  outline-color: var(--fallback-n,oklch(var(--n)/1));
}
.hx .btn-info {
  --tw-text-opacity: 1;
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  outline-color: var(--fallback-in,oklch(var(--in)/1));
}
.hx .btn-success {
  --tw-text-opacity: 1;
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  outline-color: var(--fallback-su,oklch(var(--su)/1));
}
.hx .btn-warning {
  --tw-text-opacity: 1;
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  outline-color: var(--fallback-wa,oklch(var(--wa)/1));
}
.hx .btn-error {
  --tw-text-opacity: 1;
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  outline-color: var(--fallback-er,oklch(var(--er)/1));
}
.hx .btn.glass {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  outline-color: currentColor;
}
.hx .btn.glass.btn-active {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.hx .btn-ghost {
  border-width: 1px;
  border-color: transparent;
  background-color: transparent;
  color: currentColor;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  outline-color: currentColor;
}
.hx .btn-ghost.btn-active {
  border-color: transparent;
  background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .btn-link {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  text-decoration-line: underline;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  outline-color: currentColor;
}
.hx .btn-link.btn-active {
  border-color: transparent;
  background-color: transparent;
  text-decoration-line: underline;
}
.hx .btn-outline {
  border-color: currentColor;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hx .btn-outline.btn-active {
  --tw-border-opacity: 1;
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-primary {
  --tw-text-opacity: 1;
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-primary.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-secondary {
  --tw-text-opacity: 1;
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-secondary.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-accent {
  --tw-text-opacity: 1;
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-accent.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-success {
  --tw-text-opacity: 1;
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-success.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-info {
  --tw-text-opacity: 1;
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-info.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-warning {
  --tw-text-opacity: 1;
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-warning.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-error {
  --tw-text-opacity: 1;
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.hx .btn-outline.btn-error.btn-active {
  --tw-text-opacity: 1;
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.hx .btn.btn-disabled, .hx .btn[disabled], .hx .btn:disabled {
  --tw-border-opacity: 0;
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.hx .btn:is(input[type="checkbox"]:checked), .hx .btn:is(input[type="radio"]:checked) {
  --tw-border-opacity: 1;
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.hx .btn:is(input[type="checkbox"]:checked):focus-visible, .hx .btn:is(input[type="radio"]:checked):focus-visible {
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
@keyframes button-pop {
  0% {
    transform: scale(var(--btn-focus-scale, 0.98));
  }
  40% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.hx .card :where(figure:first-child) {
  overflow: hidden;
  border-start-start-radius: inherit;
  border-start-end-radius: inherit;
  border-end-start-radius: unset;
  border-end-end-radius: unset;
}
.hx .card :where(figure:last-child) {
  overflow: hidden;
  border-start-start-radius: unset;
  border-start-end-radius: unset;
  border-end-start-radius: inherit;
  border-end-end-radius: inherit;
}
.hx .card:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.hx .card.bordered {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.hx .card.compact .card-body {
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hx .card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.hx .card.image-full :where(figure) {
  overflow: hidden;
  border-radius: inherit;
}
.hx .checkbox:focus {
  box-shadow: none;
}
.hx .checkbox:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.hx .checkbox:disabled {
  border-width: 0px;
  cursor: not-allowed;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  opacity: 0.2;
}
.hx .checkbox:checked, .hx .checkbox[aria-checked="true"] {
  background-repeat: no-repeat;
  animation: checkmark var(--animation-input, 0.2s) ease-out;
  background-color: var(--chkbg);
  background-image: linear-gradient(-45deg, transparent 65%, var(--chkbg) 65.99%),
      linear-gradient(45deg, transparent 75%, var(--chkbg) 75.99%),
      linear-gradient(-45deg, var(--chkbg) 40%, transparent 40.99%),
      linear-gradient(
        45deg,
        var(--chkbg) 30%,
        var(--chkfg) 30.99%,
        var(--chkfg) 40%,
        transparent 40.99%
      ),
      linear-gradient(-45deg, var(--chkfg) 50%, var(--chkbg) 50.99%);
}
.hx .checkbox:indeterminate {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  background-repeat: no-repeat;
  animation: checkmark var(--animation-input, 0.2s) ease-out;
  background-image: linear-gradient(90deg, transparent 80%, var(--chkbg) 80%),
      linear-gradient(-90deg, transparent 80%, var(--chkbg) 80%),
      linear-gradient(0deg, var(--chkbg) 43%, var(--chkfg) 43%, var(--chkfg) 57%, var(--chkbg) 57%);
}
@keyframes checkmark {
  0% {
    background-position-y: 5px;
  }
  50% {
    background-position-y: -2px;
  }
  100% {
    background-position-y: 0;
  }
}
.hx details.collapse {
  width: 100%;
}
.hx details.collapse summary {
  position: relative;
  display: block;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx details.collapse summary::-webkit-details-marker {
  display: none;
}
.hx .collapse:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.hx .collapse:has(.collapse-title:focus-visible), .hx .collapse:has(> input[type="checkbox"]:focus-visible), .hx .collapse:has(> input[type="radio"]:focus-visible) {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.hx .collapse-arrow > .collapse-title:after {
  position: absolute;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  --tw-translate-y: -100%;
  --tw-rotate: 45deg;
  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));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.2s;
  top: 1.9rem;
  inset-inline-end: 1.4rem;
  content: "";
  transform-origin: 75% 75%;
  box-shadow: 2px 2px;
  pointer-events: none;
}
.hx .collapse-plus > .collapse-title:after {
  position: absolute;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 300ms;
  top: 0.9rem;
  inset-inline-end: 1.4rem;
  content: "+";
  pointer-events: none;
}
.hx .collapse:not(.collapse-open):not(.collapse-close) > input[type="checkbox"], .hx .collapse:not(.collapse-open):not(.collapse-close) > input[type="radio"]:not(:checked), .hx .collapse:not(.collapse-open):not(.collapse-close) > .collapse-title {
  cursor: pointer;
}
.hx .collapse:focus:not(.collapse-open):not(.collapse-close):not(.collapse[open]) > .collapse-title {
  cursor: unset;
}
.hx .collapse-title {
  position: relative;
}
.hx .collapse-title, .hx :where(.collapse > input[type="checkbox"]), .hx :where(.collapse > input[type="radio"]) {
  padding: 1rem;
  padding-inline-end: 3rem;
  min-height: 3.75rem;
  transition: background-color 0.2s ease-out;
}
.hx .collapse[open] > :where(.collapse-content), .hx .collapse-open > :where(.collapse-content), .hx .collapse:focus:not(.collapse-close) > :where(.collapse-content), .hx .collapse:not(.collapse-close) > :where(input[type="checkbox"]:checked ~ .collapse-content), .hx .collapse:not(.collapse-close) > :where(input[type="radio"]:checked ~ .collapse-content) {
  padding-bottom: 1rem;
  transition: padding 0.2s ease-out,
    background-color 0.2s ease-out;
}
.hx .collapse[open].collapse-arrow > .collapse-title:after, .hx .collapse-open.collapse-arrow > .collapse-title:after, .hx .collapse-arrow:focus:not(.collapse-close) > .collapse-title:after, .hx .collapse-arrow:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-title:after, .hx .collapse-arrow:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-title:after {
  --tw-translate-y: -50%;
  --tw-rotate: 225deg;
  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));
}
.hx .collapse[open].collapse-plus > .collapse-title:after, .hx .collapse-open.collapse-plus > .collapse-title:after, .hx .collapse-plus:focus:not(.collapse-close) > .collapse-title:after, .hx .collapse-plus:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-title:after, .hx .collapse-plus:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-title:after {
  content: "−";
}
.hx .divider:not(:empty) {
  gap: 1rem;
}
.hx .dropdown.dropdown-open .dropdown-content, .hx .dropdown:focus .dropdown-content, .hx .dropdown:focus-within .dropdown-content {
  --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));
}
.hx .file-input-bordered {
  --tw-border-opacity: 0.2;
}
.hx .file-input:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .file-input-disabled, .hx .file-input[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  --tw-text-opacity: 0.2;
}
.hx .file-input-disabled::placeholder, .hx .file-input[disabled]::placeholder {
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.hx .file-input-disabled::file-selector-button, .hx .file-input[disabled]::file-selector-button {
  --tw-border-opacity: 0;
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.hx .label-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.hx .label-text-alt {
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.hx .\!input input {
  --tw-bg-opacity: 1 !important;
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity))) !important;
  background-color: transparent !important;
}
.hx .input input {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  background-color: transparent;
}
.hx .\!input input:focus {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}
.hx .input input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .\!input[list]::-webkit-calendar-picker-indicator {
  line-height: 1em !important;
}
.hx .input[list]::-webkit-calendar-picker-indicator {
  line-height: 1em;
}
.hx .input-bordered {
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .\!input:focus, .hx .\!input:focus-within {
  box-shadow: none !important;
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2)) !important;
  outline-style: solid !important;
  outline-width: 2px !important;
  outline-offset: 2px !important;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2)) !important;
}
.hx .input:focus, .hx .input:focus-within {
  box-shadow: none;
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .\!input:focus, .hx .\!input:focus-within {
  box-shadow: none !important;
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2)) !important;
  outline-style: solid !important;
  outline-width: 2px !important;
  outline-offset: 2px !important;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2)) !important;
}
.hx .\!input:has(> input[disabled]), .hx .\!input:disabled, .hx .\!input[disabled] {
  cursor: not-allowed !important;
  --tw-border-opacity: 1 !important;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity))) !important;
  --tw-bg-opacity: 1 !important;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity))) !important;
  color: var(--fallback-bc,oklch(var(--bc)/0.4)) !important;
}
.hx .input:has(> input[disabled]), .hx .input-disabled, .hx .input:disabled, .hx .input[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.hx .\!input:has(> input[disabled]), .hx .\!input:disabled, .hx .\!input[disabled] {
  cursor: not-allowed !important;
  --tw-border-opacity: 1 !important;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity))) !important;
  --tw-bg-opacity: 1 !important;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity))) !important;
  color: var(--fallback-bc,oklch(var(--bc)/0.4)) !important;
}
.hx .\!input:has(> input[disabled])::placeholder, .hx .\!input:disabled::placeholder, .hx .\!input[disabled]::placeholder {
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity))) !important;
  --tw-placeholder-opacity: 0.2 !important;
}
.hx .input:has(> input[disabled])::placeholder, .hx .input-disabled::placeholder, .hx .input:disabled::placeholder, .hx .input[disabled]::placeholder {
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.hx .\!input:has(> input[disabled])::placeholder, .hx .\!input:disabled::placeholder, .hx .\!input[disabled]::placeholder {
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity))) !important;
  --tw-placeholder-opacity: 0.2 !important;
}
.hx .\!input:has(> input[disabled]) > input[disabled] {
  cursor: not-allowed !important;
}
.hx .input:has(> input[disabled]) > input[disabled] {
  cursor: not-allowed;
}
.hx .\!input::-webkit-date-and-time-value {
  text-align: inherit !important;
}
.hx .input::-webkit-date-and-time-value {
  text-align: inherit;
}
.hx .join > :where(*:not(:first-child)) {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-inline-start: -1px;
}
.hx .join > :where(*:not(:first-child)):is(.btn) {
  margin-inline-start: calc(var(--border-btn) * -1);
}
.hx .join-item:focus {
  isolation: isolate;
}
.hx .link-primary {
  --tw-text-opacity: 1;
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
@supports (color:color-mix(in oklab,black,black)) {
  @media (hover:hover) {
    .hx .link-primary:hover {
      color: color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 80%,black);
    }
  }
}
.hx .link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.hx .loading {
  pointer-events: none;
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 1.5rem;
  background-color: currentColor;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.hx .loading-spinner {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.hx .loading-dots {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.1s'/%3E%3C/circle%3E%3Ccircle cx='20' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.2s'/%3E%3C/circle%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.1s'/%3E%3C/circle%3E%3Ccircle cx='20' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.2s'/%3E%3C/circle%3E%3C/svg%3E");
}
.hx .loading-ring {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' stroke='white'%3E%3Cg fill='none' fill-rule='evenodd' stroke-width='2'%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='0s' dur='1.8s' values='1;20' calcMode='spline' keyTimes='0;1' keySplines='0.165,0.84,0.44,1' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-opacity' begin='0s' dur='1.8s' values='1;0' calcMode='spline' keyTimes='0;1' keySplines='0.3,0.61,0.355,1' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='-0.9s' dur='1.8s' values='1;20' calcMode='spline' keyTimes='0;1' keySplines='0.165,0.84,0.44,1' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-opacity' begin='-0.9s' dur='1.8s' values='1;0' calcMode='spline' keyTimes='0;1' keySplines='0.3,0.61,0.355,1' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' stroke='white'%3E%3Cg fill='none' fill-rule='evenodd' stroke-width='2'%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='0s' dur='1.8s' values='1;20' calcMode='spline' keyTimes='0;1' keySplines='0.165,0.84,0.44,1' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-opacity' begin='0s' dur='1.8s' values='1;0' calcMode='spline' keyTimes='0;1' keySplines='0.3,0.61,0.355,1' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='-0.9s' dur='1.8s' values='1;20' calcMode='spline' keyTimes='0;1' keySplines='0.165,0.84,0.44,1' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-opacity' begin='-0.9s' dur='1.8s' values='1;0' calcMode='spline' keyTimes='0;1' keySplines='0.3,0.61,0.355,1' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
.hx .loading-ball {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='12' cy='5' rx='4' ry='4'%3E%3Canimate attributeName='cy' values='5;20;20.5;20;5' keyTimes='0;0.469;0.5;0.531;1' dur='.8s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1'/%3E%3Canimate attributeName='rx' values='4;4;4.8;4;4' keyTimes='0;0.469;0.5;0.531;1' dur='.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='ry' values='4;4;3;4;4' keyTimes='0;0.469;0.5;0.531;1' dur='.8s' repeatCount='indefinite'/%3E%3C/ellipse%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='12' cy='5' rx='4' ry='4'%3E%3Canimate attributeName='cy' values='5;20;20.5;20;5' keyTimes='0;0.469;0.5;0.531;1' dur='.8s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1'/%3E%3Canimate attributeName='rx' values='4;4;4.8;4;4' keyTimes='0;0.469;0.5;0.531;1' dur='.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='ry' values='4;4;3;4;4' keyTimes='0;0.469;0.5;0.531;1' dur='.8s' repeatCount='indefinite'/%3E%3C/ellipse%3E%3C/svg%3E");
}
.hx .loading-bars {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='6' height='22'%3E%3Canimate attributeName='y' values='1;5;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='22;14;22' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='1;0.2;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='9' y='1' width='6' height='22'%3E%3Canimate attributeName='y' values='1;5;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.65s'/%3E%3Canimate attributeName='height' values='22;14;22' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.65s'/%3E%3Canimate attributeName='opacity' values='1;0.2;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.65s'/%3E%3C/rect%3E%3Crect x='17' y='1' width='6' height='22'%3E%3Canimate attributeName='y' values='1;5;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='height' values='22;14;22' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='opacity' values='1;0.2;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.5s'/%3E%3C/rect%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='6' height='22'%3E%3Canimate attributeName='y' values='1;5;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='22;14;22' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='1;0.2;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='9' y='1' width='6' height='22'%3E%3Canimate attributeName='y' values='1;5;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.65s'/%3E%3Canimate attributeName='height' values='22;14;22' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.65s'/%3E%3Canimate attributeName='opacity' values='1;0.2;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.65s'/%3E%3C/rect%3E%3Crect x='17' y='1' width='6' height='22'%3E%3Canimate attributeName='y' values='1;5;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='height' values='22;14;22' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='opacity' values='1;0.2;1' keyTimes='0;0.938;1' dur='.8s' repeatCount='indefinite' begin='-0.5s'/%3E%3C/rect%3E%3C/svg%3E");
}
.hx .loading-infinity {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='shape-rendering:auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cpath fill='none' stroke='black' stroke-width='10' stroke-dasharray='205.271 51.318' d='M24.3 30C11.4 30 5 43.3 5 50s6.4 20 19.3 20c19.3 0 32.1-40 51.4-40C88.6 30 95 43.3 95 50s-6.4 20-19.3 20C56.4 70 43.6 30 24.3 30z' stroke-linecap='round' style='transform:scale(0.8);transform-origin:50px 50px'%3E%3Canimate attributeName='stroke-dashoffset' repeatCount='indefinite' dur='2s' keyTimes='0;1' values='0;256.589'/%3E%3C/path%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='shape-rendering:auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cpath fill='none' stroke='black' stroke-width='10' stroke-dasharray='205.271 51.318' d='M24.3 30C11.4 30 5 43.3 5 50s6.4 20 19.3 20c19.3 0 32.1-40 51.4-40C88.6 30 95 43.3 95 50s-6.4 20-19.3 20C56.4 70 43.6 30 24.3 30z' stroke-linecap='round' style='transform:scale(0.8);transform-origin:50px 50px'%3E%3Canimate attributeName='stroke-dashoffset' repeatCount='indefinite' dur='2s' keyTimes='0;1' values='0;256.589'/%3E%3C/path%3E%3C/svg%3E");
}
.hx .loading-xs {
  width: 1rem;
}
.hx .loading-sm {
  width: 1.25rem;
}
.hx .loading-md {
  width: 1.5rem;
}
.hx .loading-lg {
  width: 2.5rem;
}
.hx :where(.menu li:empty) {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  opacity: 0.1;
  margin: 0.5rem 1rem;
  height: 1px;
}
.hx .menu :where(li ul):before {
  position: absolute;
  bottom: 0.75rem;
  inset-inline-start: 0px;
  top: 0.75rem;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  opacity: 0.1;
  content: "";
}
.hx .menu :where(li:not(.menu-title) > *:not(ul, details, .menu-title, .btn)), .hx .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
  border-radius: var(--rounded-btn, 0.5rem);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: start;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  text-wrap: balance;
}
.hx :where(.menu li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title)):not(summary, .active, .btn).focus, .hx :where(.menu li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title)):not(summary, .active, .btn):focus, .hx :where(.menu li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title)):is(summary):not(.active, .btn):focus-visible, .hx :where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):not(summary, .active, .btn).focus, .hx :where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):not(summary, .active, .btn):focus, .hx :where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):is(summary):not(.active, .btn):focus-visible {
  cursor: pointer;
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .menu li > *:not(ul, .menu-title, details, .btn):active, .hx .menu li > *:not(ul, .menu-title, details, .btn).active, .hx .menu li > details > summary:active {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.hx .menu :where(li > details > summary)::-webkit-details-marker {
  display: none;
}
.hx .menu :where(li > details > summary):after, .hx .menu :where(li > .menu-dropdown-toggle):after {
  justify-self: end;
  display: block;
  margin-top: -0.5rem;
  height: 0.5rem;
  width: 0.5rem;
  transform: rotate(45deg);
  transition-property: transform, margin-top;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
  transform-origin: 75% 75%;
  box-shadow: 2px 2px;
  pointer-events: none;
}
.hx .menu :where(li > details[open] > summary):after, .hx .menu :where(li > .menu-dropdown-toggle.menu-dropdown-show):after {
  transform: rotate(225deg);
  margin-top: 0;
}
.hx .menu-title {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.hx .mockup-phone .display {
  overflow: hidden;
  border-radius: 40px;
  margin-top: -25px;
}
.hx .mockup-browser .mockup-browser-toolbar .\!input {
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  height: 1.75rem !important;
  width: 24rem !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  --tw-bg-opacity: 1 !important;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity))) !important;
  padding-left: 2rem !important;
  direction: ltr !important;
}
.hx .mockup-browser .mockup-browser-toolbar .input {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 1.75rem;
  width: 24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  padding-left: 2rem;
  direction: ltr;
}
.hx .mockup-browser .mockup-browser-toolbar .\!input:before {
  content: "" !important;
  position: absolute !important;
  left: 0.5rem !important;
  top: 50% !important;
  aspect-ratio: 1 / 1 !important;
  height: 0.75rem !important;
  --tw-translate-y: -50% !important;
  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)) !important;
  border-radius: 9999px !important;
  border-width: 2px !important;
  border-color: currentColor !important;
  opacity: 0.6 !important;
}
.hx .mockup-browser .mockup-browser-toolbar .input:before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  aspect-ratio: 1 / 1;
  height: 0.75rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  border-width: 2px;
  border-color: currentColor;
  opacity: 0.6;
}
.hx .mockup-browser .mockup-browser-toolbar .\!input:after {
  content: "" !important;
  position: absolute !important;
  left: 1.25rem !important;
  top: 50% !important;
  height: 0.5rem !important;
  --tw-translate-y: 25% !important;
  --tw-rotate: -45deg !important;
  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)) !important;
  border-radius: 9999px !important;
  border-width: 1px !important;
  border-color: currentColor !important;
  opacity: 0.6 !important;
}
.hx .mockup-browser .mockup-browser-toolbar .input:after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  height: 0.5rem;
  --tw-translate-y: 25%;
  --tw-rotate: -45deg;
  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));
  border-radius: 9999px;
  border-width: 1px;
  border-color: currentColor;
  opacity: 0.6;
}
.hx .modal:not(dialog:not(.modal-open)), .hx .modal::backdrop {
  background-color: #0006;
  animation: modal-pop 0.2s ease-out;
}
.hx .modal-backdrop {
  z-index: -1;
  grid-column-start: 1;
  grid-row-start: 1;
  display: grid;
  align-self: stretch;
  justify-self: stretch;
  color: transparent;
}
.hx .modal-open .modal-box, .hx .modal-toggle:checked + .modal .modal-box, .hx .modal:target .modal-box, .hx .modal[open] .modal-box {
  --tw-translate-y: 0px;
  --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));
}
.hx .modal-action > :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)));
}
.hx .modal-action:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
}
@keyframes modal-pop {
  0% {
    opacity: 0;
  }
}
@keyframes progress-loading {
  50% {
    background-position-x: -115%;
  }
}
.hx .radio:focus {
  box-shadow: none;
}
.hx .radio:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.hx .radio:checked, .hx .radio[aria-checked="true"] {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  background-image: none;
  animation: radiomark var(--animation-input, 0.2s) ease-out;
  box-shadow: 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset;
}
.hx .radio:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
@keyframes radiomark {
  0% {
    box-shadow: 0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset;
  }
  50% {
    box-shadow: 0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset;
  }
  100% {
    box-shadow: 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset;
  }
}
.hx .range:focus-visible::-webkit-slider-thumb {
  --focus-shadow: 0 0 0 6px var(--fallback-b1,oklch(var(--b1)/1)) inset, 0 0 0 2rem var(--range-shdw) inset;
}
.hx .range:focus-visible::-moz-range-thumb {
  --focus-shadow: 0 0 0 6px var(--fallback-b1,oklch(var(--b1)/1)) inset, 0 0 0 2rem var(--range-shdw) inset;
}
.hx .range::-webkit-slider-runnable-track {
  height: 0.5rem;
  width: 100%;
  border-radius: var(--rounded-box, 1rem);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.hx .range::-moz-range-track {
  height: 0.5rem;
  width: 100%;
  border-radius: var(--rounded-box, 1rem);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.hx .range::-webkit-slider-thumb {
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: var(--rounded-box, 1rem);
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  appearance: none;
  -webkit-appearance: none;
  top: 50%;
  color: var(--range-shdw);
  transform: translateY(-50%);
  --filler-size: 100rem;
  --filler-offset: 0.6rem;
  box-shadow: 0 0 0 3px var(--range-shdw) inset,
      var(--focus-shadow, 0 0),
      calc(var(--filler-size) * -1 - var(--filler-offset)) 0 0 var(--filler-size);
}
.hx .range::-moz-range-thumb {
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: var(--rounded-box, 1rem);
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  top: 50%;
  color: var(--range-shdw);
  --filler-size: 100rem;
  --filler-offset: 0.5rem;
  box-shadow: 0 0 0 3px var(--range-shdw) inset,
      var(--focus-shadow, 0 0),
      calc(var(--filler-size) * -1 - var(--filler-offset)) 0 0 var(--filler-size);
}
@keyframes rating-pop {
  0% {
    transform: translateY(-0.125em);
  }
  40% {
    transform: translateY(-0.125em);
  }
  100% {
    transform: translateY(0);
  }
}
.hx .select-bordered {
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .select:focus {
  box-shadow: none;
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .select-disabled, .hx .select:disabled, .hx .select[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.hx .select-disabled::placeholder, .hx .select:disabled::placeholder, .hx .select[disabled]::placeholder {
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.hx .select-multiple, .hx .select[multiple], .hx .select[size].select:not([size="1"]) {
  background-image: none;
  padding-right: 1rem;
}
.hx [dir="rtl"] .select {
  background-position: calc(0% + 12px) calc(1px + 50%),
    calc(0% + 16px) calc(1px + 50%);
}
@keyframes skeleton {
  from {
    background-position: 150%;
  }
  to {
    background-position: -50%;
  }
}
.hx .steps .step:before {
  top: 0px;
  grid-column-start: 1;
  grid-row-start: 1;
  height: 0.5rem;
  width: 100%;
  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));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  content: "";
  margin-inline-start: -100%;
}
.hx .steps .step:after {
  content: counter(step);
  counter-increment: step;
  z-index: 1;
  position: relative;
  grid-column-start: 1;
  grid-row-start: 1;
  display: grid;
  height: 2rem;
  width: 2rem;
  place-items: center;
  place-self: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.hx .steps .step:first-child:before {
  content: none;
}
.hx .steps .step[data-content]:after {
  content: attr(data-content);
}
.hx .tabs-lifted > .tab:focus-visible {
  border-end-end-radius: 0;
  border-end-start-radius: 0;
}
.hx .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]), .hx .tab:is(input:checked) {
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
}
.hx .tab:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hx .tab:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -5px;
}
.hx .tab-disabled, .hx .tab[disabled] {
  cursor: not-allowed;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.hx .tabs-bordered > .tab {
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.2;
  border-style: solid;
  border-bottom-width: calc(var(--tab-border, 1px) + 1px);
}
.hx .tabs-lifted > .tab {
  border: var(--tab-border, 1px) solid transparent;
  border-width: 0 0 var(--tab-border, 1px) 0;
  border-start-start-radius: var(--tab-radius, 0.5rem);
  border-start-end-radius: var(--tab-radius, 0.5rem);
  border-bottom-color: var(--tab-border-color);
  padding-inline-start: var(--tab-padding, 1rem);
  padding-inline-end: var(--tab-padding, 1rem);
  padding-top: var(--tab-border, 1px);
}
.hx .tabs-lifted > .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]), .hx .tabs-lifted > .tab:is(input:checked) {
  background-color: var(--tab-bg);
  border-width: var(--tab-border, 1px) var(--tab-border, 1px) 0 var(--tab-border, 1px);
  border-inline-start-color: var(--tab-border-color);
  border-inline-end-color: var(--tab-border-color);
  border-top-color: var(--tab-border-color);
  padding-inline-start: calc(var(--tab-padding, 1rem) - var(--tab-border, 1px));
  padding-inline-end: calc(var(--tab-padding, 1rem) - var(--tab-border, 1px));
  padding-bottom: var(--tab-border, 1px);
  padding-top: 0;
}
.hx .tabs-lifted > .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):before, .hx .tabs-lifted > .tab:is(input:checked):before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + var(--tab-radius, 0.5rem) * 2);
  height: var(--tab-radius, 0.5rem);
  bottom: 0;
  background-size: var(--tab-radius, 0.5rem);
  background-position: top left,
        top right;
  background-repeat: no-repeat;
  --tab-grad: calc(69% - var(--tab-border, 1px));
  --radius-start: radial-gradient(
        circle at top left,
        transparent var(--tab-grad),
        var(--tab-border-color) calc(var(--tab-grad) + 0.25px),
        var(--tab-border-color) calc(var(--tab-grad) + var(--tab-border, 1px)),
        var(--tab-bg) calc(var(--tab-grad) + var(--tab-border, 1px) + 0.25px)
      );
  --radius-end: radial-gradient(
        circle at top right,
        transparent var(--tab-grad),
        var(--tab-border-color) calc(var(--tab-grad) + 0.25px),
        var(--tab-border-color) calc(var(--tab-grad) + var(--tab-border, 1px)),
        var(--tab-bg) calc(var(--tab-grad) + var(--tab-border, 1px) + 0.25px)
      );
  background-image: var(--radius-start), var(--radius-end);
}
.hx .tabs-lifted > .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):first-child:before, .hx .tabs-lifted > .tab:is(input:checked):first-child:before {
  background-image: var(--radius-end);
  background-position: top right;
}
.hx [dir="rtl"] .tabs-lifted > .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):first-child:before, .hx [dir="rtl"] .tabs-lifted > .tab:is(input:checked):first-child:before {
  background-image: var(--radius-start);
  background-position: top left;
}
.hx .tabs-lifted > .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):last-child:before, .hx .tabs-lifted > .tab:is(input:checked):last-child:before {
  background-image: var(--radius-start);
  background-position: top left;
}
.hx [dir="rtl"] .tabs-lifted > .tab:is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):last-child:before, .hx [dir="rtl"] .tabs-lifted > .tab:is(input:checked):last-child:before {
  background-image: var(--radius-end);
  background-position: top right;
}
.hx .tabs-lifted
  > :is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled])
  + .tabs-lifted
  :is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]):before, .hx .tabs-lifted > .tab:is(input:checked) + .tabs-lifted .tab:is(input:checked):before {
  background-image: var(--radius-end);
  background-position: top right;
}
.hx .tabs-boxed .tab {
  border-radius: var(--rounded-btn, 0.5rem);
}
.hx .tabs-boxed :is(.tab-active, [aria-selected="true"]):not(.tab-disabled):not([disabled]), .hx .tabs-boxed :is(input:checked) {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.hx .table:where([dir="rtl"], [dir="rtl"] *) {
  text-align: right;
}
.hx .table :where(th, td) {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  vertical-align: middle;
}
.hx .table tr.active, .hx .table tr.active:nth-child(even), .hx .table-zebra tbody tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.hx .table-zebra tr.active, .hx .table-zebra tr.active:nth-child(even), .hx .table-zebra-zebra tbody tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
}
.hx .table :where(thead tr, tbody tr:not(:last-child), tbody tr:first-child:last-child) {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.hx .table :where(thead, tfoot) {
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.hx .table :where(tfoot) {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-top-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.hx .textarea-bordered {
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .textarea:focus {
  box-shadow: none;
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .textarea-disabled, .hx .textarea:disabled, .hx .textarea[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.hx .textarea-disabled::placeholder, .hx .textarea:disabled::placeholder, .hx .textarea[disabled]::placeholder {
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.hx .toast > * {
  animation: toast-pop 0.25s ease-out;
}
@keyframes toast-pop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.hx [dir="rtl"] .toggle {
  --handleoffsetcalculator: calc(var(--handleoffset) * 1);
}
.hx .toggle:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .toggle:hover {
  background-color: currentColor;
}
.hx .toggle:checked, .hx .toggle[aria-checked="true"] {
  background-image: none;
  --handleoffsetcalculator: var(--handleoffset);
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.hx [dir="rtl"] .toggle:checked, .hx [dir="rtl"] .toggle[aria-checked="true"] {
  --handleoffsetcalculator: calc(var(--handleoffset) * -1);
}
.hx .toggle:indeterminate {
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  box-shadow: calc(var(--handleoffset) / 2) 0 0 2px var(--tglbg) inset,
      calc(var(--handleoffset) / -2) 0 0 2px var(--tglbg) inset,
      0 0 0 2px var(--tglbg) inset;
}
.hx [dir="rtl"] .toggle:indeterminate {
  box-shadow: calc(var(--handleoffset) / 2) 0 0 2px var(--tglbg) inset,
        calc(var(--handleoffset) / -2) 0 0 2px var(--tglbg) inset,
        0 0 0 2px var(--tglbg) inset;
}
.hx .toggle:disabled {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  background-color: transparent;
  opacity: 0.3;
  --togglehandleborder: 0 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset,
      var(--handleoffsetcalculator) 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset;
}
.hx .prose {
  --tw-prose-body: var(--fallback-bc,oklch(var(--bc)/0.8));
  --tw-prose-headings: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-lead: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-links: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bold: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-counters: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bullets: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-hr: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-quotes: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-quote-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-captions: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-code: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-pre-code: var(--fallback-nc,oklch(var(--nc)/1));
  --tw-prose-pre-bg: var(--fallback-n,oklch(var(--n)/1));
  --tw-prose-th-borders: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-td-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-kbd: var(--fallback-bc,oklch(var(--bc)/0.8));
}
.hx .prose :where(code):not(:where([class~="not-prose"] *, pre *)) {
  padding: 1px 8px;
  border-radius: var(--rounded-badge);
  font-weight: initial;
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.hx .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before, .hx .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
  display: none;
}
.hx .prose pre code {
  border-radius: 0;
  padding: 0;
}
.hx .prose :where(tbody tr, thead):not(:where([class~="not-prose"] *)) {
  border-bottom-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .glass, .hx .glass.btn-active {
  border: none;
  backdrop-filter: blur(var(--glass-blur, 40px));
  background-color: transparent;
  background-image: linear-gradient(
        135deg,
        rgb(255 255 255 / var(--glass-opacity, 30%)) 0%,
        rgb(0 0 0 / 0%) 100%
      ),
      linear-gradient(
        var(--glass-reflex-degree, 100deg),
        rgb(255 255 255 / var(--glass-reflex-opacity, 10%)) 25%,
        rgb(0 0 0 / 0%) 25%
      );
  box-shadow: 0 0 0 1px rgb(255 255 255 / var(--glass-border-opacity, 10%)) inset,
      0 0 0 2px rgb(0 0 0 / 5%);
  text-shadow: 0 1px rgb(0 0 0 / var(--glass-text-shadow-opacity, 5%));
}
@media (hover: hover) {
  .hx .glass.btn-active {
    border: none;
    backdrop-filter: blur(var(--glass-blur, 40px));
    background-color: transparent;
    background-image: linear-gradient(
          135deg,
          rgb(255 255 255 / var(--glass-opacity, 30%)) 0%,
          rgb(0 0 0 / 0%) 100%
        ),
        linear-gradient(
          var(--glass-reflex-degree, 100deg),
          rgb(255 255 255 / var(--glass-reflex-opacity, 10%)) 25%,
          rgb(0 0 0 / 0%) 25%
        );
    box-shadow: 0 0 0 1px rgb(255 255 255 / var(--glass-border-opacity, 10%)) inset,
        0 0 0 2px rgb(0 0 0 / 5%);
    text-shadow: 0 1px rgb(0 0 0 / var(--glass-text-shadow-opacity, 5%));
  }
}
.hx .artboard.phone {
  width: 320px;
}
.hx .artboard.phone-1.horizontal, .hx .artboard.phone-1.artboard-horizontal {
  width: 568px;
  height: 320px;
}
.hx .artboard.phone-2.horizontal, .hx .artboard.phone-2.artboard-horizontal {
  width: 667px;
  height: 375px;
}
.hx .artboard.phone-3.horizontal, .hx .artboard.phone-3.artboard-horizontal {
  width: 736px;
  height: 414px;
}
.hx .artboard.phone-4.horizontal, .hx .artboard.phone-4.artboard-horizontal {
  width: 812px;
  height: 375px;
}
.hx .artboard.phone-5.horizontal, .hx .artboard.phone-5.artboard-horizontal {
  width: 896px;
  height: 414px;
}
.hx .artboard.phone-6.horizontal, .hx .artboard.phone-6.artboard-horizontal {
  width: 1024px;
  height: 320px;
}
.hx .btm-nav-xs > *:where(.active) {
  border-top-width: 1px;
}
.hx .btm-nav-sm > *:where(.active) {
  border-top-width: 2px;
}
.hx .btm-nav-md > *:where(.active) {
  border-top-width: 2px;
}
.hx .btm-nav-lg > *:where(.active) {
  border-top-width: 4px;
}
.hx .btn-xs {
  height: 1.5rem;
  min-height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
}
.hx .btn-sm {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}
.hx .btn-md {
  height: 3rem;
  min-height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
}
.hx .btn-lg {
  height: 4rem;
  min-height: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
}
.hx .btn-wide {
  width: 16rem;
}
.hx .btn-block {
  width: 100%;
}
.hx .btn-square:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  padding: 0px;
}
.hx .btn-square:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  padding: 0px;
}
.hx .btn-square:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.hx .btn-square:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  padding: 0px;
}
.hx .btn-circle:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .btn-circle:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .btn-circle:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .btn-circle:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .card-side {
  align-items: stretch;
  flex-direction: row;
}
.hx .card-side :where(figure:first-child) {
  overflow: hidden;
  border-start-start-radius: inherit;
  border-start-end-radius: unset;
  border-end-start-radius: inherit;
  border-end-end-radius: unset;
}
.hx .card-side :where(figure:last-child) {
  overflow: hidden;
  border-start-start-radius: unset;
  border-start-end-radius: inherit;
  border-end-start-radius: unset;
  border-end-end-radius: inherit;
}
.hx .card-side figure > * {
  max-width: unset;
}
.hx :where(.card-side figure > *) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hx .input-xs {
  height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  line-height: 1.625;
}
.hx .input-sm {
  height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 2rem;
}
.hx .join.join-vertical {
  flex-direction: column;
}
.hx .join.join-vertical .join-item:first-child:not(:last-child), .hx .join.join-vertical *:first-child:not(:last-child) .join-item {
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  border-start-start-radius: inherit;
  border-start-end-radius: inherit;
}
.hx .join.join-vertical .join-item:last-child:not(:first-child), .hx .join.join-vertical *:last-child:not(:first-child) .join-item {
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: inherit;
  border-end-end-radius: inherit;
}
.hx .join.join-horizontal {
  flex-direction: row;
}
.hx .join.join-horizontal .join-item:first-child:not(:last-child), .hx .join.join-horizontal *:first-child:not(:last-child) .join-item {
  border-end-end-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: inherit;
  border-start-start-radius: inherit;
}
.hx .join.join-horizontal .join-item:last-child:not(:first-child), .hx .join.join-horizontal *:last-child:not(:first-child) .join-item {
  border-end-start-radius: 0;
  border-start-start-radius: 0;
  border-end-end-radius: inherit;
  border-start-end-radius: inherit;
}
.hx .modal-middle {
  place-items: center;
}
.hx .modal-bottom {
  place-items: end;
}
.hx .select-sm {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  line-height: 2rem;
}
.hx [dir="rtl"] .select-sm {
  padding-left: 2rem;
  padding-right: 0.75rem;
}
.hx .select-xs {
  height: 1.5rem;
  min-height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 2rem;
  font-size: 0.75rem;
  line-height: 1rem;
  line-height: 1.625;
}
.hx [dir="rtl"] .select-xs {
  padding-left: 2rem;
  padding-right: 0.5rem;
}
.hx .steps-horizontal .step {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  place-items: center;
  text-align: center;
}
.hx .steps-vertical .step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.hx .tabs-md :where(.tab) {
  height: 2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  --tab-padding: 1rem;
}
.hx .tabs-lg :where(.tab) {
  height: 3rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 2;
  --tab-padding: 1.25rem;
}
.hx .tabs-sm :where(.tab) {
  height: 1.5rem;
  font-size: 0.875rem;
  line-height: .75rem;
  --tab-padding: 0.75rem;
}
.hx .tabs-xs :where(.tab) {
  height: 1.25rem;
  font-size: 0.75rem;
  line-height: .75rem;
  --tab-padding: 0.5rem;
}
.hx :where(.toast) {
  bottom: 0px;
  inset-inline-end: 0px;
  inset-inline-start: auto;
  top: auto;
  --tw-translate-x: 0px;
  --tw-translate-y: 0px;
  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));
}
.hx .toast:where(.toast-start) {
  inset-inline-end: auto;
  inset-inline-start: 0px;
  --tw-translate-x: 0px;
  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));
}
.hx .toast:where(.toast-center) {
  inset-inline-end: 50%;
  inset-inline-start: 50%;
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hx .toast:where(.toast-center):where([dir="rtl"], [dir="rtl"] *) {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hx .toast:where(.toast-end) {
  inset-inline-end: 0px;
  inset-inline-start: auto;
  --tw-translate-x: 0px;
  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));
}
.hx .toast:where(.toast-bottom) {
  bottom: 0px;
  top: auto;
  --tw-translate-y: 0px;
  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));
}
.hx .toast:where(.toast-middle) {
  bottom: auto;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hx .toast:where(.toast-top) {
  bottom: auto;
  top: 0px;
  --tw-translate-y: 0px;
  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));
}
.hx .card-compact .card-body {
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hx .card-compact .card-title {
  margin-bottom: 0.25rem;
}
.hx .card-normal .card-body {
  padding: var(--padding-card, 2rem);
  font-size: 1rem;
  line-height: 1.5rem;
}
.hx .card-normal .card-title {
  margin-bottom: 0.75rem;
}
.hx .join.join-vertical > :where(*:not(:first-child)) {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: -1px;
}
.hx .join.join-vertical > :where(*:not(:first-child)):is(.btn) {
  margin-top: calc(var(--border-btn) * -1);
}
.hx .join.join-horizontal > :where(*:not(:first-child)) {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-inline-start: -1px;
}
.hx .join.join-horizontal > :where(*:not(:first-child)):is(.btn) {
  margin-inline-start: calc(var(--border-btn) * -1);
  margin-top: 0px;
}
.hx .menu-xs .menu-title {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.hx .menu-sm .menu-title {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hx .menu-md .menu-title {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hx .menu-lg .menu-title {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.hx .modal-top :where(.modal-box) {
  width: 100%;
  max-width: none;
  --tw-translate-y: -2.5rem;
  --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));
  border-bottom-right-radius: var(--rounded-box, 1rem);
  border-bottom-left-radius: var(--rounded-box, 1rem);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.hx .modal-middle :where(.modal-box) {
  width: 91.666667%;
  max-width: 32rem;
  --tw-translate-y: 0px;
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
  border-top-left-radius: var(--rounded-box, 1rem);
  border-top-right-radius: var(--rounded-box, 1rem);
  border-bottom-right-radius: var(--rounded-box, 1rem);
  border-bottom-left-radius: var(--rounded-box, 1rem);
}
.hx .modal-bottom :where(.modal-box) {
  width: 100%;
  max-width: none;
  --tw-translate-y: 2.5rem;
  --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));
  border-top-left-radius: var(--rounded-box, 1rem);
  border-top-right-radius: var(--rounded-box, 1rem);
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.hx .steps-horizontal .step {
  grid-template-rows: 40px 1fr;
  grid-template-columns: auto;
  min-width: 4rem;
}
.hx .steps-horizontal .step:before {
  height: 0.5rem;
  width: 100%;
  --tw-translate-x: 0px;
  --tw-translate-y: 0px;
  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));
  content: "";
  margin-inline-start: -100%;
}
.hx .steps-horizontal .step:where([dir="rtl"], [dir="rtl"] *):before {
  --tw-translate-x: 0px;
  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));
}
.hx .steps-vertical .step {
  gap: 0.5rem;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto;
  min-height: 4rem;
  justify-items: start;
}
.hx .steps-vertical .step:before {
  height: 100%;
  width: 0.5rem;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  margin-inline-start: 50%;
}
.hx .steps-vertical .step:where([dir="rtl"], [dir="rtl"] *):before {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hx .table-xs :not(thead):not(tfoot) tr {
  font-size: 0.75rem;
  line-height: 1rem;
}
.hx .table-xs :where(th, td) {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.hx .table-sm :not(thead):not(tfoot) tr {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hx .table-sm :where(th, td) {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hx .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;
}
.hx .pointer-events-none {
  pointer-events: none;
}
.hx .visible {
  visibility: visible;
}
.hx .collapse {
  visibility: collapse;
}
.hx .static {
  position: static;
}
.hx .fixed {
  position: fixed;
}
.hx .\!absolute {
  position: absolute !important;
}
.hx .absolute {
  position: absolute;
}
.hx .relative {
  position: relative;
}
.hx .sticky {
  position: sticky;
}
.hx .inset-0 {
  inset: 0px;
}
.hx .left-0 {
  left: 0px;
}
.hx .right-0 {
  right: 0px;
}
.hx .right-4 {
  right: 8px;
}
.hx .right-\[var\(--hx-spacing-p-x\)\] {
  right: var(--hx-spacing-p-x);
}
.hx .top-0 {
  top: 0px;
}
.hx .top-1\/2 {
  top: 50%;
}
.hx .top-4 {
  top: 8px;
}
.hx .z-10 {
  z-index: 10;
}
.hx .z-50 {
  z-index: 50;
}
.hx .z-\[1\] {
  z-index: 1;
}
.hx .col-span-1 {
  grid-column: span 1 / span 1;
}
.hx .col-span-10 {
  grid-column: span 10 / span 10;
}
.hx .col-span-11 {
  grid-column: span 11 / span 11;
}
.hx .col-span-12 {
  grid-column: span 12 / span 12;
}
.hx .col-span-2 {
  grid-column: span 2 / span 2;
}
.hx .col-span-3 {
  grid-column: span 3 / span 3;
}
.hx .col-span-4 {
  grid-column: span 4 / span 4;
}
.hx .col-span-5 {
  grid-column: span 5 / span 5;
}
.hx .col-span-6 {
  grid-column: span 6 / span 6;
}
.hx .col-span-7 {
  grid-column: span 7 / span 7;
}
.hx .col-span-8 {
  grid-column: span 8 / span 8;
}
.hx .col-span-9 {
  grid-column: span 9 / span 9;
}
.hx .col-span-full {
  grid-column: 1 / -1;
}
.hx .\!row-start-1 {
  grid-row-start: 1 !important;
}
.hx .\!row-start-2 {
  grid-row-start: 2 !important;
}
.hx .m-0 {
  margin: 0px;
}
.hx .m-\[calc\(-1\*var\(--gap\)\)\] {
  margin: calc(-1 * var(--gap));
}
.hx .-my-3 {
  margin-top: -4px;
  margin-bottom: -4px;
}
.hx .mx-1 {
  margin-left: 1px;
  margin-right: 1px;
}
.hx .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.hx .my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.hx .my-2 {
  margin-top: 2px;
  margin-bottom: 2px;
}
.hx .my-4 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.hx .-mb-1 {
  margin-bottom: -1px;
}
.hx .-mb-4 {
  margin-bottom: -8px;
}
.hx .-ml-1 {
  margin-left: -1px;
}
.hx .mb-0 {
  margin-bottom: 0px;
}
.hx .mb-1 {
  margin-bottom: 1px;
}
.hx .mb-2 {
  margin-bottom: 2px;
}
.hx .mb-3 {
  margin-bottom: 4px;
}
.hx .mb-4 {
  margin-bottom: 8px;
}
.hx .mb-5 {
  margin-bottom: 12px;
}
.hx .mb-6 {
  margin-bottom: 16px;
}
.hx .mb-8 {
  margin-bottom: 24px;
}
.hx .mb-\[var\(--hx-spacing-my\2c var\(--hx-spacing-m\2c 0\.8rem\)\)\] {
  margin-bottom: var(--hx-spacing-my,var(--hx-spacing-m,0.8rem));
}
.hx .me-1 {
  margin-inline-end: 1px;
}
.hx .me-2 {
  margin-inline-end: 2px;
}
.hx .me-3 {
  margin-inline-end: 4px;
}
.hx .me-auto {
  margin-inline-end: auto;
}
.hx .ml-2 {
  margin-left: 2px;
}
.hx .ml-3 {
  margin-left: 4px;
}
.hx .ml-4 {
  margin-left: 8px;
}
.hx .ml-5 {
  margin-left: 12px;
}
.hx .ml-6 {
  margin-left: 16px;
}
.hx .ml-\[-15px\] {
  margin-left: -15px;
}
.hx .ml-\[0\.1em\] {
  margin-left: 0.1em;
}
.hx .ml-\[0\.2em\] {
  margin-left: 0.2em;
}
.hx .mr-2 {
  margin-right: 2px;
}
.hx .mr-\[-15px\] {
  margin-right: -15px;
}
.hx .mr-\[calc\(var\(--hx-spacing-p-x\)\*0\.75\)\] {
  margin-right: calc(var(--hx-spacing-p-x) * 0.75);
}
.hx .mr-\[var\(--hx-spacing-p-x\)\] {
  margin-right: var(--hx-spacing-p-x);
}
.hx .ms-1 {
  margin-inline-start: 1px;
}
.hx .ms-2 {
  margin-inline-start: 2px;
}
.hx .ms-4 {
  margin-inline-start: 8px;
}
.hx .ms-6 {
  margin-inline-start: 16px;
}
.hx .ms-\[calc\(-1\*var\(--separator-size\)\)\] {
  margin-inline-start: calc(-1 * var(--separator-size));
}
.hx .mt-0 {
  margin-top: 0px;
}
.hx .mt-1 {
  margin-top: 1px;
}
.hx .mt-10 {
  margin-top: 48px;
}
.hx .mt-2 {
  margin-top: 2px;
}
.hx .mt-3 {
  margin-top: 4px;
}
.hx .mt-4 {
  margin-top: 8px;
}
.hx .mt-6 {
  margin-top: 16px;
}
.hx .mt-8 {
  margin-top: 24px;
}
.hx .mt-\[0\.25em\] {
  margin-top: 0.25em;
}
.hx .mt-\[calc\(-1\*var\(--separator-size\)\)\] {
  margin-top: calc(-1 * var(--separator-size));
}
.hx .line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hx .block {
  display: block;
}
.hx .inline-block {
  display: inline-block;
}
.hx .inline {
  display: inline;
}
.hx .flex {
  display: flex;
}
.hx .inline-flex {
  display: inline-flex;
}
.hx .table {
  display: table;
}
.hx .grid {
  display: grid;
}
.hx .\!hidden {
  display: none !important;
}
.hx .hidden {
  display: none;
}
.hx .aspect-1-1 {
  aspect-ratio: 1 / 1;
}
.hx .aspect-16\/9 {
  aspect-ratio: 16 / 9;
}
.hx .aspect-2\/3 {
  aspect-ratio: 2 / 3;
}
.hx .aspect-21\/9 {
  aspect-ratio: 21 / 9;
}
.hx .aspect-3\/2 {
  aspect-ratio: 3 / 2;
}
.hx .aspect-3\/4 {
  aspect-ratio: 3 / 4;
}
.hx .aspect-4\/3 {
  aspect-ratio: 4 / 3;
}
.hx .aspect-9\/16 {
  aspect-ratio: 9 / 16;
}
.hx .aspect-9\/21 {
  aspect-ratio: 9 / 21;
}
.hx .aspect-auto {
  aspect-ratio: auto;
}
.hx .aspect-square {
  aspect-ratio: 1 / 1;
}
.hx .aspect-video {
  aspect-ratio: 16 / 9;
}
.hx .aspect-x1 {
  aspect-ratio: 3 / 2;
}
.hx .aspect-x2 {
  aspect-ratio: 2 / 1;
}
.hx .aspect-x3 {
  aspect-ratio: 3 / 1;
}
.hx .aspect-x4 {
  aspect-ratio: 4 / 1;
}
.hx .aspect-x5 {
  aspect-ratio: 5 / 1;
}
.hx .aspect-y1 {
  aspect-ratio: 2 / 3;
}
.hx .aspect-y2 {
  aspect-ratio: 1 / 2;
}
.hx .aspect-y3 {
  aspect-ratio: 1 / 3;
}
.hx .aspect-y4 {
  aspect-ratio: 1 / 4;
}
.hx .aspect-y5 {
  aspect-ratio: 1 / 5;
}
.hx .h-10 {
  height: 48px;
}
.hx .h-2 {
  height: 2px;
}
.hx .h-3 {
  height: 4px;
}
.hx .h-4 {
  height: 8px;
}
.hx .h-8 {
  height: 24px;
}
.hx .h-\[1\.1em\] {
  height: 1.1em;
}
.hx .h-\[1\.5em\] {
  height: 1.5em;
}
.hx .h-\[3px\] {
  height: 3px;
}
.hx .h-\[var\(--hx-size\)\] {
  height: var(--hx-size);
}
.hx .h-auto {
  height: auto;
}
.hx .h-full {
  height: 100%;
}
.hx .max-h-full {
  max-height: 100%;
}
.hx .min-h-\[34px\] {
  min-height: 34px;
}
.hx .min-h-\[40px\] {
  min-height: 40px;
}
.hx .min-h-\[calc\(var\(--hx-size\)\*2\)\] {
  min-height: calc(var(--hx-size) * 2);
}
.hx .w-10 {
  width: 48px;
}
.hx .w-11\/12 {
  width: 91.666667%;
}
.hx .w-2 {
  width: 2px;
}
.hx .w-3 {
  width: 4px;
}
.hx .w-4 {
  width: 8px;
}
.hx .w-8 {
  width: 24px;
}
.hx .w-\[1\.1em\] {
  width: 1.1em;
}
.hx .w-\[1\.5em\] {
  width: 1.5em;
}
.hx .w-\[250px\] {
  width: 250px;
}
.hx .w-\[calc\(100\%\+30px\)\] {
  width: calc(100% + 30px);
}
.hx .w-\[var\(--hx-size\)\] {
  width: var(--hx-size);
}
.hx .w-auto {
  width: auto;
}
.hx .w-full {
  width: 100%;
}
.hx .min-w-0 {
  min-width: 0px;
}
.hx .min-w-\[150px\] {
  min-width: 150px;
}
.hx .min-w-full {
  min-width: 100%;
}
.hx .max-w-3xl {
  max-width: 48rem;
}
.hx .max-w-5xl {
  max-width: 64rem;
}
.hx .max-w-\[110px\] {
  max-width: 110px;
}
.hx .max-w-\[140px\] {
  max-width: 140px;
}
.hx .max-w-\[200px\] {
  max-width: 200px;
}
.hx .max-w-\[24rem\] {
  max-width: 24rem;
}
.hx .max-w-\[32rem\] {
  max-width: 32rem;
}
.hx .max-w-\[42rem\] {
  max-width: 42rem;
}
.hx .max-w-\[64rem\] {
  max-width: 64rem;
}
.hx .max-w-\[calc\(100\%\+30px\)\] {
  max-width: calc(100% + 30px);
}
.hx .max-w-\[min\(220px\2c 80vw\)\] {
  max-width: min(220px, 80vw);
}
.hx .max-w-full {
  max-width: 100%;
}
.hx .max-w-md {
  max-width: 28rem;
}
.hx .max-w-none {
  max-width: none;
}
.hx .max-w-screen-2xl {
  max-width: 1536px;
}
.hx .max-w-xl {
  max-width: 36rem;
}
.hx .max-w-xs {
  max-width: 20rem;
}
.hx .flex-1 {
  flex: 1 1 0%;
}
.hx .flex-shrink {
  flex-shrink: 1;
}
.hx .flex-shrink-0 {
  flex-shrink: 0;
}
.hx .flex-grow {
  flex-grow: 1;
}
.hx .flex-grow-0 {
  flex-grow: 0;
}
.hx .grow {
  flex-grow: 1;
}
.hx .border-collapse {
  border-collapse: collapse;
}
.hx .-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hx .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));
}
.hx .cursor-context-menu {
  cursor: context-menu;
}
.hx .cursor-not-allowed {
  cursor: not-allowed;
}
.hx .cursor-pointer {
  cursor: pointer;
}
.hx .touch-none {
  touch-action: none;
}
.hx .select-none {
  -webkit-user-select: none;
          user-select: none;
}
.hx .resize-y {
  resize: vertical;
}
.hx .list-inside {
  list-style-position: inside;
}
.hx .list-decimal {
  list-style-type: decimal;
}
.hx .list-disc {
  list-style-type: disc;
}
.hx .appearance-none {
  appearance: none;
}
.hx .grid-flow-col {
  grid-auto-flow: column;
}
.hx .grid-flow-dense {
  grid-auto-flow: dense;
}
.hx .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.hx .grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.hx .grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.hx .grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.hx .grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hx .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hx .grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hx .grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.hx .grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.hx .grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.hx .grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.hx .grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.hx .grid-cols-\[1fr_auto\] {
  grid-template-columns: 1fr auto;
}
.hx .grid-cols-\[auto\2c 1fr\] {
  grid-template-columns: auto 1fr;
}
.hx .grid-cols-\[auto_1fr\] {
  grid-template-columns: auto 1fr;
}
.hx .grid-cols-\[repeat\(auto-fit\2c minmax\(var\(--item-min-width\)\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(var(--item-min-width),1fr));
}
.hx .grid-cols-none {
  grid-template-columns: none;
}
.hx .grid-cols-subgrid {
  grid-template-columns: subgrid;
}
.hx .\!grid-rows-\[0fr\2c auto\] {
  grid-template-rows: 0fr auto !important;
}
.hx .grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.hx .grid-rows-\[auto_1fr\] {
  grid-template-rows: auto 1fr;
}
.hx .flex-col {
  flex-direction: column;
}
.hx .flex-wrap {
  flex-wrap: wrap;
}
.hx .flex-nowrap {
  flex-wrap: nowrap;
}
.hx .place-items-stretch {
  place-items: stretch;
}
.hx .items-start {
  align-items: flex-start;
}
.hx .items-end {
  align-items: flex-end;
}
.hx .items-center {
  align-items: center;
}
.hx .items-baseline {
  align-items: baseline;
}
.hx .justify-start {
  justify-content: flex-start;
}
.hx .justify-end {
  justify-content: flex-end;
}
.hx .justify-center {
  justify-content: center;
}
.hx .justify-between {
  justify-content: space-between;
}
.hx .gap-1 {
  gap: 1px;
}
.hx .gap-2 {
  gap: 2px;
}
.hx .gap-3 {
  gap: 4px;
}
.hx .gap-4 {
  gap: 8px;
}
.hx .gap-\[\.5em\] {
  gap: .5em;
}
.hx .gap-\[0\.2em\] {
  gap: 0.2em;
}
.hx .gap-\[2px\] {
  gap: 2px;
}
.hx .gap-\[calc\(var\(--hx-spacing-gap\)\*0\.75\)\] {
  gap: calc(var(--hx-spacing-gap) * 0.75);
}
.hx .gap-x-5 {
  column-gap: 12px;
}
.hx .gap-x-\[var\(--hx-spacing-mx\2c var\(--hx-spacing-m\2c 0\.8rem\)\)\] {
  column-gap: var(--hx-spacing-mx,var(--hx-spacing-m,0.8rem));
}
.hx .gap-y-6 {
  row-gap: 16px;
}
.hx .gap-y-\[var\(--hx-spacing-my\2c var\(--hx-spacing-m\2c 0\.8rem\)\)\] {
  row-gap: var(--hx-spacing-my,var(--hx-spacing-m,0.8rem));
}
.hx .space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1px * var(--tw-space-y-reverse));
}
.hx .space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2px * var(--tw-space-y-reverse));
}
.hx .space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.hx .space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.hx .divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.hx .divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.hx .place-self-center {
  place-self: center;
}
.hx .self-stretch {
  align-self: stretch;
}
.hx .overflow-auto {
  overflow: auto;
}
.hx .overflow-hidden {
  overflow: hidden;
}
.hx .overflow-x-auto {
  overflow-x: auto;
}
.hx .overflow-y-auto {
  overflow-y: auto;
}
.hx .overflow-x-scroll {
  overflow-x: scroll;
}
.hx .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hx .text-ellipsis {
  text-overflow: ellipsis;
}
.hx .text-clip {
  text-overflow: clip;
}
.hx .whitespace-nowrap {
  white-space: nowrap;
}
.hx .text-wrap {
  text-wrap: wrap;
}
.hx .text-nowrap {
  text-wrap: nowrap;
}
.hx .text-balance {
  text-wrap: balance;
}
.hx .text-pretty {
  text-wrap: pretty;
}
.hx .break-words {
  overflow-wrap: break-word;
}
.hx .rounded {
  border-radius: 0.25rem;
}
.hx .rounded-\[calc\(var\(--hx-radius\)-2px\)\] {
  border-radius: calc(var(--hx-radius) - 2px);
}
.hx .rounded-\[var\(--rounded-btn\)\] {
  border-radius: var(--rounded-btn);
}
.hx .rounded-box {
  border-radius: var(--rounded-box, 1rem);
}
.hx .rounded-full {
  border-radius: 9999px;
}
.hx .rounded-lg {
  border-radius: 0.5rem;
}
.hx .rounded-md {
  border-radius: 0.375rem;
}
.hx .rounded-none {
  border-radius: 0px;
}
.hx .rounded-sm {
  border-radius: 0.125rem;
}
.hx .rounded-b-md {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.hx .rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.hx .rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.hx .rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.hx .rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.hx .border {
  border-width: 1px;
}
.hx .border-0 {
  border-width: 0px;
}
.hx .border-2 {
  border-width: 2px;
}
.hx .border-b {
  border-bottom-width: 1px;
}
.hx .border-b-2 {
  border-bottom-width: 2px;
}
.hx .border-b-4 {
  border-bottom-width: 4px;
}
.hx .border-l {
  border-left-width: 1px;
}
.hx .border-l-2 {
  border-left-width: 2px;
}
.hx .border-r {
  border-right-width: 1px;
}
.hx .border-r-2 {
  border-right-width: 2px;
}
.hx .border-t {
  border-top-width: 1px;
}
.hx .border-dotted {
  border-style: dotted;
}
.hx .border-\[color\:color-mix\(in_oklch\2c var\(--hx-color-fg-danger\)_35\%\2c transparent\)\] {
  border-color: color-mix(in oklch,var(--hx-color-fg-danger) 35%,transparent);
}
.hx .border-\[var\(--hx-color-b\)\] {
  border-color: var(--hx-color-b);
}
.hx .border-amber-200 {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.hx .border-amber-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}
.hx .border-base-200 {
  --tw-border-opacity: 1;
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity, 1)));
}
.hx .border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.hx .border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.hx .border-emerald-200 {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.hx .border-emerald-400 {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.hx .border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.hx .border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.hx .border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.hx .border-indigo-200 {
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.hx .border-purple-200 {
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.hx .border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.hx .border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.hx .border-rose-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.hx .border-rose-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
}
.hx .border-slate-100 {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.hx .border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.hx .border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.hx .border-slate-50 {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
}
.hx .border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.hx .\!bg-transparent {
  background-color: transparent !important;
}
.hx .bg-\[\#F2F3F7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 243 247 / var(--tw-bg-opacity, 1));
}
.hx .bg-\[\#F2F3F7\]\/60 {
  background-color: rgb(242 243 247 / 0.6);
}
.hx .bg-\[gray\] {
  --tw-bg-opacity: 1;
  background-color: rgb(128 128 128 / var(--tw-bg-opacity, 1));
}
.hx .bg-\[var\(--hx-color-bg\)\] {
  background-color: var(--hx-color-bg);
}
.hx .bg-\[var\(--hx-color-bg-active\)\] {
  background-color: var(--hx-color-bg-active);
}
.hx .bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.hx .bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.hx .bg-amber-50\/50 {
  background-color: rgb(255 251 235 / 0.5);
}
.hx .bg-base-100 {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity, 1)));
}
.hx .bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.hx .bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.hx .bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.hx .bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hx .bg-cyan-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-danger {
  --tw-bg-opacity: 1;
  background-color: rgb(214 50 48 / var(--tw-bg-opacity, 1));
}
.hx .bg-emerald-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.hx .bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hx .bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hx .bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.hx .bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.hx .bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.hx .bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.hx .bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.hx .bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.hx .bg-indigo-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-info {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity, 1)));
}
.hx .bg-neutral-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.hx .bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.hx .bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(0 172 240 / var(--tw-bg-opacity, 1));
}
.hx .bg-primary-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 102 150 / var(--tw-bg-opacity, 1));
}
.hx .bg-purple-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-purple-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.hx .bg-red-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.hx .bg-red-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}
.hx .bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.hx .bg-rose-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}
.hx .bg-rose-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}
.hx .bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(32 48 121 / var(--tw-bg-opacity, 1));
}
.hx .bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.hx .bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.hx .bg-slate-800\/15 {
  background-color: rgb(30 41 59 / 0.15);
}
.hx .bg-slate-900\/50 {
  background-color: rgb(15 23 42 / 0.5);
}
.hx .bg-success {
  --tw-bg-opacity: 1;
  background-color: rgb(51 202 127 / var(--tw-bg-opacity, 1));
}
.hx .bg-teal-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.hx .bg-transparent {
  background-color: transparent;
}
.hx .bg-violet-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-warning {
  --tw-bg-opacity: 1;
  background-color: rgb(243 146 55 / var(--tw-bg-opacity, 1));
}
.hx .bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hx .bg-white\/60 {
  background-color: rgb(255 255 255 / 0.6);
}
.hx .bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.hx .bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.hx .from-amber-50 {
  --tw-gradient-from: #fffbeb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 251 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hx .from-blue-50 {
  --tw-gradient-from: #eff6ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hx .from-emerald-50 {
  --tw-gradient-from: #ecfdf5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 253 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hx .from-purple-50 {
  --tw-gradient-from: #faf5ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 245 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hx .from-rose-50 {
  --tw-gradient-from: #fff1f2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 241 242 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hx .to-white {
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.hx .p-0 {
  padding: 0px;
}
.hx .p-2 {
  padding: 2px;
}
.hx .p-3 {
  padding: 4px;
}
.hx .p-4 {
  padding: 8px;
}
.hx .p-5 {
  padding: 12px;
}
.hx .p-8 {
  padding: 24px;
}
.hx .p-\[1\.5rem\] {
  padding: 1.5rem;
}
.hx .p-\[16px\] {
  padding: 16px;
}
.hx .p-\[1em\] {
  padding: 1em;
}
.hx .p-\[2px\] {
  padding: 2px;
}
.hx .p-\[3px\] {
  padding: 3px;
}
.hx .p-\[var\(--gap\)\] {
  padding: var(--gap);
}
.hx .px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.hx .px-1 {
  padding-left: 1px;
  padding-right: 1px;
}
.hx .px-2 {
  padding-left: 2px;
  padding-right: 2px;
}
.hx .px-3 {
  padding-left: 4px;
  padding-right: 4px;
}
.hx .px-4 {
  padding-left: 8px;
  padding-right: 8px;
}
.hx .px-5 {
  padding-left: 12px;
  padding-right: 12px;
}
.hx .px-6 {
  padding-left: 16px;
  padding-right: 16px;
}
.hx .px-\[\.65em\] {
  padding-left: .65em;
  padding-right: .65em;
}
.hx .px-\[0\.5em\] {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.hx .px-\[0\.75em\] {
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.hx .px-\[var\(--hx-spacing-p-x\)\] {
  padding-left: var(--hx-spacing-p-x);
  padding-right: var(--hx-spacing-p-x);
}
.hx .py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}
.hx .py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}
.hx .py-3 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.hx .py-4 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.hx .py-8 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.hx .py-\[\.7em\] {
  padding-top: .7em;
  padding-bottom: .7em;
}
.hx .py-\[0\.5em\] {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.hx .\!pb-1 {
  padding-bottom: 1px !important;
}
.hx .pb-1 {
  padding-bottom: 1px;
}
.hx .pb-2 {
  padding-bottom: 2px;
}
.hx .pb-6 {
  padding-bottom: 16px;
}
.hx .pb-\[var\(--hx-textarea-pb\)\] {
  padding-bottom: var(--hx-textarea-pb);
}
.hx .pl-5 {
  padding-left: 12px;
}
.hx .pl-\[var\(--hx-spacing-p-x\)\] {
  padding-left: var(--hx-spacing-p-x);
}
.hx .pr-\[var\(--hx-spacing-p-x\)\] {
  padding-right: var(--hx-spacing-p-x);
}
.hx .pt-2 {
  padding-top: 2px;
}
.hx .pt-3 {
  padding-top: 4px;
}
.hx .pt-6 {
  padding-top: 16px;
}
.hx .pt-\[10px\] {
  padding-top: 10px;
}
.hx .pt-\[var\(--hx-textarea-pt\)\] {
  padding-top: var(--hx-textarea-pt);
}
.hx .text-left {
  text-align: left;
}
.hx .text-center {
  text-align: center;
}
.hx .text-right {
  text-align: right;
}
.hx .text-justify {
  text-align: justify;
}
.hx .text-start {
  text-align: start;
}
.hx .text-end {
  text-align: end;
}
.hx .align-middle {
  vertical-align: middle;
}
.hx .align-text-top {
  vertical-align: text-top;
}
.hx .align-text-bottom {
  vertical-align: text-bottom;
}
.hx .font-mono {
  font-family: SF Mono, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}
.hx .text-\[0\.95em\] {
  font-size: 0.95em;
}
.hx .text-\[0\.9em\] {
  font-size: 0.9em;
}
.hx .text-\[3rem\] {
  font-size: 3rem;
}
.hx .text-body {
  font-size: clamp(1rem, 0.982rem + 0.081vw, 1.0625rem);
  line-height: 1.2;
}
.hx .text-body-large {
  font-size: clamp(1.125rem, 1.107rem + 0.081vw, 1.1875rem);
  line-height: 1.2;
}
.hx .text-h1 {
  font-size: clamp(2rem, 1.710rem + 1.290vw, 3rem);
  line-height: 1.1;
  font-weight: bold;
}
.hx .text-h2 {
  font-size: clamp(1.75rem, 1.532rem + 0.968vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
}
.hx .text-h3 {
  font-size: clamp(1.5rem, 1.355rem + 0.645vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}
.hx .text-h4 {
  font-size: clamp(1.375rem, 1.266rem + 0.484vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
}
.hx .text-h5 {
  font-size: clamp(1.25rem, 1.177rem + 0.323vw, 1.5rem);
  line-height: 1.35;
  font-weight: 600;
}
.hx .text-h6 {
  font-size: clamp(1.0625rem, 1.026rem + 0.161vw, 1.1875rem);
  line-height: 1.35;
  font-weight: 600;
}
.hx .text-large {
  font-size: clamp(2rem, 1.419rem + 2.581vw, 4rem);
  line-height: 1.1;
  font-weight: bold;
}
.hx .text-small {
  font-size: clamp(0.875rem, 0.857rem + 0.081vw, 0.9375rem);
  line-height: 1.2;
}
.hx .font-bold {
  font-weight: 700;
}
.hx .font-medium {
  font-weight: 500;
}
.hx .font-semibold {
  font-weight: 600;
}
.hx .uppercase {
  text-transform: uppercase;
}
.hx .capitalize {
  text-transform: capitalize;
}
.hx .italic {
  font-style: italic;
}
.hx .leading-\[1\.25\] {
  line-height: 1.25;
}
.hx .leading-tight {
  line-height: 1.25;
}
.hx .tracking-wide {
  letter-spacing: 0.025em;
}
.hx .tracking-wider {
  letter-spacing: 0.05em;
}
.hx .text-\[color-mix\(in_oklch\2c var\(--hx-color-fg\)_80\%\2c transparent\)\] {
  color: color-mix(in oklch,var(--hx-color-fg) 80%,transparent);
}
.hx .text-\[color-mix\(in_oklch\2c var\(--hx-color-fg\)_90\%\2c transparent\)\] {
  color: color-mix(in oklch,var(--hx-color-fg) 90%,transparent);
}
.hx .text-\[color\:var\(--hx-color-fg\)\] {
  color: var(--hx-color-fg);
}
.hx .text-\[var\(--hx-color-fg\)\] {
  color: var(--hx-color-fg);
}
.hx .text-accent {
  --tw-text-opacity: 1;
  color: rgb(0 172 240 / var(--tw-text-opacity, 1));
}
.hx .text-accent-100 {
  --tw-text-opacity: 1;
  color: rgb(235 247 255 / var(--tw-text-opacity, 1));
}
.hx .text-accent-100\/0 {
  color: rgb(235 247 255 / 0);
}
.hx .text-accent-100\/10 {
  color: rgb(235 247 255 / 0.1);
}
.hx .text-accent-100\/100 {
  color: rgb(235 247 255 / 1);
}
.hx .text-accent-100\/15 {
  color: rgb(235 247 255 / 0.15);
}
.hx .text-accent-100\/20 {
  color: rgb(235 247 255 / 0.2);
}
.hx .text-accent-100\/25 {
  color: rgb(235 247 255 / 0.25);
}
.hx .text-accent-100\/30 {
  color: rgb(235 247 255 / 0.3);
}
.hx .text-accent-100\/35 {
  color: rgb(235 247 255 / 0.35);
}
.hx .text-accent-100\/40 {
  color: rgb(235 247 255 / 0.4);
}
.hx .text-accent-100\/45 {
  color: rgb(235 247 255 / 0.45);
}
.hx .text-accent-100\/5 {
  color: rgb(235 247 255 / 0.05);
}
.hx .text-accent-100\/50 {
  color: rgb(235 247 255 / 0.5);
}
.hx .text-accent-100\/55 {
  color: rgb(235 247 255 / 0.55);
}
.hx .text-accent-100\/60 {
  color: rgb(235 247 255 / 0.6);
}
.hx .text-accent-100\/65 {
  color: rgb(235 247 255 / 0.65);
}
.hx .text-accent-100\/70 {
  color: rgb(235 247 255 / 0.7);
}
.hx .text-accent-100\/75 {
  color: rgb(235 247 255 / 0.75);
}
.hx .text-accent-100\/80 {
  color: rgb(235 247 255 / 0.8);
}
.hx .text-accent-100\/85 {
  color: rgb(235 247 255 / 0.85);
}
.hx .text-accent-100\/90 {
  color: rgb(235 247 255 / 0.9);
}
.hx .text-accent-100\/95 {
  color: rgb(235 247 255 / 0.95);
}
.hx .text-accent-200 {
  --tw-text-opacity: 1;
  color: rgb(195 237 254 / var(--tw-text-opacity, 1));
}
.hx .text-accent-200\/0 {
  color: rgb(195 237 254 / 0);
}
.hx .text-accent-200\/10 {
  color: rgb(195 237 254 / 0.1);
}
.hx .text-accent-200\/100 {
  color: rgb(195 237 254 / 1);
}
.hx .text-accent-200\/15 {
  color: rgb(195 237 254 / 0.15);
}
.hx .text-accent-200\/20 {
  color: rgb(195 237 254 / 0.2);
}
.hx .text-accent-200\/25 {
  color: rgb(195 237 254 / 0.25);
}
.hx .text-accent-200\/30 {
  color: rgb(195 237 254 / 0.3);
}
.hx .text-accent-200\/35 {
  color: rgb(195 237 254 / 0.35);
}
.hx .text-accent-200\/40 {
  color: rgb(195 237 254 / 0.4);
}
.hx .text-accent-200\/45 {
  color: rgb(195 237 254 / 0.45);
}
.hx .text-accent-200\/5 {
  color: rgb(195 237 254 / 0.05);
}
.hx .text-accent-200\/50 {
  color: rgb(195 237 254 / 0.5);
}
.hx .text-accent-200\/55 {
  color: rgb(195 237 254 / 0.55);
}
.hx .text-accent-200\/60 {
  color: rgb(195 237 254 / 0.6);
}
.hx .text-accent-200\/65 {
  color: rgb(195 237 254 / 0.65);
}
.hx .text-accent-200\/70 {
  color: rgb(195 237 254 / 0.7);
}
.hx .text-accent-200\/75 {
  color: rgb(195 237 254 / 0.75);
}
.hx .text-accent-200\/80 {
  color: rgb(195 237 254 / 0.8);
}
.hx .text-accent-200\/85 {
  color: rgb(195 237 254 / 0.85);
}
.hx .text-accent-200\/90 {
  color: rgb(195 237 254 / 0.9);
}
.hx .text-accent-200\/95 {
  color: rgb(195 237 254 / 0.95);
}
.hx .text-accent-300 {
  --tw-text-opacity: 1;
  color: rgb(130 220 252 / var(--tw-text-opacity, 1));
}
.hx .text-accent-300\/0 {
  color: rgb(130 220 252 / 0);
}
.hx .text-accent-300\/10 {
  color: rgb(130 220 252 / 0.1);
}
.hx .text-accent-300\/100 {
  color: rgb(130 220 252 / 1);
}
.hx .text-accent-300\/15 {
  color: rgb(130 220 252 / 0.15);
}
.hx .text-accent-300\/20 {
  color: rgb(130 220 252 / 0.2);
}
.hx .text-accent-300\/25 {
  color: rgb(130 220 252 / 0.25);
}
.hx .text-accent-300\/30 {
  color: rgb(130 220 252 / 0.3);
}
.hx .text-accent-300\/35 {
  color: rgb(130 220 252 / 0.35);
}
.hx .text-accent-300\/40 {
  color: rgb(130 220 252 / 0.4);
}
.hx .text-accent-300\/45 {
  color: rgb(130 220 252 / 0.45);
}
.hx .text-accent-300\/5 {
  color: rgb(130 220 252 / 0.05);
}
.hx .text-accent-300\/50 {
  color: rgb(130 220 252 / 0.5);
}
.hx .text-accent-300\/55 {
  color: rgb(130 220 252 / 0.55);
}
.hx .text-accent-300\/60 {
  color: rgb(130 220 252 / 0.6);
}
.hx .text-accent-300\/65 {
  color: rgb(130 220 252 / 0.65);
}
.hx .text-accent-300\/70 {
  color: rgb(130 220 252 / 0.7);
}
.hx .text-accent-300\/75 {
  color: rgb(130 220 252 / 0.75);
}
.hx .text-accent-300\/80 {
  color: rgb(130 220 252 / 0.8);
}
.hx .text-accent-300\/85 {
  color: rgb(130 220 252 / 0.85);
}
.hx .text-accent-300\/90 {
  color: rgb(130 220 252 / 0.9);
}
.hx .text-accent-300\/95 {
  color: rgb(130 220 252 / 0.95);
}
.hx .text-accent-400 {
  --tw-text-opacity: 1;
  color: rgb(60 203 251 / var(--tw-text-opacity, 1));
}
.hx .text-accent-400\/0 {
  color: rgb(60 203 251 / 0);
}
.hx .text-accent-400\/10 {
  color: rgb(60 203 251 / 0.1);
}
.hx .text-accent-400\/100 {
  color: rgb(60 203 251 / 1);
}
.hx .text-accent-400\/15 {
  color: rgb(60 203 251 / 0.15);
}
.hx .text-accent-400\/20 {
  color: rgb(60 203 251 / 0.2);
}
.hx .text-accent-400\/25 {
  color: rgb(60 203 251 / 0.25);
}
.hx .text-accent-400\/30 {
  color: rgb(60 203 251 / 0.3);
}
.hx .text-accent-400\/35 {
  color: rgb(60 203 251 / 0.35);
}
.hx .text-accent-400\/40 {
  color: rgb(60 203 251 / 0.4);
}
.hx .text-accent-400\/45 {
  color: rgb(60 203 251 / 0.45);
}
.hx .text-accent-400\/5 {
  color: rgb(60 203 251 / 0.05);
}
.hx .text-accent-400\/50 {
  color: rgb(60 203 251 / 0.5);
}
.hx .text-accent-400\/55 {
  color: rgb(60 203 251 / 0.55);
}
.hx .text-accent-400\/60 {
  color: rgb(60 203 251 / 0.6);
}
.hx .text-accent-400\/65 {
  color: rgb(60 203 251 / 0.65);
}
.hx .text-accent-400\/70 {
  color: rgb(60 203 251 / 0.7);
}
.hx .text-accent-400\/75 {
  color: rgb(60 203 251 / 0.75);
}
.hx .text-accent-400\/80 {
  color: rgb(60 203 251 / 0.8);
}
.hx .text-accent-400\/85 {
  color: rgb(60 203 251 / 0.85);
}
.hx .text-accent-400\/90 {
  color: rgb(60 203 251 / 0.9);
}
.hx .text-accent-400\/95 {
  color: rgb(60 203 251 / 0.95);
}
.hx .text-accent-50 {
  --tw-text-opacity: 1;
  color: rgb(250 253 255 / var(--tw-text-opacity, 1));
}
.hx .text-accent-50\/0 {
  color: rgb(250 253 255 / 0);
}
.hx .text-accent-50\/10 {
  color: rgb(250 253 255 / 0.1);
}
.hx .text-accent-50\/100 {
  color: rgb(250 253 255 / 1);
}
.hx .text-accent-50\/15 {
  color: rgb(250 253 255 / 0.15);
}
.hx .text-accent-50\/20 {
  color: rgb(250 253 255 / 0.2);
}
.hx .text-accent-50\/25 {
  color: rgb(250 253 255 / 0.25);
}
.hx .text-accent-50\/30 {
  color: rgb(250 253 255 / 0.3);
}
.hx .text-accent-50\/35 {
  color: rgb(250 253 255 / 0.35);
}
.hx .text-accent-50\/40 {
  color: rgb(250 253 255 / 0.4);
}
.hx .text-accent-50\/45 {
  color: rgb(250 253 255 / 0.45);
}
.hx .text-accent-50\/5 {
  color: rgb(250 253 255 / 0.05);
}
.hx .text-accent-50\/50 {
  color: rgb(250 253 255 / 0.5);
}
.hx .text-accent-50\/55 {
  color: rgb(250 253 255 / 0.55);
}
.hx .text-accent-50\/60 {
  color: rgb(250 253 255 / 0.6);
}
.hx .text-accent-50\/65 {
  color: rgb(250 253 255 / 0.65);
}
.hx .text-accent-50\/70 {
  color: rgb(250 253 255 / 0.7);
}
.hx .text-accent-50\/75 {
  color: rgb(250 253 255 / 0.75);
}
.hx .text-accent-50\/80 {
  color: rgb(250 253 255 / 0.8);
}
.hx .text-accent-50\/85 {
  color: rgb(250 253 255 / 0.85);
}
.hx .text-accent-50\/90 {
  color: rgb(250 253 255 / 0.9);
}
.hx .text-accent-50\/95 {
  color: rgb(250 253 255 / 0.95);
}
.hx .text-accent-500 {
  --tw-text-opacity: 1;
  color: rgb(0 172 240 / var(--tw-text-opacity, 1));
}
.hx .text-accent-500\/0 {
  color: rgb(0 172 240 / 0);
}
.hx .text-accent-500\/10 {
  color: rgb(0 172 240 / 0.1);
}
.hx .text-accent-500\/100 {
  color: rgb(0 172 240 / 1);
}
.hx .text-accent-500\/15 {
  color: rgb(0 172 240 / 0.15);
}
.hx .text-accent-500\/20 {
  color: rgb(0 172 240 / 0.2);
}
.hx .text-accent-500\/25 {
  color: rgb(0 172 240 / 0.25);
}
.hx .text-accent-500\/30 {
  color: rgb(0 172 240 / 0.3);
}
.hx .text-accent-500\/35 {
  color: rgb(0 172 240 / 0.35);
}
.hx .text-accent-500\/40 {
  color: rgb(0 172 240 / 0.4);
}
.hx .text-accent-500\/45 {
  color: rgb(0 172 240 / 0.45);
}
.hx .text-accent-500\/5 {
  color: rgb(0 172 240 / 0.05);
}
.hx .text-accent-500\/50 {
  color: rgb(0 172 240 / 0.5);
}
.hx .text-accent-500\/55 {
  color: rgb(0 172 240 / 0.55);
}
.hx .text-accent-500\/60 {
  color: rgb(0 172 240 / 0.6);
}
.hx .text-accent-500\/65 {
  color: rgb(0 172 240 / 0.65);
}
.hx .text-accent-500\/70 {
  color: rgb(0 172 240 / 0.7);
}
.hx .text-accent-500\/75 {
  color: rgb(0 172 240 / 0.75);
}
.hx .text-accent-500\/80 {
  color: rgb(0 172 240 / 0.8);
}
.hx .text-accent-500\/85 {
  color: rgb(0 172 240 / 0.85);
}
.hx .text-accent-500\/90 {
  color: rgb(0 172 240 / 0.9);
}
.hx .text-accent-500\/95 {
  color: rgb(0 172 240 / 0.95);
}
.hx .text-accent-600 {
  --tw-text-opacity: 1;
  color: rgb(0 147 223 / var(--tw-text-opacity, 1));
}
.hx .text-accent-600\/0 {
  color: rgb(0 147 223 / 0);
}
.hx .text-accent-600\/10 {
  color: rgb(0 147 223 / 0.1);
}
.hx .text-accent-600\/100 {
  color: rgb(0 147 223 / 1);
}
.hx .text-accent-600\/15 {
  color: rgb(0 147 223 / 0.15);
}
.hx .text-accent-600\/20 {
  color: rgb(0 147 223 / 0.2);
}
.hx .text-accent-600\/25 {
  color: rgb(0 147 223 / 0.25);
}
.hx .text-accent-600\/30 {
  color: rgb(0 147 223 / 0.3);
}
.hx .text-accent-600\/35 {
  color: rgb(0 147 223 / 0.35);
}
.hx .text-accent-600\/40 {
  color: rgb(0 147 223 / 0.4);
}
.hx .text-accent-600\/45 {
  color: rgb(0 147 223 / 0.45);
}
.hx .text-accent-600\/5 {
  color: rgb(0 147 223 / 0.05);
}
.hx .text-accent-600\/50 {
  color: rgb(0 147 223 / 0.5);
}
.hx .text-accent-600\/55 {
  color: rgb(0 147 223 / 0.55);
}
.hx .text-accent-600\/60 {
  color: rgb(0 147 223 / 0.6);
}
.hx .text-accent-600\/65 {
  color: rgb(0 147 223 / 0.65);
}
.hx .text-accent-600\/70 {
  color: rgb(0 147 223 / 0.7);
}
.hx .text-accent-600\/75 {
  color: rgb(0 147 223 / 0.75);
}
.hx .text-accent-600\/80 {
  color: rgb(0 147 223 / 0.8);
}
.hx .text-accent-600\/85 {
  color: rgb(0 147 223 / 0.85);
}
.hx .text-accent-600\/90 {
  color: rgb(0 147 223 / 0.9);
}
.hx .text-accent-600\/95 {
  color: rgb(0 147 223 / 0.95);
}
.hx .text-accent-700 {
  --tw-text-opacity: 1;
  color: rgb(0 120 181 / var(--tw-text-opacity, 1));
}
.hx .text-accent-700\/0 {
  color: rgb(0 120 181 / 0);
}
.hx .text-accent-700\/10 {
  color: rgb(0 120 181 / 0.1);
}
.hx .text-accent-700\/100 {
  color: rgb(0 120 181 / 1);
}
.hx .text-accent-700\/15 {
  color: rgb(0 120 181 / 0.15);
}
.hx .text-accent-700\/20 {
  color: rgb(0 120 181 / 0.2);
}
.hx .text-accent-700\/25 {
  color: rgb(0 120 181 / 0.25);
}
.hx .text-accent-700\/30 {
  color: rgb(0 120 181 / 0.3);
}
.hx .text-accent-700\/35 {
  color: rgb(0 120 181 / 0.35);
}
.hx .text-accent-700\/40 {
  color: rgb(0 120 181 / 0.4);
}
.hx .text-accent-700\/45 {
  color: rgb(0 120 181 / 0.45);
}
.hx .text-accent-700\/5 {
  color: rgb(0 120 181 / 0.05);
}
.hx .text-accent-700\/50 {
  color: rgb(0 120 181 / 0.5);
}
.hx .text-accent-700\/55 {
  color: rgb(0 120 181 / 0.55);
}
.hx .text-accent-700\/60 {
  color: rgb(0 120 181 / 0.6);
}
.hx .text-accent-700\/65 {
  color: rgb(0 120 181 / 0.65);
}
.hx .text-accent-700\/70 {
  color: rgb(0 120 181 / 0.7);
}
.hx .text-accent-700\/75 {
  color: rgb(0 120 181 / 0.75);
}
.hx .text-accent-700\/80 {
  color: rgb(0 120 181 / 0.8);
}
.hx .text-accent-700\/85 {
  color: rgb(0 120 181 / 0.85);
}
.hx .text-accent-700\/90 {
  color: rgb(0 120 181 / 0.9);
}
.hx .text-accent-700\/95 {
  color: rgb(0 120 181 / 0.95);
}
.hx .text-accent-800 {
  --tw-text-opacity: 1;
  color: rgb(0 102 150 / var(--tw-text-opacity, 1));
}
.hx .text-accent-800\/0 {
  color: rgb(0 102 150 / 0);
}
.hx .text-accent-800\/10 {
  color: rgb(0 102 150 / 0.1);
}
.hx .text-accent-800\/100 {
  color: rgb(0 102 150 / 1);
}
.hx .text-accent-800\/15 {
  color: rgb(0 102 150 / 0.15);
}
.hx .text-accent-800\/20 {
  color: rgb(0 102 150 / 0.2);
}
.hx .text-accent-800\/25 {
  color: rgb(0 102 150 / 0.25);
}
.hx .text-accent-800\/30 {
  color: rgb(0 102 150 / 0.3);
}
.hx .text-accent-800\/35 {
  color: rgb(0 102 150 / 0.35);
}
.hx .text-accent-800\/40 {
  color: rgb(0 102 150 / 0.4);
}
.hx .text-accent-800\/45 {
  color: rgb(0 102 150 / 0.45);
}
.hx .text-accent-800\/5 {
  color: rgb(0 102 150 / 0.05);
}
.hx .text-accent-800\/50 {
  color: rgb(0 102 150 / 0.5);
}
.hx .text-accent-800\/55 {
  color: rgb(0 102 150 / 0.55);
}
.hx .text-accent-800\/60 {
  color: rgb(0 102 150 / 0.6);
}
.hx .text-accent-800\/65 {
  color: rgb(0 102 150 / 0.65);
}
.hx .text-accent-800\/70 {
  color: rgb(0 102 150 / 0.7);
}
.hx .text-accent-800\/75 {
  color: rgb(0 102 150 / 0.75);
}
.hx .text-accent-800\/80 {
  color: rgb(0 102 150 / 0.8);
}
.hx .text-accent-800\/85 {
  color: rgb(0 102 150 / 0.85);
}
.hx .text-accent-800\/90 {
  color: rgb(0 102 150 / 0.9);
}
.hx .text-accent-800\/95 {
  color: rgb(0 102 150 / 0.95);
}
.hx .text-accent-900 {
  --tw-text-opacity: 1;
  color: rgb(4 84 123 / var(--tw-text-opacity, 1));
}
.hx .text-accent-900\/0 {
  color: rgb(4 84 123 / 0);
}
.hx .text-accent-900\/10 {
  color: rgb(4 84 123 / 0.1);
}
.hx .text-accent-900\/100 {
  color: rgb(4 84 123 / 1);
}
.hx .text-accent-900\/15 {
  color: rgb(4 84 123 / 0.15);
}
.hx .text-accent-900\/20 {
  color: rgb(4 84 123 / 0.2);
}
.hx .text-accent-900\/25 {
  color: rgb(4 84 123 / 0.25);
}
.hx .text-accent-900\/30 {
  color: rgb(4 84 123 / 0.3);
}
.hx .text-accent-900\/35 {
  color: rgb(4 84 123 / 0.35);
}
.hx .text-accent-900\/40 {
  color: rgb(4 84 123 / 0.4);
}
.hx .text-accent-900\/45 {
  color: rgb(4 84 123 / 0.45);
}
.hx .text-accent-900\/5 {
  color: rgb(4 84 123 / 0.05);
}
.hx .text-accent-900\/50 {
  color: rgb(4 84 123 / 0.5);
}
.hx .text-accent-900\/55 {
  color: rgb(4 84 123 / 0.55);
}
.hx .text-accent-900\/60 {
  color: rgb(4 84 123 / 0.6);
}
.hx .text-accent-900\/65 {
  color: rgb(4 84 123 / 0.65);
}
.hx .text-accent-900\/70 {
  color: rgb(4 84 123 / 0.7);
}
.hx .text-accent-900\/75 {
  color: rgb(4 84 123 / 0.75);
}
.hx .text-accent-900\/80 {
  color: rgb(4 84 123 / 0.8);
}
.hx .text-accent-900\/85 {
  color: rgb(4 84 123 / 0.85);
}
.hx .text-accent-900\/90 {
  color: rgb(4 84 123 / 0.9);
}
.hx .text-accent-900\/95 {
  color: rgb(4 84 123 / 0.95);
}
.hx .text-accent-950 {
  --tw-text-opacity: 1;
  color: rgb(3 55 84 / var(--tw-text-opacity, 1));
}
.hx .text-accent-950\/0 {
  color: rgb(3 55 84 / 0);
}
.hx .text-accent-950\/10 {
  color: rgb(3 55 84 / 0.1);
}
.hx .text-accent-950\/100 {
  color: rgb(3 55 84 / 1);
}
.hx .text-accent-950\/15 {
  color: rgb(3 55 84 / 0.15);
}
.hx .text-accent-950\/20 {
  color: rgb(3 55 84 / 0.2);
}
.hx .text-accent-950\/25 {
  color: rgb(3 55 84 / 0.25);
}
.hx .text-accent-950\/30 {
  color: rgb(3 55 84 / 0.3);
}
.hx .text-accent-950\/35 {
  color: rgb(3 55 84 / 0.35);
}
.hx .text-accent-950\/40 {
  color: rgb(3 55 84 / 0.4);
}
.hx .text-accent-950\/45 {
  color: rgb(3 55 84 / 0.45);
}
.hx .text-accent-950\/5 {
  color: rgb(3 55 84 / 0.05);
}
.hx .text-accent-950\/50 {
  color: rgb(3 55 84 / 0.5);
}
.hx .text-accent-950\/55 {
  color: rgb(3 55 84 / 0.55);
}
.hx .text-accent-950\/60 {
  color: rgb(3 55 84 / 0.6);
}
.hx .text-accent-950\/65 {
  color: rgb(3 55 84 / 0.65);
}
.hx .text-accent-950\/70 {
  color: rgb(3 55 84 / 0.7);
}
.hx .text-accent-950\/75 {
  color: rgb(3 55 84 / 0.75);
}
.hx .text-accent-950\/80 {
  color: rgb(3 55 84 / 0.8);
}
.hx .text-accent-950\/85 {
  color: rgb(3 55 84 / 0.85);
}
.hx .text-accent-950\/90 {
  color: rgb(3 55 84 / 0.9);
}
.hx .text-accent-950\/95 {
  color: rgb(3 55 84 / 0.95);
}
.hx .text-accent-content {
  --tw-text-opacity: 1;
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity, 1)));
}
.hx .text-accent-content\/0 {
  color: var(--fallback-ac,oklch(var(--ac)/0));
}
.hx .text-accent-content\/10 {
  color: var(--fallback-ac,oklch(var(--ac)/0.1));
}
.hx .text-accent-content\/100 {
  color: var(--fallback-ac,oklch(var(--ac)/1));
}
.hx .text-accent-content\/15 {
  color: var(--fallback-ac,oklch(var(--ac)/0.15));
}
.hx .text-accent-content\/20 {
  color: var(--fallback-ac,oklch(var(--ac)/0.2));
}
.hx .text-accent-content\/25 {
  color: var(--fallback-ac,oklch(var(--ac)/0.25));
}
.hx .text-accent-content\/30 {
  color: var(--fallback-ac,oklch(var(--ac)/0.3));
}
.hx .text-accent-content\/35 {
  color: var(--fallback-ac,oklch(var(--ac)/0.35));
}
.hx .text-accent-content\/40 {
  color: var(--fallback-ac,oklch(var(--ac)/0.4));
}
.hx .text-accent-content\/45 {
  color: var(--fallback-ac,oklch(var(--ac)/0.45));
}
.hx .text-accent-content\/5 {
  color: var(--fallback-ac,oklch(var(--ac)/0.05));
}
.hx .text-accent-content\/50 {
  color: var(--fallback-ac,oklch(var(--ac)/0.5));
}
.hx .text-accent-content\/55 {
  color: var(--fallback-ac,oklch(var(--ac)/0.55));
}
.hx .text-accent-content\/60 {
  color: var(--fallback-ac,oklch(var(--ac)/0.6));
}
.hx .text-accent-content\/65 {
  color: var(--fallback-ac,oklch(var(--ac)/0.65));
}
.hx .text-accent-content\/70 {
  color: var(--fallback-ac,oklch(var(--ac)/0.7));
}
.hx .text-accent-content\/75 {
  color: var(--fallback-ac,oklch(var(--ac)/0.75));
}
.hx .text-accent-content\/80 {
  color: var(--fallback-ac,oklch(var(--ac)/0.8));
}
.hx .text-accent-content\/85 {
  color: var(--fallback-ac,oklch(var(--ac)/0.85));
}
.hx .text-accent-content\/90 {
  color: var(--fallback-ac,oklch(var(--ac)/0.9));
}
.hx .text-accent-content\/95 {
  color: var(--fallback-ac,oklch(var(--ac)/0.95));
}
.hx .text-accent\/0 {
  color: rgb(0 172 240 / 0);
}
.hx .text-accent\/10 {
  color: rgb(0 172 240 / 0.1);
}
.hx .text-accent\/100 {
  color: rgb(0 172 240 / 1);
}
.hx .text-accent\/15 {
  color: rgb(0 172 240 / 0.15);
}
.hx .text-accent\/20 {
  color: rgb(0 172 240 / 0.2);
}
.hx .text-accent\/25 {
  color: rgb(0 172 240 / 0.25);
}
.hx .text-accent\/30 {
  color: rgb(0 172 240 / 0.3);
}
.hx .text-accent\/35 {
  color: rgb(0 172 240 / 0.35);
}
.hx .text-accent\/40 {
  color: rgb(0 172 240 / 0.4);
}
.hx .text-accent\/45 {
  color: rgb(0 172 240 / 0.45);
}
.hx .text-accent\/5 {
  color: rgb(0 172 240 / 0.05);
}
.hx .text-accent\/50 {
  color: rgb(0 172 240 / 0.5);
}
.hx .text-accent\/55 {
  color: rgb(0 172 240 / 0.55);
}
.hx .text-accent\/60 {
  color: rgb(0 172 240 / 0.6);
}
.hx .text-accent\/65 {
  color: rgb(0 172 240 / 0.65);
}
.hx .text-accent\/70 {
  color: rgb(0 172 240 / 0.7);
}
.hx .text-accent\/75 {
  color: rgb(0 172 240 / 0.75);
}
.hx .text-accent\/80 {
  color: rgb(0 172 240 / 0.8);
}
.hx .text-accent\/85 {
  color: rgb(0 172 240 / 0.85);
}
.hx .text-accent\/90 {
  color: rgb(0 172 240 / 0.9);
}
.hx .text-accent\/95 {
  color: rgb(0 172 240 / 0.95);
}
.hx .text-amber-100 {
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}
.hx .text-amber-100\/0 {
  color: rgb(254 243 199 / 0);
}
.hx .text-amber-100\/10 {
  color: rgb(254 243 199 / 0.1);
}
.hx .text-amber-100\/100 {
  color: rgb(254 243 199 / 1);
}
.hx .text-amber-100\/15 {
  color: rgb(254 243 199 / 0.15);
}
.hx .text-amber-100\/20 {
  color: rgb(254 243 199 / 0.2);
}
.hx .text-amber-100\/25 {
  color: rgb(254 243 199 / 0.25);
}
.hx .text-amber-100\/30 {
  color: rgb(254 243 199 / 0.3);
}
.hx .text-amber-100\/35 {
  color: rgb(254 243 199 / 0.35);
}
.hx .text-amber-100\/40 {
  color: rgb(254 243 199 / 0.4);
}
.hx .text-amber-100\/45 {
  color: rgb(254 243 199 / 0.45);
}
.hx .text-amber-100\/5 {
  color: rgb(254 243 199 / 0.05);
}
.hx .text-amber-100\/50 {
  color: rgb(254 243 199 / 0.5);
}
.hx .text-amber-100\/55 {
  color: rgb(254 243 199 / 0.55);
}
.hx .text-amber-100\/60 {
  color: rgb(254 243 199 / 0.6);
}
.hx .text-amber-100\/65 {
  color: rgb(254 243 199 / 0.65);
}
.hx .text-amber-100\/70 {
  color: rgb(254 243 199 / 0.7);
}
.hx .text-amber-100\/75 {
  color: rgb(254 243 199 / 0.75);
}
.hx .text-amber-100\/80 {
  color: rgb(254 243 199 / 0.8);
}
.hx .text-amber-100\/85 {
  color: rgb(254 243 199 / 0.85);
}
.hx .text-amber-100\/90 {
  color: rgb(254 243 199 / 0.9);
}
.hx .text-amber-100\/95 {
  color: rgb(254 243 199 / 0.95);
}
.hx .text-amber-200 {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}
.hx .text-amber-200\/0 {
  color: rgb(253 230 138 / 0);
}
.hx .text-amber-200\/10 {
  color: rgb(253 230 138 / 0.1);
}
.hx .text-amber-200\/100 {
  color: rgb(253 230 138 / 1);
}
.hx .text-amber-200\/15 {
  color: rgb(253 230 138 / 0.15);
}
.hx .text-amber-200\/20 {
  color: rgb(253 230 138 / 0.2);
}
.hx .text-amber-200\/25 {
  color: rgb(253 230 138 / 0.25);
}
.hx .text-amber-200\/30 {
  color: rgb(253 230 138 / 0.3);
}
.hx .text-amber-200\/35 {
  color: rgb(253 230 138 / 0.35);
}
.hx .text-amber-200\/40 {
  color: rgb(253 230 138 / 0.4);
}
.hx .text-amber-200\/45 {
  color: rgb(253 230 138 / 0.45);
}
.hx .text-amber-200\/5 {
  color: rgb(253 230 138 / 0.05);
}
.hx .text-amber-200\/50 {
  color: rgb(253 230 138 / 0.5);
}
.hx .text-amber-200\/55 {
  color: rgb(253 230 138 / 0.55);
}
.hx .text-amber-200\/60 {
  color: rgb(253 230 138 / 0.6);
}
.hx .text-amber-200\/65 {
  color: rgb(253 230 138 / 0.65);
}
.hx .text-amber-200\/70 {
  color: rgb(253 230 138 / 0.7);
}
.hx .text-amber-200\/75 {
  color: rgb(253 230 138 / 0.75);
}
.hx .text-amber-200\/80 {
  color: rgb(253 230 138 / 0.8);
}
.hx .text-amber-200\/85 {
  color: rgb(253 230 138 / 0.85);
}
.hx .text-amber-200\/90 {
  color: rgb(253 230 138 / 0.9);
}
.hx .text-amber-200\/95 {
  color: rgb(253 230 138 / 0.95);
}
.hx .text-amber-300 {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.hx .text-amber-300\/0 {
  color: rgb(252 211 77 / 0);
}
.hx .text-amber-300\/10 {
  color: rgb(252 211 77 / 0.1);
}
.hx .text-amber-300\/100 {
  color: rgb(252 211 77 / 1);
}
.hx .text-amber-300\/15 {
  color: rgb(252 211 77 / 0.15);
}
.hx .text-amber-300\/20 {
  color: rgb(252 211 77 / 0.2);
}
.hx .text-amber-300\/25 {
  color: rgb(252 211 77 / 0.25);
}
.hx .text-amber-300\/30 {
  color: rgb(252 211 77 / 0.3);
}
.hx .text-amber-300\/35 {
  color: rgb(252 211 77 / 0.35);
}
.hx .text-amber-300\/40 {
  color: rgb(252 211 77 / 0.4);
}
.hx .text-amber-300\/45 {
  color: rgb(252 211 77 / 0.45);
}
.hx .text-amber-300\/5 {
  color: rgb(252 211 77 / 0.05);
}
.hx .text-amber-300\/50 {
  color: rgb(252 211 77 / 0.5);
}
.hx .text-amber-300\/55 {
  color: rgb(252 211 77 / 0.55);
}
.hx .text-amber-300\/60 {
  color: rgb(252 211 77 / 0.6);
}
.hx .text-amber-300\/65 {
  color: rgb(252 211 77 / 0.65);
}
.hx .text-amber-300\/70 {
  color: rgb(252 211 77 / 0.7);
}
.hx .text-amber-300\/75 {
  color: rgb(252 211 77 / 0.75);
}
.hx .text-amber-300\/80 {
  color: rgb(252 211 77 / 0.8);
}
.hx .text-amber-300\/85 {
  color: rgb(252 211 77 / 0.85);
}
.hx .text-amber-300\/90 {
  color: rgb(252 211 77 / 0.9);
}
.hx .text-amber-300\/95 {
  color: rgb(252 211 77 / 0.95);
}
.hx .text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.hx .text-amber-400\/0 {
  color: rgb(251 191 36 / 0);
}
.hx .text-amber-400\/10 {
  color: rgb(251 191 36 / 0.1);
}
.hx .text-amber-400\/100 {
  color: rgb(251 191 36 / 1);
}
.hx .text-amber-400\/15 {
  color: rgb(251 191 36 / 0.15);
}
.hx .text-amber-400\/20 {
  color: rgb(251 191 36 / 0.2);
}
.hx .text-amber-400\/25 {
  color: rgb(251 191 36 / 0.25);
}
.hx .text-amber-400\/30 {
  color: rgb(251 191 36 / 0.3);
}
.hx .text-amber-400\/35 {
  color: rgb(251 191 36 / 0.35);
}
.hx .text-amber-400\/40 {
  color: rgb(251 191 36 / 0.4);
}
.hx .text-amber-400\/45 {
  color: rgb(251 191 36 / 0.45);
}
.hx .text-amber-400\/5 {
  color: rgb(251 191 36 / 0.05);
}
.hx .text-amber-400\/50 {
  color: rgb(251 191 36 / 0.5);
}
.hx .text-amber-400\/55 {
  color: rgb(251 191 36 / 0.55);
}
.hx .text-amber-400\/60 {
  color: rgb(251 191 36 / 0.6);
}
.hx .text-amber-400\/65 {
  color: rgb(251 191 36 / 0.65);
}
.hx .text-amber-400\/70 {
  color: rgb(251 191 36 / 0.7);
}
.hx .text-amber-400\/75 {
  color: rgb(251 191 36 / 0.75);
}
.hx .text-amber-400\/80 {
  color: rgb(251 191 36 / 0.8);
}
.hx .text-amber-400\/85 {
  color: rgb(251 191 36 / 0.85);
}
.hx .text-amber-400\/90 {
  color: rgb(251 191 36 / 0.9);
}
.hx .text-amber-400\/95 {
  color: rgb(251 191 36 / 0.95);
}
.hx .text-amber-50 {
  --tw-text-opacity: 1;
  color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}
.hx .text-amber-50\/0 {
  color: rgb(255 251 235 / 0);
}
.hx .text-amber-50\/10 {
  color: rgb(255 251 235 / 0.1);
}
.hx .text-amber-50\/100 {
  color: rgb(255 251 235 / 1);
}
.hx .text-amber-50\/15 {
  color: rgb(255 251 235 / 0.15);
}
.hx .text-amber-50\/20 {
  color: rgb(255 251 235 / 0.2);
}
.hx .text-amber-50\/25 {
  color: rgb(255 251 235 / 0.25);
}
.hx .text-amber-50\/30 {
  color: rgb(255 251 235 / 0.3);
}
.hx .text-amber-50\/35 {
  color: rgb(255 251 235 / 0.35);
}
.hx .text-amber-50\/40 {
  color: rgb(255 251 235 / 0.4);
}
.hx .text-amber-50\/45 {
  color: rgb(255 251 235 / 0.45);
}
.hx .text-amber-50\/5 {
  color: rgb(255 251 235 / 0.05);
}
.hx .text-amber-50\/50 {
  color: rgb(255 251 235 / 0.5);
}
.hx .text-amber-50\/55 {
  color: rgb(255 251 235 / 0.55);
}
.hx .text-amber-50\/60 {
  color: rgb(255 251 235 / 0.6);
}
.hx .text-amber-50\/65 {
  color: rgb(255 251 235 / 0.65);
}
.hx .text-amber-50\/70 {
  color: rgb(255 251 235 / 0.7);
}
.hx .text-amber-50\/75 {
  color: rgb(255 251 235 / 0.75);
}
.hx .text-amber-50\/80 {
  color: rgb(255 251 235 / 0.8);
}
.hx .text-amber-50\/85 {
  color: rgb(255 251 235 / 0.85);
}
.hx .text-amber-50\/90 {
  color: rgb(255 251 235 / 0.9);
}
.hx .text-amber-50\/95 {
  color: rgb(255 251 235 / 0.95);
}
.hx .text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.hx .text-amber-500\/0 {
  color: rgb(245 158 11 / 0);
}
.hx .text-amber-500\/10 {
  color: rgb(245 158 11 / 0.1);
}
.hx .text-amber-500\/100 {
  color: rgb(245 158 11 / 1);
}
.hx .text-amber-500\/15 {
  color: rgb(245 158 11 / 0.15);
}
.hx .text-amber-500\/20 {
  color: rgb(245 158 11 / 0.2);
}
.hx .text-amber-500\/25 {
  color: rgb(245 158 11 / 0.25);
}
.hx .text-amber-500\/30 {
  color: rgb(245 158 11 / 0.3);
}
.hx .text-amber-500\/35 {
  color: rgb(245 158 11 / 0.35);
}
.hx .text-amber-500\/40 {
  color: rgb(245 158 11 / 0.4);
}
.hx .text-amber-500\/45 {
  color: rgb(245 158 11 / 0.45);
}
.hx .text-amber-500\/5 {
  color: rgb(245 158 11 / 0.05);
}
.hx .text-amber-500\/50 {
  color: rgb(245 158 11 / 0.5);
}
.hx .text-amber-500\/55 {
  color: rgb(245 158 11 / 0.55);
}
.hx .text-amber-500\/60 {
  color: rgb(245 158 11 / 0.6);
}
.hx .text-amber-500\/65 {
  color: rgb(245 158 11 / 0.65);
}
.hx .text-amber-500\/70 {
  color: rgb(245 158 11 / 0.7);
}
.hx .text-amber-500\/75 {
  color: rgb(245 158 11 / 0.75);
}
.hx .text-amber-500\/80 {
  color: rgb(245 158 11 / 0.8);
}
.hx .text-amber-500\/85 {
  color: rgb(245 158 11 / 0.85);
}
.hx .text-amber-500\/90 {
  color: rgb(245 158 11 / 0.9);
}
.hx .text-amber-500\/95 {
  color: rgb(245 158 11 / 0.95);
}
.hx .text-amber-600 {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.hx .text-amber-600\/0 {
  color: rgb(217 119 6 / 0);
}
.hx .text-amber-600\/10 {
  color: rgb(217 119 6 / 0.1);
}
.hx .text-amber-600\/100 {
  color: rgb(217 119 6 / 1);
}
.hx .text-amber-600\/15 {
  color: rgb(217 119 6 / 0.15);
}
.hx .text-amber-600\/20 {
  color: rgb(217 119 6 / 0.2);
}
.hx .text-amber-600\/25 {
  color: rgb(217 119 6 / 0.25);
}
.hx .text-amber-600\/30 {
  color: rgb(217 119 6 / 0.3);
}
.hx .text-amber-600\/35 {
  color: rgb(217 119 6 / 0.35);
}
.hx .text-amber-600\/40 {
  color: rgb(217 119 6 / 0.4);
}
.hx .text-amber-600\/45 {
  color: rgb(217 119 6 / 0.45);
}
.hx .text-amber-600\/5 {
  color: rgb(217 119 6 / 0.05);
}
.hx .text-amber-600\/50 {
  color: rgb(217 119 6 / 0.5);
}
.hx .text-amber-600\/55 {
  color: rgb(217 119 6 / 0.55);
}
.hx .text-amber-600\/60 {
  color: rgb(217 119 6 / 0.6);
}
.hx .text-amber-600\/65 {
  color: rgb(217 119 6 / 0.65);
}
.hx .text-amber-600\/70 {
  color: rgb(217 119 6 / 0.7);
}
.hx .text-amber-600\/75 {
  color: rgb(217 119 6 / 0.75);
}
.hx .text-amber-600\/80 {
  color: rgb(217 119 6 / 0.8);
}
.hx .text-amber-600\/85 {
  color: rgb(217 119 6 / 0.85);
}
.hx .text-amber-600\/90 {
  color: rgb(217 119 6 / 0.9);
}
.hx .text-amber-600\/95 {
  color: rgb(217 119 6 / 0.95);
}
.hx .text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.hx .text-amber-700\/0 {
  color: rgb(180 83 9 / 0);
}
.hx .text-amber-700\/10 {
  color: rgb(180 83 9 / 0.1);
}
.hx .text-amber-700\/100 {
  color: rgb(180 83 9 / 1);
}
.hx .text-amber-700\/15 {
  color: rgb(180 83 9 / 0.15);
}
.hx .text-amber-700\/20 {
  color: rgb(180 83 9 / 0.2);
}
.hx .text-amber-700\/25 {
  color: rgb(180 83 9 / 0.25);
}
.hx .text-amber-700\/30 {
  color: rgb(180 83 9 / 0.3);
}
.hx .text-amber-700\/35 {
  color: rgb(180 83 9 / 0.35);
}
.hx .text-amber-700\/40 {
  color: rgb(180 83 9 / 0.4);
}
.hx .text-amber-700\/45 {
  color: rgb(180 83 9 / 0.45);
}
.hx .text-amber-700\/5 {
  color: rgb(180 83 9 / 0.05);
}
.hx .text-amber-700\/50 {
  color: rgb(180 83 9 / 0.5);
}
.hx .text-amber-700\/55 {
  color: rgb(180 83 9 / 0.55);
}
.hx .text-amber-700\/60 {
  color: rgb(180 83 9 / 0.6);
}
.hx .text-amber-700\/65 {
  color: rgb(180 83 9 / 0.65);
}
.hx .text-amber-700\/70 {
  color: rgb(180 83 9 / 0.7);
}
.hx .text-amber-700\/75 {
  color: rgb(180 83 9 / 0.75);
}
.hx .text-amber-700\/80 {
  color: rgb(180 83 9 / 0.8);
}
.hx .text-amber-700\/85 {
  color: rgb(180 83 9 / 0.85);
}
.hx .text-amber-700\/90 {
  color: rgb(180 83 9 / 0.9);
}
.hx .text-amber-700\/95 {
  color: rgb(180 83 9 / 0.95);
}
.hx .text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.hx .text-amber-800\/0 {
  color: rgb(146 64 14 / 0);
}
.hx .text-amber-800\/10 {
  color: rgb(146 64 14 / 0.1);
}
.hx .text-amber-800\/100 {
  color: rgb(146 64 14 / 1);
}
.hx .text-amber-800\/15 {
  color: rgb(146 64 14 / 0.15);
}
.hx .text-amber-800\/20 {
  color: rgb(146 64 14 / 0.2);
}
.hx .text-amber-800\/25 {
  color: rgb(146 64 14 / 0.25);
}
.hx .text-amber-800\/30 {
  color: rgb(146 64 14 / 0.3);
}
.hx .text-amber-800\/35 {
  color: rgb(146 64 14 / 0.35);
}
.hx .text-amber-800\/40 {
  color: rgb(146 64 14 / 0.4);
}
.hx .text-amber-800\/45 {
  color: rgb(146 64 14 / 0.45);
}
.hx .text-amber-800\/5 {
  color: rgb(146 64 14 / 0.05);
}
.hx .text-amber-800\/50 {
  color: rgb(146 64 14 / 0.5);
}
.hx .text-amber-800\/55 {
  color: rgb(146 64 14 / 0.55);
}
.hx .text-amber-800\/60 {
  color: rgb(146 64 14 / 0.6);
}
.hx .text-amber-800\/65 {
  color: rgb(146 64 14 / 0.65);
}
.hx .text-amber-800\/70 {
  color: rgb(146 64 14 / 0.7);
}
.hx .text-amber-800\/75 {
  color: rgb(146 64 14 / 0.75);
}
.hx .text-amber-800\/80 {
  color: rgb(146 64 14 / 0.8);
}
.hx .text-amber-800\/85 {
  color: rgb(146 64 14 / 0.85);
}
.hx .text-amber-800\/90 {
  color: rgb(146 64 14 / 0.9);
}
.hx .text-amber-800\/95 {
  color: rgb(146 64 14 / 0.95);
}
.hx .text-amber-900 {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.hx .text-amber-900\/0 {
  color: rgb(120 53 15 / 0);
}
.hx .text-amber-900\/10 {
  color: rgb(120 53 15 / 0.1);
}
.hx .text-amber-900\/100 {
  color: rgb(120 53 15 / 1);
}
.hx .text-amber-900\/15 {
  color: rgb(120 53 15 / 0.15);
}
.hx .text-amber-900\/20 {
  color: rgb(120 53 15 / 0.2);
}
.hx .text-amber-900\/25 {
  color: rgb(120 53 15 / 0.25);
}
.hx .text-amber-900\/30 {
  color: rgb(120 53 15 / 0.3);
}
.hx .text-amber-900\/35 {
  color: rgb(120 53 15 / 0.35);
}
.hx .text-amber-900\/40 {
  color: rgb(120 53 15 / 0.4);
}
.hx .text-amber-900\/45 {
  color: rgb(120 53 15 / 0.45);
}
.hx .text-amber-900\/5 {
  color: rgb(120 53 15 / 0.05);
}
.hx .text-amber-900\/50 {
  color: rgb(120 53 15 / 0.5);
}
.hx .text-amber-900\/55 {
  color: rgb(120 53 15 / 0.55);
}
.hx .text-amber-900\/60 {
  color: rgb(120 53 15 / 0.6);
}
.hx .text-amber-900\/65 {
  color: rgb(120 53 15 / 0.65);
}
.hx .text-amber-900\/70 {
  color: rgb(120 53 15 / 0.7);
}
.hx .text-amber-900\/75 {
  color: rgb(120 53 15 / 0.75);
}
.hx .text-amber-900\/80 {
  color: rgb(120 53 15 / 0.8);
}
.hx .text-amber-900\/85 {
  color: rgb(120 53 15 / 0.85);
}
.hx .text-amber-900\/90 {
  color: rgb(120 53 15 / 0.9);
}
.hx .text-amber-900\/95 {
  color: rgb(120 53 15 / 0.95);
}
.hx .text-amber-950 {
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.hx .text-amber-950\/0 {
  color: rgb(69 26 3 / 0);
}
.hx .text-amber-950\/10 {
  color: rgb(69 26 3 / 0.1);
}
.hx .text-amber-950\/100 {
  color: rgb(69 26 3 / 1);
}
.hx .text-amber-950\/15 {
  color: rgb(69 26 3 / 0.15);
}
.hx .text-amber-950\/20 {
  color: rgb(69 26 3 / 0.2);
}
.hx .text-amber-950\/25 {
  color: rgb(69 26 3 / 0.25);
}
.hx .text-amber-950\/30 {
  color: rgb(69 26 3 / 0.3);
}
.hx .text-amber-950\/35 {
  color: rgb(69 26 3 / 0.35);
}
.hx .text-amber-950\/40 {
  color: rgb(69 26 3 / 0.4);
}
.hx .text-amber-950\/45 {
  color: rgb(69 26 3 / 0.45);
}
.hx .text-amber-950\/5 {
  color: rgb(69 26 3 / 0.05);
}
.hx .text-amber-950\/50 {
  color: rgb(69 26 3 / 0.5);
}
.hx .text-amber-950\/55 {
  color: rgb(69 26 3 / 0.55);
}
.hx .text-amber-950\/60 {
  color: rgb(69 26 3 / 0.6);
}
.hx .text-amber-950\/65 {
  color: rgb(69 26 3 / 0.65);
}
.hx .text-amber-950\/70 {
  color: rgb(69 26 3 / 0.7);
}
.hx .text-amber-950\/75 {
  color: rgb(69 26 3 / 0.75);
}
.hx .text-amber-950\/80 {
  color: rgb(69 26 3 / 0.8);
}
.hx .text-amber-950\/85 {
  color: rgb(69 26 3 / 0.85);
}
.hx .text-amber-950\/90 {
  color: rgb(69 26 3 / 0.9);
}
.hx .text-amber-950\/95 {
  color: rgb(69 26 3 / 0.95);
}
.hx .text-base-100 {
  --tw-text-opacity: 1;
  color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity, 1)));
}
.hx .text-base-100\/0 {
  color: var(--fallback-b1,oklch(var(--b1)/0));
}
.hx .text-base-100\/10 {
  color: var(--fallback-b1,oklch(var(--b1)/0.1));
}
.hx .text-base-100\/100 {
  color: var(--fallback-b1,oklch(var(--b1)/1));
}
.hx .text-base-100\/15 {
  color: var(--fallback-b1,oklch(var(--b1)/0.15));
}
.hx .text-base-100\/20 {
  color: var(--fallback-b1,oklch(var(--b1)/0.2));
}
.hx .text-base-100\/25 {
  color: var(--fallback-b1,oklch(var(--b1)/0.25));
}
.hx .text-base-100\/30 {
  color: var(--fallback-b1,oklch(var(--b1)/0.3));
}
.hx .text-base-100\/35 {
  color: var(--fallback-b1,oklch(var(--b1)/0.35));
}
.hx .text-base-100\/40 {
  color: var(--fallback-b1,oklch(var(--b1)/0.4));
}
.hx .text-base-100\/45 {
  color: var(--fallback-b1,oklch(var(--b1)/0.45));
}
.hx .text-base-100\/5 {
  color: var(--fallback-b1,oklch(var(--b1)/0.05));
}
.hx .text-base-100\/50 {
  color: var(--fallback-b1,oklch(var(--b1)/0.5));
}
.hx .text-base-100\/55 {
  color: var(--fallback-b1,oklch(var(--b1)/0.55));
}
.hx .text-base-100\/60 {
  color: var(--fallback-b1,oklch(var(--b1)/0.6));
}
.hx .text-base-100\/65 {
  color: var(--fallback-b1,oklch(var(--b1)/0.65));
}
.hx .text-base-100\/70 {
  color: var(--fallback-b1,oklch(var(--b1)/0.7));
}
.hx .text-base-100\/75 {
  color: var(--fallback-b1,oklch(var(--b1)/0.75));
}
.hx .text-base-100\/80 {
  color: var(--fallback-b1,oklch(var(--b1)/0.8));
}
.hx .text-base-100\/85 {
  color: var(--fallback-b1,oklch(var(--b1)/0.85));
}
.hx .text-base-100\/90 {
  color: var(--fallback-b1,oklch(var(--b1)/0.9));
}
.hx .text-base-100\/95 {
  color: var(--fallback-b1,oklch(var(--b1)/0.95));
}
.hx .text-base-200 {
  --tw-text-opacity: 1;
  color: var(--fallback-b2,oklch(var(--b2)/var(--tw-text-opacity, 1)));
}
.hx .text-base-200\/0 {
  color: var(--fallback-b2,oklch(var(--b2)/0));
}
.hx .text-base-200\/10 {
  color: var(--fallback-b2,oklch(var(--b2)/0.1));
}
.hx .text-base-200\/100 {
  color: var(--fallback-b2,oklch(var(--b2)/1));
}
.hx .text-base-200\/15 {
  color: var(--fallback-b2,oklch(var(--b2)/0.15));
}
.hx .text-base-200\/20 {
  color: var(--fallback-b2,oklch(var(--b2)/0.2));
}
.hx .text-base-200\/25 {
  color: var(--fallback-b2,oklch(var(--b2)/0.25));
}
.hx .text-base-200\/30 {
  color: var(--fallback-b2,oklch(var(--b2)/0.3));
}
.hx .text-base-200\/35 {
  color: var(--fallback-b2,oklch(var(--b2)/0.35));
}
.hx .text-base-200\/40 {
  color: var(--fallback-b2,oklch(var(--b2)/0.4));
}
.hx .text-base-200\/45 {
  color: var(--fallback-b2,oklch(var(--b2)/0.45));
}
.hx .text-base-200\/5 {
  color: var(--fallback-b2,oklch(var(--b2)/0.05));
}
.hx .text-base-200\/50 {
  color: var(--fallback-b2,oklch(var(--b2)/0.5));
}
.hx .text-base-200\/55 {
  color: var(--fallback-b2,oklch(var(--b2)/0.55));
}
.hx .text-base-200\/60 {
  color: var(--fallback-b2,oklch(var(--b2)/0.6));
}
.hx .text-base-200\/65 {
  color: var(--fallback-b2,oklch(var(--b2)/0.65));
}
.hx .text-base-200\/70 {
  color: var(--fallback-b2,oklch(var(--b2)/0.7));
}
.hx .text-base-200\/75 {
  color: var(--fallback-b2,oklch(var(--b2)/0.75));
}
.hx .text-base-200\/80 {
  color: var(--fallback-b2,oklch(var(--b2)/0.8));
}
.hx .text-base-200\/85 {
  color: var(--fallback-b2,oklch(var(--b2)/0.85));
}
.hx .text-base-200\/90 {
  color: var(--fallback-b2,oklch(var(--b2)/0.9));
}
.hx .text-base-200\/95 {
  color: var(--fallback-b2,oklch(var(--b2)/0.95));
}
.hx .text-base-300 {
  --tw-text-opacity: 1;
  color: var(--fallback-b3,oklch(var(--b3)/var(--tw-text-opacity, 1)));
}
.hx .text-base-300\/0 {
  color: var(--fallback-b3,oklch(var(--b3)/0));
}
.hx .text-base-300\/10 {
  color: var(--fallback-b3,oklch(var(--b3)/0.1));
}
.hx .text-base-300\/100 {
  color: var(--fallback-b3,oklch(var(--b3)/1));
}
.hx .text-base-300\/15 {
  color: var(--fallback-b3,oklch(var(--b3)/0.15));
}
.hx .text-base-300\/20 {
  color: var(--fallback-b3,oklch(var(--b3)/0.2));
}
.hx .text-base-300\/25 {
  color: var(--fallback-b3,oklch(var(--b3)/0.25));
}
.hx .text-base-300\/30 {
  color: var(--fallback-b3,oklch(var(--b3)/0.3));
}
.hx .text-base-300\/35 {
  color: var(--fallback-b3,oklch(var(--b3)/0.35));
}
.hx .text-base-300\/40 {
  color: var(--fallback-b3,oklch(var(--b3)/0.4));
}
.hx .text-base-300\/45 {
  color: var(--fallback-b3,oklch(var(--b3)/0.45));
}
.hx .text-base-300\/5 {
  color: var(--fallback-b3,oklch(var(--b3)/0.05));
}
.hx .text-base-300\/50 {
  color: var(--fallback-b3,oklch(var(--b3)/0.5));
}
.hx .text-base-300\/55 {
  color: var(--fallback-b3,oklch(var(--b3)/0.55));
}
.hx .text-base-300\/60 {
  color: var(--fallback-b3,oklch(var(--b3)/0.6));
}
.hx .text-base-300\/65 {
  color: var(--fallback-b3,oklch(var(--b3)/0.65));
}
.hx .text-base-300\/70 {
  color: var(--fallback-b3,oklch(var(--b3)/0.7));
}
.hx .text-base-300\/75 {
  color: var(--fallback-b3,oklch(var(--b3)/0.75));
}
.hx .text-base-300\/80 {
  color: var(--fallback-b3,oklch(var(--b3)/0.8));
}
.hx .text-base-300\/85 {
  color: var(--fallback-b3,oklch(var(--b3)/0.85));
}
.hx .text-base-300\/90 {
  color: var(--fallback-b3,oklch(var(--b3)/0.9));
}
.hx .text-base-300\/95 {
  color: var(--fallback-b3,oklch(var(--b3)/0.95));
}
.hx .text-base-content {
  --tw-text-opacity: 1;
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity, 1)));
}
.hx .text-base-content\/0 {
  color: var(--fallback-bc,oklch(var(--bc)/0));
}
.hx .text-base-content\/10 {
  color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.hx .text-base-content\/100 {
  color: var(--fallback-bc,oklch(var(--bc)/1));
}
.hx .text-base-content\/15 {
  color: var(--fallback-bc,oklch(var(--bc)/0.15));
}
.hx .text-base-content\/20 {
  color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.hx .text-base-content\/25 {
  color: var(--fallback-bc,oklch(var(--bc)/0.25));
}
.hx .text-base-content\/30 {
  color: var(--fallback-bc,oklch(var(--bc)/0.3));
}
.hx .text-base-content\/35 {
  color: var(--fallback-bc,oklch(var(--bc)/0.35));
}
.hx .text-base-content\/40 {
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.hx .text-base-content\/45 {
  color: var(--fallback-bc,oklch(var(--bc)/0.45));
}
.hx .text-base-content\/5 {
  color: var(--fallback-bc,oklch(var(--bc)/0.05));
}
.hx .text-base-content\/50 {
  color: var(--fallback-bc,oklch(var(--bc)/0.5));
}
.hx .text-base-content\/55 {
  color: var(--fallback-bc,oklch(var(--bc)/0.55));
}
.hx .text-base-content\/60 {
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.hx .text-base-content\/65 {
  color: var(--fallback-bc,oklch(var(--bc)/0.65));
}
.hx .text-base-content\/70 {
  color: var(--fallback-bc,oklch(var(--bc)/0.7));
}
.hx .text-base-content\/75 {
  color: var(--fallback-bc,oklch(var(--bc)/0.75));
}
.hx .text-base-content\/80 {
  color: var(--fallback-bc,oklch(var(--bc)/0.8));
}
.hx .text-base-content\/85 {
  color: var(--fallback-bc,oklch(var(--bc)/0.85));
}
.hx .text-base-content\/90 {
  color: var(--fallback-bc,oklch(var(--bc)/0.9));
}
.hx .text-base-content\/95 {
  color: var(--fallback-bc,oklch(var(--bc)/0.95));
}
.hx .text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.hx .text-black\/0 {
  color: rgb(0 0 0 / 0);
}
.hx .text-black\/10 {
  color: rgb(0 0 0 / 0.1);
}
.hx .text-black\/100 {
  color: rgb(0 0 0 / 1);
}
.hx .text-black\/15 {
  color: rgb(0 0 0 / 0.15);
}
.hx .text-black\/20 {
  color: rgb(0 0 0 / 0.2);
}
.hx .text-black\/25 {
  color: rgb(0 0 0 / 0.25);
}
.hx .text-black\/30 {
  color: rgb(0 0 0 / 0.3);
}
.hx .text-black\/35 {
  color: rgb(0 0 0 / 0.35);
}
.hx .text-black\/40 {
  color: rgb(0 0 0 / 0.4);
}
.hx .text-black\/45 {
  color: rgb(0 0 0 / 0.45);
}
.hx .text-black\/5 {
  color: rgb(0 0 0 / 0.05);
}
.hx .text-black\/50 {
  color: rgb(0 0 0 / 0.5);
}
.hx .text-black\/55 {
  color: rgb(0 0 0 / 0.55);
}
.hx .text-black\/60 {
  color: rgb(0 0 0 / 0.6);
}
.hx .text-black\/65 {
  color: rgb(0 0 0 / 0.65);
}
.hx .text-black\/70 {
  color: rgb(0 0 0 / 0.7);
}
.hx .text-black\/75 {
  color: rgb(0 0 0 / 0.75);
}
.hx .text-black\/80 {
  color: rgb(0 0 0 / 0.8);
}
.hx .text-black\/85 {
  color: rgb(0 0 0 / 0.85);
}
.hx .text-black\/90 {
  color: rgb(0 0 0 / 0.9);
}
.hx .text-black\/95 {
  color: rgb(0 0 0 / 0.95);
}
.hx .text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.hx .text-blue-100\/0 {
  color: rgb(219 234 254 / 0);
}
.hx .text-blue-100\/10 {
  color: rgb(219 234 254 / 0.1);
}
.hx .text-blue-100\/100 {
  color: rgb(219 234 254 / 1);
}
.hx .text-blue-100\/15 {
  color: rgb(219 234 254 / 0.15);
}
.hx .text-blue-100\/20 {
  color: rgb(219 234 254 / 0.2);
}
.hx .text-blue-100\/25 {
  color: rgb(219 234 254 / 0.25);
}
.hx .text-blue-100\/30 {
  color: rgb(219 234 254 / 0.3);
}
.hx .text-blue-100\/35 {
  color: rgb(219 234 254 / 0.35);
}
.hx .text-blue-100\/40 {
  color: rgb(219 234 254 / 0.4);
}
.hx .text-blue-100\/45 {
  color: rgb(219 234 254 / 0.45);
}
.hx .text-blue-100\/5 {
  color: rgb(219 234 254 / 0.05);
}
.hx .text-blue-100\/50 {
  color: rgb(219 234 254 / 0.5);
}
.hx .text-blue-100\/55 {
  color: rgb(219 234 254 / 0.55);
}
.hx .text-blue-100\/60 {
  color: rgb(219 234 254 / 0.6);
}
.hx .text-blue-100\/65 {
  color: rgb(219 234 254 / 0.65);
}
.hx .text-blue-100\/70 {
  color: rgb(219 234 254 / 0.7);
}
.hx .text-blue-100\/75 {
  color: rgb(219 234 254 / 0.75);
}
.hx .text-blue-100\/80 {
  color: rgb(219 234 254 / 0.8);
}
.hx .text-blue-100\/85 {
  color: rgb(219 234 254 / 0.85);
}
.hx .text-blue-100\/90 {
  color: rgb(219 234 254 / 0.9);
}
.hx .text-blue-100\/95 {
  color: rgb(219 234 254 / 0.95);
}
.hx .text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.hx .text-blue-200\/0 {
  color: rgb(191 219 254 / 0);
}
.hx .text-blue-200\/10 {
  color: rgb(191 219 254 / 0.1);
}
.hx .text-blue-200\/100 {
  color: rgb(191 219 254 / 1);
}
.hx .text-blue-200\/15 {
  color: rgb(191 219 254 / 0.15);
}
.hx .text-blue-200\/20 {
  color: rgb(191 219 254 / 0.2);
}
.hx .text-blue-200\/25 {
  color: rgb(191 219 254 / 0.25);
}
.hx .text-blue-200\/30 {
  color: rgb(191 219 254 / 0.3);
}
.hx .text-blue-200\/35 {
  color: rgb(191 219 254 / 0.35);
}
.hx .text-blue-200\/40 {
  color: rgb(191 219 254 / 0.4);
}
.hx .text-blue-200\/45 {
  color: rgb(191 219 254 / 0.45);
}
.hx .text-blue-200\/5 {
  color: rgb(191 219 254 / 0.05);
}
.hx .text-blue-200\/50 {
  color: rgb(191 219 254 / 0.5);
}
.hx .text-blue-200\/55 {
  color: rgb(191 219 254 / 0.55);
}
.hx .text-blue-200\/60 {
  color: rgb(191 219 254 / 0.6);
}
.hx .text-blue-200\/65 {
  color: rgb(191 219 254 / 0.65);
}
.hx .text-blue-200\/70 {
  color: rgb(191 219 254 / 0.7);
}
.hx .text-blue-200\/75 {
  color: rgb(191 219 254 / 0.75);
}
.hx .text-blue-200\/80 {
  color: rgb(191 219 254 / 0.8);
}
.hx .text-blue-200\/85 {
  color: rgb(191 219 254 / 0.85);
}
.hx .text-blue-200\/90 {
  color: rgb(191 219 254 / 0.9);
}
.hx .text-blue-200\/95 {
  color: rgb(191 219 254 / 0.95);
}
.hx .text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.hx .text-blue-300\/0 {
  color: rgb(147 197 253 / 0);
}
.hx .text-blue-300\/10 {
  color: rgb(147 197 253 / 0.1);
}
.hx .text-blue-300\/100 {
  color: rgb(147 197 253 / 1);
}
.hx .text-blue-300\/15 {
  color: rgb(147 197 253 / 0.15);
}
.hx .text-blue-300\/20 {
  color: rgb(147 197 253 / 0.2);
}
.hx .text-blue-300\/25 {
  color: rgb(147 197 253 / 0.25);
}
.hx .text-blue-300\/30 {
  color: rgb(147 197 253 / 0.3);
}
.hx .text-blue-300\/35 {
  color: rgb(147 197 253 / 0.35);
}
.hx .text-blue-300\/40 {
  color: rgb(147 197 253 / 0.4);
}
.hx .text-blue-300\/45 {
  color: rgb(147 197 253 / 0.45);
}
.hx .text-blue-300\/5 {
  color: rgb(147 197 253 / 0.05);
}
.hx .text-blue-300\/50 {
  color: rgb(147 197 253 / 0.5);
}
.hx .text-blue-300\/55 {
  color: rgb(147 197 253 / 0.55);
}
.hx .text-blue-300\/60 {
  color: rgb(147 197 253 / 0.6);
}
.hx .text-blue-300\/65 {
  color: rgb(147 197 253 / 0.65);
}
.hx .text-blue-300\/70 {
  color: rgb(147 197 253 / 0.7);
}
.hx .text-blue-300\/75 {
  color: rgb(147 197 253 / 0.75);
}
.hx .text-blue-300\/80 {
  color: rgb(147 197 253 / 0.8);
}
.hx .text-blue-300\/85 {
  color: rgb(147 197 253 / 0.85);
}
.hx .text-blue-300\/90 {
  color: rgb(147 197 253 / 0.9);
}
.hx .text-blue-300\/95 {
  color: rgb(147 197 253 / 0.95);
}
.hx .text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.hx .text-blue-400\/0 {
  color: rgb(96 165 250 / 0);
}
.hx .text-blue-400\/10 {
  color: rgb(96 165 250 / 0.1);
}
.hx .text-blue-400\/100 {
  color: rgb(96 165 250 / 1);
}
.hx .text-blue-400\/15 {
  color: rgb(96 165 250 / 0.15);
}
.hx .text-blue-400\/20 {
  color: rgb(96 165 250 / 0.2);
}
.hx .text-blue-400\/25 {
  color: rgb(96 165 250 / 0.25);
}
.hx .text-blue-400\/30 {
  color: rgb(96 165 250 / 0.3);
}
.hx .text-blue-400\/35 {
  color: rgb(96 165 250 / 0.35);
}
.hx .text-blue-400\/40 {
  color: rgb(96 165 250 / 0.4);
}
.hx .text-blue-400\/45 {
  color: rgb(96 165 250 / 0.45);
}
.hx .text-blue-400\/5 {
  color: rgb(96 165 250 / 0.05);
}
.hx .text-blue-400\/50 {
  color: rgb(96 165 250 / 0.5);
}
.hx .text-blue-400\/55 {
  color: rgb(96 165 250 / 0.55);
}
.hx .text-blue-400\/60 {
  color: rgb(96 165 250 / 0.6);
}
.hx .text-blue-400\/65 {
  color: rgb(96 165 250 / 0.65);
}
.hx .text-blue-400\/70 {
  color: rgb(96 165 250 / 0.7);
}
.hx .text-blue-400\/75 {
  color: rgb(96 165 250 / 0.75);
}
.hx .text-blue-400\/80 {
  color: rgb(96 165 250 / 0.8);
}
.hx .text-blue-400\/85 {
  color: rgb(96 165 250 / 0.85);
}
.hx .text-blue-400\/90 {
  color: rgb(96 165 250 / 0.9);
}
.hx .text-blue-400\/95 {
  color: rgb(96 165 250 / 0.95);
}
.hx .text-blue-50 {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.hx .text-blue-50\/0 {
  color: rgb(239 246 255 / 0);
}
.hx .text-blue-50\/10 {
  color: rgb(239 246 255 / 0.1);
}
.hx .text-blue-50\/100 {
  color: rgb(239 246 255 / 1);
}
.hx .text-blue-50\/15 {
  color: rgb(239 246 255 / 0.15);
}
.hx .text-blue-50\/20 {
  color: rgb(239 246 255 / 0.2);
}
.hx .text-blue-50\/25 {
  color: rgb(239 246 255 / 0.25);
}
.hx .text-blue-50\/30 {
  color: rgb(239 246 255 / 0.3);
}
.hx .text-blue-50\/35 {
  color: rgb(239 246 255 / 0.35);
}
.hx .text-blue-50\/40 {
  color: rgb(239 246 255 / 0.4);
}
.hx .text-blue-50\/45 {
  color: rgb(239 246 255 / 0.45);
}
.hx .text-blue-50\/5 {
  color: rgb(239 246 255 / 0.05);
}
.hx .text-blue-50\/50 {
  color: rgb(239 246 255 / 0.5);
}
.hx .text-blue-50\/55 {
  color: rgb(239 246 255 / 0.55);
}
.hx .text-blue-50\/60 {
  color: rgb(239 246 255 / 0.6);
}
.hx .text-blue-50\/65 {
  color: rgb(239 246 255 / 0.65);
}
.hx .text-blue-50\/70 {
  color: rgb(239 246 255 / 0.7);
}
.hx .text-blue-50\/75 {
  color: rgb(239 246 255 / 0.75);
}
.hx .text-blue-50\/80 {
  color: rgb(239 246 255 / 0.8);
}
.hx .text-blue-50\/85 {
  color: rgb(239 246 255 / 0.85);
}
.hx .text-blue-50\/90 {
  color: rgb(239 246 255 / 0.9);
}
.hx .text-blue-50\/95 {
  color: rgb(239 246 255 / 0.95);
}
.hx .text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.hx .text-blue-500\/0 {
  color: rgb(59 130 246 / 0);
}
.hx .text-blue-500\/10 {
  color: rgb(59 130 246 / 0.1);
}
.hx .text-blue-500\/100 {
  color: rgb(59 130 246 / 1);
}
.hx .text-blue-500\/15 {
  color: rgb(59 130 246 / 0.15);
}
.hx .text-blue-500\/20 {
  color: rgb(59 130 246 / 0.2);
}
.hx .text-blue-500\/25 {
  color: rgb(59 130 246 / 0.25);
}
.hx .text-blue-500\/30 {
  color: rgb(59 130 246 / 0.3);
}
.hx .text-blue-500\/35 {
  color: rgb(59 130 246 / 0.35);
}
.hx .text-blue-500\/40 {
  color: rgb(59 130 246 / 0.4);
}
.hx .text-blue-500\/45 {
  color: rgb(59 130 246 / 0.45);
}
.hx .text-blue-500\/5 {
  color: rgb(59 130 246 / 0.05);
}
.hx .text-blue-500\/50 {
  color: rgb(59 130 246 / 0.5);
}
.hx .text-blue-500\/55 {
  color: rgb(59 130 246 / 0.55);
}
.hx .text-blue-500\/60 {
  color: rgb(59 130 246 / 0.6);
}
.hx .text-blue-500\/65 {
  color: rgb(59 130 246 / 0.65);
}
.hx .text-blue-500\/70 {
  color: rgb(59 130 246 / 0.7);
}
.hx .text-blue-500\/75 {
  color: rgb(59 130 246 / 0.75);
}
.hx .text-blue-500\/80 {
  color: rgb(59 130 246 / 0.8);
}
.hx .text-blue-500\/85 {
  color: rgb(59 130 246 / 0.85);
}
.hx .text-blue-500\/90 {
  color: rgb(59 130 246 / 0.9);
}
.hx .text-blue-500\/95 {
  color: rgb(59 130 246 / 0.95);
}
.hx .text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.hx .text-blue-600\/0 {
  color: rgb(37 99 235 / 0);
}
.hx .text-blue-600\/10 {
  color: rgb(37 99 235 / 0.1);
}
.hx .text-blue-600\/100 {
  color: rgb(37 99 235 / 1);
}
.hx .text-blue-600\/15 {
  color: rgb(37 99 235 / 0.15);
}
.hx .text-blue-600\/20 {
  color: rgb(37 99 235 / 0.2);
}
.hx .text-blue-600\/25 {
  color: rgb(37 99 235 / 0.25);
}
.hx .text-blue-600\/30 {
  color: rgb(37 99 235 / 0.3);
}
.hx .text-blue-600\/35 {
  color: rgb(37 99 235 / 0.35);
}
.hx .text-blue-600\/40 {
  color: rgb(37 99 235 / 0.4);
}
.hx .text-blue-600\/45 {
  color: rgb(37 99 235 / 0.45);
}
.hx .text-blue-600\/5 {
  color: rgb(37 99 235 / 0.05);
}
.hx .text-blue-600\/50 {
  color: rgb(37 99 235 / 0.5);
}
.hx .text-blue-600\/55 {
  color: rgb(37 99 235 / 0.55);
}
.hx .text-blue-600\/60 {
  color: rgb(37 99 235 / 0.6);
}
.hx .text-blue-600\/65 {
  color: rgb(37 99 235 / 0.65);
}
.hx .text-blue-600\/70 {
  color: rgb(37 99 235 / 0.7);
}
.hx .text-blue-600\/75 {
  color: rgb(37 99 235 / 0.75);
}
.hx .text-blue-600\/80 {
  color: rgb(37 99 235 / 0.8);
}
.hx .text-blue-600\/85 {
  color: rgb(37 99 235 / 0.85);
}
.hx .text-blue-600\/90 {
  color: rgb(37 99 235 / 0.9);
}
.hx .text-blue-600\/95 {
  color: rgb(37 99 235 / 0.95);
}
.hx .text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.hx .text-blue-700\/0 {
  color: rgb(29 78 216 / 0);
}
.hx .text-blue-700\/10 {
  color: rgb(29 78 216 / 0.1);
}
.hx .text-blue-700\/100 {
  color: rgb(29 78 216 / 1);
}
.hx .text-blue-700\/15 {
  color: rgb(29 78 216 / 0.15);
}
.hx .text-blue-700\/20 {
  color: rgb(29 78 216 / 0.2);
}
.hx .text-blue-700\/25 {
  color: rgb(29 78 216 / 0.25);
}
.hx .text-blue-700\/30 {
  color: rgb(29 78 216 / 0.3);
}
.hx .text-blue-700\/35 {
  color: rgb(29 78 216 / 0.35);
}
.hx .text-blue-700\/40 {
  color: rgb(29 78 216 / 0.4);
}
.hx .text-blue-700\/45 {
  color: rgb(29 78 216 / 0.45);
}
.hx .text-blue-700\/5 {
  color: rgb(29 78 216 / 0.05);
}
.hx .text-blue-700\/50 {
  color: rgb(29 78 216 / 0.5);
}
.hx .text-blue-700\/55 {
  color: rgb(29 78 216 / 0.55);
}
.hx .text-blue-700\/60 {
  color: rgb(29 78 216 / 0.6);
}
.hx .text-blue-700\/65 {
  color: rgb(29 78 216 / 0.65);
}
.hx .text-blue-700\/70 {
  color: rgb(29 78 216 / 0.7);
}
.hx .text-blue-700\/75 {
  color: rgb(29 78 216 / 0.75);
}
.hx .text-blue-700\/80 {
  color: rgb(29 78 216 / 0.8);
}
.hx .text-blue-700\/85 {
  color: rgb(29 78 216 / 0.85);
}
.hx .text-blue-700\/90 {
  color: rgb(29 78 216 / 0.9);
}
.hx .text-blue-700\/95 {
  color: rgb(29 78 216 / 0.95);
}
.hx .text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.hx .text-blue-800\/0 {
  color: rgb(30 64 175 / 0);
}
.hx .text-blue-800\/10 {
  color: rgb(30 64 175 / 0.1);
}
.hx .text-blue-800\/100 {
  color: rgb(30 64 175 / 1);
}
.hx .text-blue-800\/15 {
  color: rgb(30 64 175 / 0.15);
}
.hx .text-blue-800\/20 {
  color: rgb(30 64 175 / 0.2);
}
.hx .text-blue-800\/25 {
  color: rgb(30 64 175 / 0.25);
}
.hx .text-blue-800\/30 {
  color: rgb(30 64 175 / 0.3);
}
.hx .text-blue-800\/35 {
  color: rgb(30 64 175 / 0.35);
}
.hx .text-blue-800\/40 {
  color: rgb(30 64 175 / 0.4);
}
.hx .text-blue-800\/45 {
  color: rgb(30 64 175 / 0.45);
}
.hx .text-blue-800\/5 {
  color: rgb(30 64 175 / 0.05);
}
.hx .text-blue-800\/50 {
  color: rgb(30 64 175 / 0.5);
}
.hx .text-blue-800\/55 {
  color: rgb(30 64 175 / 0.55);
}
.hx .text-blue-800\/60 {
  color: rgb(30 64 175 / 0.6);
}
.hx .text-blue-800\/65 {
  color: rgb(30 64 175 / 0.65);
}
.hx .text-blue-800\/70 {
  color: rgb(30 64 175 / 0.7);
}
.hx .text-blue-800\/75 {
  color: rgb(30 64 175 / 0.75);
}
.hx .text-blue-800\/80 {
  color: rgb(30 64 175 / 0.8);
}
.hx .text-blue-800\/85 {
  color: rgb(30 64 175 / 0.85);
}
.hx .text-blue-800\/90 {
  color: rgb(30 64 175 / 0.9);
}
.hx .text-blue-800\/95 {
  color: rgb(30 64 175 / 0.95);
}
.hx .text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.hx .text-blue-900\/0 {
  color: rgb(30 58 138 / 0);
}
.hx .text-blue-900\/10 {
  color: rgb(30 58 138 / 0.1);
}
.hx .text-blue-900\/100 {
  color: rgb(30 58 138 / 1);
}
.hx .text-blue-900\/15 {
  color: rgb(30 58 138 / 0.15);
}
.hx .text-blue-900\/20 {
  color: rgb(30 58 138 / 0.2);
}
.hx .text-blue-900\/25 {
  color: rgb(30 58 138 / 0.25);
}
.hx .text-blue-900\/30 {
  color: rgb(30 58 138 / 0.3);
}
.hx .text-blue-900\/35 {
  color: rgb(30 58 138 / 0.35);
}
.hx .text-blue-900\/40 {
  color: rgb(30 58 138 / 0.4);
}
.hx .text-blue-900\/45 {
  color: rgb(30 58 138 / 0.45);
}
.hx .text-blue-900\/5 {
  color: rgb(30 58 138 / 0.05);
}
.hx .text-blue-900\/50 {
  color: rgb(30 58 138 / 0.5);
}
.hx .text-blue-900\/55 {
  color: rgb(30 58 138 / 0.55);
}
.hx .text-blue-900\/60 {
  color: rgb(30 58 138 / 0.6);
}
.hx .text-blue-900\/65 {
  color: rgb(30 58 138 / 0.65);
}
.hx .text-blue-900\/70 {
  color: rgb(30 58 138 / 0.7);
}
.hx .text-blue-900\/75 {
  color: rgb(30 58 138 / 0.75);
}
.hx .text-blue-900\/80 {
  color: rgb(30 58 138 / 0.8);
}
.hx .text-blue-900\/85 {
  color: rgb(30 58 138 / 0.85);
}
.hx .text-blue-900\/90 {
  color: rgb(30 58 138 / 0.9);
}
.hx .text-blue-900\/95 {
  color: rgb(30 58 138 / 0.95);
}
.hx .text-blue-950 {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}
.hx .text-blue-950\/0 {
  color: rgb(23 37 84 / 0);
}
.hx .text-blue-950\/10 {
  color: rgb(23 37 84 / 0.1);
}
.hx .text-blue-950\/100 {
  color: rgb(23 37 84 / 1);
}
.hx .text-blue-950\/15 {
  color: rgb(23 37 84 / 0.15);
}
.hx .text-blue-950\/20 {
  color: rgb(23 37 84 / 0.2);
}
.hx .text-blue-950\/25 {
  color: rgb(23 37 84 / 0.25);
}
.hx .text-blue-950\/30 {
  color: rgb(23 37 84 / 0.3);
}
.hx .text-blue-950\/35 {
  color: rgb(23 37 84 / 0.35);
}
.hx .text-blue-950\/40 {
  color: rgb(23 37 84 / 0.4);
}
.hx .text-blue-950\/45 {
  color: rgb(23 37 84 / 0.45);
}
.hx .text-blue-950\/5 {
  color: rgb(23 37 84 / 0.05);
}
.hx .text-blue-950\/50 {
  color: rgb(23 37 84 / 0.5);
}
.hx .text-blue-950\/55 {
  color: rgb(23 37 84 / 0.55);
}
.hx .text-blue-950\/60 {
  color: rgb(23 37 84 / 0.6);
}
.hx .text-blue-950\/65 {
  color: rgb(23 37 84 / 0.65);
}
.hx .text-blue-950\/70 {
  color: rgb(23 37 84 / 0.7);
}
.hx .text-blue-950\/75 {
  color: rgb(23 37 84 / 0.75);
}
.hx .text-blue-950\/80 {
  color: rgb(23 37 84 / 0.8);
}
.hx .text-blue-950\/85 {
  color: rgb(23 37 84 / 0.85);
}
.hx .text-blue-950\/90 {
  color: rgb(23 37 84 / 0.9);
}
.hx .text-blue-950\/95 {
  color: rgb(23 37 84 / 0.95);
}
.hx .text-current {
  color: currentColor;
}
.hx .text-cyan-100 {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-100\/0 {
  color: rgb(207 250 254 / 0);
}
.hx .text-cyan-100\/10 {
  color: rgb(207 250 254 / 0.1);
}
.hx .text-cyan-100\/100 {
  color: rgb(207 250 254 / 1);
}
.hx .text-cyan-100\/15 {
  color: rgb(207 250 254 / 0.15);
}
.hx .text-cyan-100\/20 {
  color: rgb(207 250 254 / 0.2);
}
.hx .text-cyan-100\/25 {
  color: rgb(207 250 254 / 0.25);
}
.hx .text-cyan-100\/30 {
  color: rgb(207 250 254 / 0.3);
}
.hx .text-cyan-100\/35 {
  color: rgb(207 250 254 / 0.35);
}
.hx .text-cyan-100\/40 {
  color: rgb(207 250 254 / 0.4);
}
.hx .text-cyan-100\/45 {
  color: rgb(207 250 254 / 0.45);
}
.hx .text-cyan-100\/5 {
  color: rgb(207 250 254 / 0.05);
}
.hx .text-cyan-100\/50 {
  color: rgb(207 250 254 / 0.5);
}
.hx .text-cyan-100\/55 {
  color: rgb(207 250 254 / 0.55);
}
.hx .text-cyan-100\/60 {
  color: rgb(207 250 254 / 0.6);
}
.hx .text-cyan-100\/65 {
  color: rgb(207 250 254 / 0.65);
}
.hx .text-cyan-100\/70 {
  color: rgb(207 250 254 / 0.7);
}
.hx .text-cyan-100\/75 {
  color: rgb(207 250 254 / 0.75);
}
.hx .text-cyan-100\/80 {
  color: rgb(207 250 254 / 0.8);
}
.hx .text-cyan-100\/85 {
  color: rgb(207 250 254 / 0.85);
}
.hx .text-cyan-100\/90 {
  color: rgb(207 250 254 / 0.9);
}
.hx .text-cyan-100\/95 {
  color: rgb(207 250 254 / 0.95);
}
.hx .text-cyan-200 {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-200\/0 {
  color: rgb(165 243 252 / 0);
}
.hx .text-cyan-200\/10 {
  color: rgb(165 243 252 / 0.1);
}
.hx .text-cyan-200\/100 {
  color: rgb(165 243 252 / 1);
}
.hx .text-cyan-200\/15 {
  color: rgb(165 243 252 / 0.15);
}
.hx .text-cyan-200\/20 {
  color: rgb(165 243 252 / 0.2);
}
.hx .text-cyan-200\/25 {
  color: rgb(165 243 252 / 0.25);
}
.hx .text-cyan-200\/30 {
  color: rgb(165 243 252 / 0.3);
}
.hx .text-cyan-200\/35 {
  color: rgb(165 243 252 / 0.35);
}
.hx .text-cyan-200\/40 {
  color: rgb(165 243 252 / 0.4);
}
.hx .text-cyan-200\/45 {
  color: rgb(165 243 252 / 0.45);
}
.hx .text-cyan-200\/5 {
  color: rgb(165 243 252 / 0.05);
}
.hx .text-cyan-200\/50 {
  color: rgb(165 243 252 / 0.5);
}
.hx .text-cyan-200\/55 {
  color: rgb(165 243 252 / 0.55);
}
.hx .text-cyan-200\/60 {
  color: rgb(165 243 252 / 0.6);
}
.hx .text-cyan-200\/65 {
  color: rgb(165 243 252 / 0.65);
}
.hx .text-cyan-200\/70 {
  color: rgb(165 243 252 / 0.7);
}
.hx .text-cyan-200\/75 {
  color: rgb(165 243 252 / 0.75);
}
.hx .text-cyan-200\/80 {
  color: rgb(165 243 252 / 0.8);
}
.hx .text-cyan-200\/85 {
  color: rgb(165 243 252 / 0.85);
}
.hx .text-cyan-200\/90 {
  color: rgb(165 243 252 / 0.9);
}
.hx .text-cyan-200\/95 {
  color: rgb(165 243 252 / 0.95);
}
.hx .text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-300\/0 {
  color: rgb(103 232 249 / 0);
}
.hx .text-cyan-300\/10 {
  color: rgb(103 232 249 / 0.1);
}
.hx .text-cyan-300\/100 {
  color: rgb(103 232 249 / 1);
}
.hx .text-cyan-300\/15 {
  color: rgb(103 232 249 / 0.15);
}
.hx .text-cyan-300\/20 {
  color: rgb(103 232 249 / 0.2);
}
.hx .text-cyan-300\/25 {
  color: rgb(103 232 249 / 0.25);
}
.hx .text-cyan-300\/30 {
  color: rgb(103 232 249 / 0.3);
}
.hx .text-cyan-300\/35 {
  color: rgb(103 232 249 / 0.35);
}
.hx .text-cyan-300\/40 {
  color: rgb(103 232 249 / 0.4);
}
.hx .text-cyan-300\/45 {
  color: rgb(103 232 249 / 0.45);
}
.hx .text-cyan-300\/5 {
  color: rgb(103 232 249 / 0.05);
}
.hx .text-cyan-300\/50 {
  color: rgb(103 232 249 / 0.5);
}
.hx .text-cyan-300\/55 {
  color: rgb(103 232 249 / 0.55);
}
.hx .text-cyan-300\/60 {
  color: rgb(103 232 249 / 0.6);
}
.hx .text-cyan-300\/65 {
  color: rgb(103 232 249 / 0.65);
}
.hx .text-cyan-300\/70 {
  color: rgb(103 232 249 / 0.7);
}
.hx .text-cyan-300\/75 {
  color: rgb(103 232 249 / 0.75);
}
.hx .text-cyan-300\/80 {
  color: rgb(103 232 249 / 0.8);
}
.hx .text-cyan-300\/85 {
  color: rgb(103 232 249 / 0.85);
}
.hx .text-cyan-300\/90 {
  color: rgb(103 232 249 / 0.9);
}
.hx .text-cyan-300\/95 {
  color: rgb(103 232 249 / 0.95);
}
.hx .text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-400\/0 {
  color: rgb(34 211 238 / 0);
}
.hx .text-cyan-400\/10 {
  color: rgb(34 211 238 / 0.1);
}
.hx .text-cyan-400\/100 {
  color: rgb(34 211 238 / 1);
}
.hx .text-cyan-400\/15 {
  color: rgb(34 211 238 / 0.15);
}
.hx .text-cyan-400\/20 {
  color: rgb(34 211 238 / 0.2);
}
.hx .text-cyan-400\/25 {
  color: rgb(34 211 238 / 0.25);
}
.hx .text-cyan-400\/30 {
  color: rgb(34 211 238 / 0.3);
}
.hx .text-cyan-400\/35 {
  color: rgb(34 211 238 / 0.35);
}
.hx .text-cyan-400\/40 {
  color: rgb(34 211 238 / 0.4);
}
.hx .text-cyan-400\/45 {
  color: rgb(34 211 238 / 0.45);
}
.hx .text-cyan-400\/5 {
  color: rgb(34 211 238 / 0.05);
}
.hx .text-cyan-400\/50 {
  color: rgb(34 211 238 / 0.5);
}
.hx .text-cyan-400\/55 {
  color: rgb(34 211 238 / 0.55);
}
.hx .text-cyan-400\/60 {
  color: rgb(34 211 238 / 0.6);
}
.hx .text-cyan-400\/65 {
  color: rgb(34 211 238 / 0.65);
}
.hx .text-cyan-400\/70 {
  color: rgb(34 211 238 / 0.7);
}
.hx .text-cyan-400\/75 {
  color: rgb(34 211 238 / 0.75);
}
.hx .text-cyan-400\/80 {
  color: rgb(34 211 238 / 0.8);
}
.hx .text-cyan-400\/85 {
  color: rgb(34 211 238 / 0.85);
}
.hx .text-cyan-400\/90 {
  color: rgb(34 211 238 / 0.9);
}
.hx .text-cyan-400\/95 {
  color: rgb(34 211 238 / 0.95);
}
.hx .text-cyan-50 {
  --tw-text-opacity: 1;
  color: rgb(236 254 255 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-50\/0 {
  color: rgb(236 254 255 / 0);
}
.hx .text-cyan-50\/10 {
  color: rgb(236 254 255 / 0.1);
}
.hx .text-cyan-50\/100 {
  color: rgb(236 254 255 / 1);
}
.hx .text-cyan-50\/15 {
  color: rgb(236 254 255 / 0.15);
}
.hx .text-cyan-50\/20 {
  color: rgb(236 254 255 / 0.2);
}
.hx .text-cyan-50\/25 {
  color: rgb(236 254 255 / 0.25);
}
.hx .text-cyan-50\/30 {
  color: rgb(236 254 255 / 0.3);
}
.hx .text-cyan-50\/35 {
  color: rgb(236 254 255 / 0.35);
}
.hx .text-cyan-50\/40 {
  color: rgb(236 254 255 / 0.4);
}
.hx .text-cyan-50\/45 {
  color: rgb(236 254 255 / 0.45);
}
.hx .text-cyan-50\/5 {
  color: rgb(236 254 255 / 0.05);
}
.hx .text-cyan-50\/50 {
  color: rgb(236 254 255 / 0.5);
}
.hx .text-cyan-50\/55 {
  color: rgb(236 254 255 / 0.55);
}
.hx .text-cyan-50\/60 {
  color: rgb(236 254 255 / 0.6);
}
.hx .text-cyan-50\/65 {
  color: rgb(236 254 255 / 0.65);
}
.hx .text-cyan-50\/70 {
  color: rgb(236 254 255 / 0.7);
}
.hx .text-cyan-50\/75 {
  color: rgb(236 254 255 / 0.75);
}
.hx .text-cyan-50\/80 {
  color: rgb(236 254 255 / 0.8);
}
.hx .text-cyan-50\/85 {
  color: rgb(236 254 255 / 0.85);
}
.hx .text-cyan-50\/90 {
  color: rgb(236 254 255 / 0.9);
}
.hx .text-cyan-50\/95 {
  color: rgb(236 254 255 / 0.95);
}
.hx .text-cyan-500 {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-500\/0 {
  color: rgb(6 182 212 / 0);
}
.hx .text-cyan-500\/10 {
  color: rgb(6 182 212 / 0.1);
}
.hx .text-cyan-500\/100 {
  color: rgb(6 182 212 / 1);
}
.hx .text-cyan-500\/15 {
  color: rgb(6 182 212 / 0.15);
}
.hx .text-cyan-500\/20 {
  color: rgb(6 182 212 / 0.2);
}
.hx .text-cyan-500\/25 {
  color: rgb(6 182 212 / 0.25);
}
.hx .text-cyan-500\/30 {
  color: rgb(6 182 212 / 0.3);
}
.hx .text-cyan-500\/35 {
  color: rgb(6 182 212 / 0.35);
}
.hx .text-cyan-500\/40 {
  color: rgb(6 182 212 / 0.4);
}
.hx .text-cyan-500\/45 {
  color: rgb(6 182 212 / 0.45);
}
.hx .text-cyan-500\/5 {
  color: rgb(6 182 212 / 0.05);
}
.hx .text-cyan-500\/50 {
  color: rgb(6 182 212 / 0.5);
}
.hx .text-cyan-500\/55 {
  color: rgb(6 182 212 / 0.55);
}
.hx .text-cyan-500\/60 {
  color: rgb(6 182 212 / 0.6);
}
.hx .text-cyan-500\/65 {
  color: rgb(6 182 212 / 0.65);
}
.hx .text-cyan-500\/70 {
  color: rgb(6 182 212 / 0.7);
}
.hx .text-cyan-500\/75 {
  color: rgb(6 182 212 / 0.75);
}
.hx .text-cyan-500\/80 {
  color: rgb(6 182 212 / 0.8);
}
.hx .text-cyan-500\/85 {
  color: rgb(6 182 212 / 0.85);
}
.hx .text-cyan-500\/90 {
  color: rgb(6 182 212 / 0.9);
}
.hx .text-cyan-500\/95 {
  color: rgb(6 182 212 / 0.95);
}
.hx .text-cyan-600 {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-600\/0 {
  color: rgb(8 145 178 / 0);
}
.hx .text-cyan-600\/10 {
  color: rgb(8 145 178 / 0.1);
}
.hx .text-cyan-600\/100 {
  color: rgb(8 145 178 / 1);
}
.hx .text-cyan-600\/15 {
  color: rgb(8 145 178 / 0.15);
}
.hx .text-cyan-600\/20 {
  color: rgb(8 145 178 / 0.2);
}
.hx .text-cyan-600\/25 {
  color: rgb(8 145 178 / 0.25);
}
.hx .text-cyan-600\/30 {
  color: rgb(8 145 178 / 0.3);
}
.hx .text-cyan-600\/35 {
  color: rgb(8 145 178 / 0.35);
}
.hx .text-cyan-600\/40 {
  color: rgb(8 145 178 / 0.4);
}
.hx .text-cyan-600\/45 {
  color: rgb(8 145 178 / 0.45);
}
.hx .text-cyan-600\/5 {
  color: rgb(8 145 178 / 0.05);
}
.hx .text-cyan-600\/50 {
  color: rgb(8 145 178 / 0.5);
}
.hx .text-cyan-600\/55 {
  color: rgb(8 145 178 / 0.55);
}
.hx .text-cyan-600\/60 {
  color: rgb(8 145 178 / 0.6);
}
.hx .text-cyan-600\/65 {
  color: rgb(8 145 178 / 0.65);
}
.hx .text-cyan-600\/70 {
  color: rgb(8 145 178 / 0.7);
}
.hx .text-cyan-600\/75 {
  color: rgb(8 145 178 / 0.75);
}
.hx .text-cyan-600\/80 {
  color: rgb(8 145 178 / 0.8);
}
.hx .text-cyan-600\/85 {
  color: rgb(8 145 178 / 0.85);
}
.hx .text-cyan-600\/90 {
  color: rgb(8 145 178 / 0.9);
}
.hx .text-cyan-600\/95 {
  color: rgb(8 145 178 / 0.95);
}
.hx .text-cyan-700 {
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-700\/0 {
  color: rgb(14 116 144 / 0);
}
.hx .text-cyan-700\/10 {
  color: rgb(14 116 144 / 0.1);
}
.hx .text-cyan-700\/100 {
  color: rgb(14 116 144 / 1);
}
.hx .text-cyan-700\/15 {
  color: rgb(14 116 144 / 0.15);
}
.hx .text-cyan-700\/20 {
  color: rgb(14 116 144 / 0.2);
}
.hx .text-cyan-700\/25 {
  color: rgb(14 116 144 / 0.25);
}
.hx .text-cyan-700\/30 {
  color: rgb(14 116 144 / 0.3);
}
.hx .text-cyan-700\/35 {
  color: rgb(14 116 144 / 0.35);
}
.hx .text-cyan-700\/40 {
  color: rgb(14 116 144 / 0.4);
}
.hx .text-cyan-700\/45 {
  color: rgb(14 116 144 / 0.45);
}
.hx .text-cyan-700\/5 {
  color: rgb(14 116 144 / 0.05);
}
.hx .text-cyan-700\/50 {
  color: rgb(14 116 144 / 0.5);
}
.hx .text-cyan-700\/55 {
  color: rgb(14 116 144 / 0.55);
}
.hx .text-cyan-700\/60 {
  color: rgb(14 116 144 / 0.6);
}
.hx .text-cyan-700\/65 {
  color: rgb(14 116 144 / 0.65);
}
.hx .text-cyan-700\/70 {
  color: rgb(14 116 144 / 0.7);
}
.hx .text-cyan-700\/75 {
  color: rgb(14 116 144 / 0.75);
}
.hx .text-cyan-700\/80 {
  color: rgb(14 116 144 / 0.8);
}
.hx .text-cyan-700\/85 {
  color: rgb(14 116 144 / 0.85);
}
.hx .text-cyan-700\/90 {
  color: rgb(14 116 144 / 0.9);
}
.hx .text-cyan-700\/95 {
  color: rgb(14 116 144 / 0.95);
}
.hx .text-cyan-800 {
  --tw-text-opacity: 1;
  color: rgb(21 94 117 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-800\/0 {
  color: rgb(21 94 117 / 0);
}
.hx .text-cyan-800\/10 {
  color: rgb(21 94 117 / 0.1);
}
.hx .text-cyan-800\/100 {
  color: rgb(21 94 117 / 1);
}
.hx .text-cyan-800\/15 {
  color: rgb(21 94 117 / 0.15);
}
.hx .text-cyan-800\/20 {
  color: rgb(21 94 117 / 0.2);
}
.hx .text-cyan-800\/25 {
  color: rgb(21 94 117 / 0.25);
}
.hx .text-cyan-800\/30 {
  color: rgb(21 94 117 / 0.3);
}
.hx .text-cyan-800\/35 {
  color: rgb(21 94 117 / 0.35);
}
.hx .text-cyan-800\/40 {
  color: rgb(21 94 117 / 0.4);
}
.hx .text-cyan-800\/45 {
  color: rgb(21 94 117 / 0.45);
}
.hx .text-cyan-800\/5 {
  color: rgb(21 94 117 / 0.05);
}
.hx .text-cyan-800\/50 {
  color: rgb(21 94 117 / 0.5);
}
.hx .text-cyan-800\/55 {
  color: rgb(21 94 117 / 0.55);
}
.hx .text-cyan-800\/60 {
  color: rgb(21 94 117 / 0.6);
}
.hx .text-cyan-800\/65 {
  color: rgb(21 94 117 / 0.65);
}
.hx .text-cyan-800\/70 {
  color: rgb(21 94 117 / 0.7);
}
.hx .text-cyan-800\/75 {
  color: rgb(21 94 117 / 0.75);
}
.hx .text-cyan-800\/80 {
  color: rgb(21 94 117 / 0.8);
}
.hx .text-cyan-800\/85 {
  color: rgb(21 94 117 / 0.85);
}
.hx .text-cyan-800\/90 {
  color: rgb(21 94 117 / 0.9);
}
.hx .text-cyan-800\/95 {
  color: rgb(21 94 117 / 0.95);
}
.hx .text-cyan-900 {
  --tw-text-opacity: 1;
  color: rgb(22 78 99 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-900\/0 {
  color: rgb(22 78 99 / 0);
}
.hx .text-cyan-900\/10 {
  color: rgb(22 78 99 / 0.1);
}
.hx .text-cyan-900\/100 {
  color: rgb(22 78 99 / 1);
}
.hx .text-cyan-900\/15 {
  color: rgb(22 78 99 / 0.15);
}
.hx .text-cyan-900\/20 {
  color: rgb(22 78 99 / 0.2);
}
.hx .text-cyan-900\/25 {
  color: rgb(22 78 99 / 0.25);
}
.hx .text-cyan-900\/30 {
  color: rgb(22 78 99 / 0.3);
}
.hx .text-cyan-900\/35 {
  color: rgb(22 78 99 / 0.35);
}
.hx .text-cyan-900\/40 {
  color: rgb(22 78 99 / 0.4);
}
.hx .text-cyan-900\/45 {
  color: rgb(22 78 99 / 0.45);
}
.hx .text-cyan-900\/5 {
  color: rgb(22 78 99 / 0.05);
}
.hx .text-cyan-900\/50 {
  color: rgb(22 78 99 / 0.5);
}
.hx .text-cyan-900\/55 {
  color: rgb(22 78 99 / 0.55);
}
.hx .text-cyan-900\/60 {
  color: rgb(22 78 99 / 0.6);
}
.hx .text-cyan-900\/65 {
  color: rgb(22 78 99 / 0.65);
}
.hx .text-cyan-900\/70 {
  color: rgb(22 78 99 / 0.7);
}
.hx .text-cyan-900\/75 {
  color: rgb(22 78 99 / 0.75);
}
.hx .text-cyan-900\/80 {
  color: rgb(22 78 99 / 0.8);
}
.hx .text-cyan-900\/85 {
  color: rgb(22 78 99 / 0.85);
}
.hx .text-cyan-900\/90 {
  color: rgb(22 78 99 / 0.9);
}
.hx .text-cyan-900\/95 {
  color: rgb(22 78 99 / 0.95);
}
.hx .text-cyan-950 {
  --tw-text-opacity: 1;
  color: rgb(8 51 68 / var(--tw-text-opacity, 1));
}
.hx .text-cyan-950\/0 {
  color: rgb(8 51 68 / 0);
}
.hx .text-cyan-950\/10 {
  color: rgb(8 51 68 / 0.1);
}
.hx .text-cyan-950\/100 {
  color: rgb(8 51 68 / 1);
}
.hx .text-cyan-950\/15 {
  color: rgb(8 51 68 / 0.15);
}
.hx .text-cyan-950\/20 {
  color: rgb(8 51 68 / 0.2);
}
.hx .text-cyan-950\/25 {
  color: rgb(8 51 68 / 0.25);
}
.hx .text-cyan-950\/30 {
  color: rgb(8 51 68 / 0.3);
}
.hx .text-cyan-950\/35 {
  color: rgb(8 51 68 / 0.35);
}
.hx .text-cyan-950\/40 {
  color: rgb(8 51 68 / 0.4);
}
.hx .text-cyan-950\/45 {
  color: rgb(8 51 68 / 0.45);
}
.hx .text-cyan-950\/5 {
  color: rgb(8 51 68 / 0.05);
}
.hx .text-cyan-950\/50 {
  color: rgb(8 51 68 / 0.5);
}
.hx .text-cyan-950\/55 {
  color: rgb(8 51 68 / 0.55);
}
.hx .text-cyan-950\/60 {
  color: rgb(8 51 68 / 0.6);
}
.hx .text-cyan-950\/65 {
  color: rgb(8 51 68 / 0.65);
}
.hx .text-cyan-950\/70 {
  color: rgb(8 51 68 / 0.7);
}
.hx .text-cyan-950\/75 {
  color: rgb(8 51 68 / 0.75);
}
.hx .text-cyan-950\/80 {
  color: rgb(8 51 68 / 0.8);
}
.hx .text-cyan-950\/85 {
  color: rgb(8 51 68 / 0.85);
}
.hx .text-cyan-950\/90 {
  color: rgb(8 51 68 / 0.9);
}
.hx .text-cyan-950\/95 {
  color: rgb(8 51 68 / 0.95);
}
.hx .text-danger {
  --tw-text-opacity: 1;
  color: rgb(214 50 48 / var(--tw-text-opacity, 1));
}
.hx .text-danger-100 {
  --tw-text-opacity: 1;
  color: rgb(253 227 227 / var(--tw-text-opacity, 1));
}
.hx .text-danger-100\/0 {
  color: rgb(253 227 227 / 0);
}
.hx .text-danger-100\/10 {
  color: rgb(253 227 227 / 0.1);
}
.hx .text-danger-100\/100 {
  color: rgb(253 227 227 / 1);
}
.hx .text-danger-100\/15 {
  color: rgb(253 227 227 / 0.15);
}
.hx .text-danger-100\/20 {
  color: rgb(253 227 227 / 0.2);
}
.hx .text-danger-100\/25 {
  color: rgb(253 227 227 / 0.25);
}
.hx .text-danger-100\/30 {
  color: rgb(253 227 227 / 0.3);
}
.hx .text-danger-100\/35 {
  color: rgb(253 227 227 / 0.35);
}
.hx .text-danger-100\/40 {
  color: rgb(253 227 227 / 0.4);
}
.hx .text-danger-100\/45 {
  color: rgb(253 227 227 / 0.45);
}
.hx .text-danger-100\/5 {
  color: rgb(253 227 227 / 0.05);
}
.hx .text-danger-100\/50 {
  color: rgb(253 227 227 / 0.5);
}
.hx .text-danger-100\/55 {
  color: rgb(253 227 227 / 0.55);
}
.hx .text-danger-100\/60 {
  color: rgb(253 227 227 / 0.6);
}
.hx .text-danger-100\/65 {
  color: rgb(253 227 227 / 0.65);
}
.hx .text-danger-100\/70 {
  color: rgb(253 227 227 / 0.7);
}
.hx .text-danger-100\/75 {
  color: rgb(253 227 227 / 0.75);
}
.hx .text-danger-100\/80 {
  color: rgb(253 227 227 / 0.8);
}
.hx .text-danger-100\/85 {
  color: rgb(253 227 227 / 0.85);
}
.hx .text-danger-100\/90 {
  color: rgb(253 227 227 / 0.9);
}
.hx .text-danger-100\/95 {
  color: rgb(253 227 227 / 0.95);
}
.hx .text-danger-200 {
  --tw-text-opacity: 1;
  color: rgb(252 205 204 / var(--tw-text-opacity, 1));
}
.hx .text-danger-200\/0 {
  color: rgb(252 205 204 / 0);
}
.hx .text-danger-200\/10 {
  color: rgb(252 205 204 / 0.1);
}
.hx .text-danger-200\/100 {
  color: rgb(252 205 204 / 1);
}
.hx .text-danger-200\/15 {
  color: rgb(252 205 204 / 0.15);
}
.hx .text-danger-200\/20 {
  color: rgb(252 205 204 / 0.2);
}
.hx .text-danger-200\/25 {
  color: rgb(252 205 204 / 0.25);
}
.hx .text-danger-200\/30 {
  color: rgb(252 205 204 / 0.3);
}
.hx .text-danger-200\/35 {
  color: rgb(252 205 204 / 0.35);
}
.hx .text-danger-200\/40 {
  color: rgb(252 205 204 / 0.4);
}
.hx .text-danger-200\/45 {
  color: rgb(252 205 204 / 0.45);
}
.hx .text-danger-200\/5 {
  color: rgb(252 205 204 / 0.05);
}
.hx .text-danger-200\/50 {
  color: rgb(252 205 204 / 0.5);
}
.hx .text-danger-200\/55 {
  color: rgb(252 205 204 / 0.55);
}
.hx .text-danger-200\/60 {
  color: rgb(252 205 204 / 0.6);
}
.hx .text-danger-200\/65 {
  color: rgb(252 205 204 / 0.65);
}
.hx .text-danger-200\/70 {
  color: rgb(252 205 204 / 0.7);
}
.hx .text-danger-200\/75 {
  color: rgb(252 205 204 / 0.75);
}
.hx .text-danger-200\/80 {
  color: rgb(252 205 204 / 0.8);
}
.hx .text-danger-200\/85 {
  color: rgb(252 205 204 / 0.85);
}
.hx .text-danger-200\/90 {
  color: rgb(252 205 204 / 0.9);
}
.hx .text-danger-200\/95 {
  color: rgb(252 205 204 / 0.95);
}
.hx .text-danger-300 {
  --tw-text-opacity: 1;
  color: rgb(249 169 168 / var(--tw-text-opacity, 1));
}
.hx .text-danger-300\/0 {
  color: rgb(249 169 168 / 0);
}
.hx .text-danger-300\/10 {
  color: rgb(249 169 168 / 0.1);
}
.hx .text-danger-300\/100 {
  color: rgb(249 169 168 / 1);
}
.hx .text-danger-300\/15 {
  color: rgb(249 169 168 / 0.15);
}
.hx .text-danger-300\/20 {
  color: rgb(249 169 168 / 0.2);
}
.hx .text-danger-300\/25 {
  color: rgb(249 169 168 / 0.25);
}
.hx .text-danger-300\/30 {
  color: rgb(249 169 168 / 0.3);
}
.hx .text-danger-300\/35 {
  color: rgb(249 169 168 / 0.35);
}
.hx .text-danger-300\/40 {
  color: rgb(249 169 168 / 0.4);
}
.hx .text-danger-300\/45 {
  color: rgb(249 169 168 / 0.45);
}
.hx .text-danger-300\/5 {
  color: rgb(249 169 168 / 0.05);
}
.hx .text-danger-300\/50 {
  color: rgb(249 169 168 / 0.5);
}
.hx .text-danger-300\/55 {
  color: rgb(249 169 168 / 0.55);
}
.hx .text-danger-300\/60 {
  color: rgb(249 169 168 / 0.6);
}
.hx .text-danger-300\/65 {
  color: rgb(249 169 168 / 0.65);
}
.hx .text-danger-300\/70 {
  color: rgb(249 169 168 / 0.7);
}
.hx .text-danger-300\/75 {
  color: rgb(249 169 168 / 0.75);
}
.hx .text-danger-300\/80 {
  color: rgb(249 169 168 / 0.8);
}
.hx .text-danger-300\/85 {
  color: rgb(249 169 168 / 0.85);
}
.hx .text-danger-300\/90 {
  color: rgb(249 169 168 / 0.9);
}
.hx .text-danger-300\/95 {
  color: rgb(249 169 168 / 0.95);
}
.hx .text-danger-400 {
  --tw-text-opacity: 1;
  color: rgb(243 120 118 / var(--tw-text-opacity, 1));
}
.hx .text-danger-400\/0 {
  color: rgb(243 120 118 / 0);
}
.hx .text-danger-400\/10 {
  color: rgb(243 120 118 / 0.1);
}
.hx .text-danger-400\/100 {
  color: rgb(243 120 118 / 1);
}
.hx .text-danger-400\/15 {
  color: rgb(243 120 118 / 0.15);
}
.hx .text-danger-400\/20 {
  color: rgb(243 120 118 / 0.2);
}
.hx .text-danger-400\/25 {
  color: rgb(243 120 118 / 0.25);
}
.hx .text-danger-400\/30 {
  color: rgb(243 120 118 / 0.3);
}
.hx .text-danger-400\/35 {
  color: rgb(243 120 118 / 0.35);
}
.hx .text-danger-400\/40 {
  color: rgb(243 120 118 / 0.4);
}
.hx .text-danger-400\/45 {
  color: rgb(243 120 118 / 0.45);
}
.hx .text-danger-400\/5 {
  color: rgb(243 120 118 / 0.05);
}
.hx .text-danger-400\/50 {
  color: rgb(243 120 118 / 0.5);
}
.hx .text-danger-400\/55 {
  color: rgb(243 120 118 / 0.55);
}
.hx .text-danger-400\/60 {
  color: rgb(243 120 118 / 0.6);
}
.hx .text-danger-400\/65 {
  color: rgb(243 120 118 / 0.65);
}
.hx .text-danger-400\/70 {
  color: rgb(243 120 118 / 0.7);
}
.hx .text-danger-400\/75 {
  color: rgb(243 120 118 / 0.75);
}
.hx .text-danger-400\/80 {
  color: rgb(243 120 118 / 0.8);
}
.hx .text-danger-400\/85 {
  color: rgb(243 120 118 / 0.85);
}
.hx .text-danger-400\/90 {
  color: rgb(243 120 118 / 0.9);
}
.hx .text-danger-400\/95 {
  color: rgb(243 120 118 / 0.95);
}
.hx .text-danger-50 {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.hx .text-danger-50\/0 {
  color: rgb(254 242 242 / 0);
}
.hx .text-danger-50\/10 {
  color: rgb(254 242 242 / 0.1);
}
.hx .text-danger-50\/100 {
  color: rgb(254 242 242 / 1);
}
.hx .text-danger-50\/15 {
  color: rgb(254 242 242 / 0.15);
}
.hx .text-danger-50\/20 {
  color: rgb(254 242 242 / 0.2);
}
.hx .text-danger-50\/25 {
  color: rgb(254 242 242 / 0.25);
}
.hx .text-danger-50\/30 {
  color: rgb(254 242 242 / 0.3);
}
.hx .text-danger-50\/35 {
  color: rgb(254 242 242 / 0.35);
}
.hx .text-danger-50\/40 {
  color: rgb(254 242 242 / 0.4);
}
.hx .text-danger-50\/45 {
  color: rgb(254 242 242 / 0.45);
}
.hx .text-danger-50\/5 {
  color: rgb(254 242 242 / 0.05);
}
.hx .text-danger-50\/50 {
  color: rgb(254 242 242 / 0.5);
}
.hx .text-danger-50\/55 {
  color: rgb(254 242 242 / 0.55);
}
.hx .text-danger-50\/60 {
  color: rgb(254 242 242 / 0.6);
}
.hx .text-danger-50\/65 {
  color: rgb(254 242 242 / 0.65);
}
.hx .text-danger-50\/70 {
  color: rgb(254 242 242 / 0.7);
}
.hx .text-danger-50\/75 {
  color: rgb(254 242 242 / 0.75);
}
.hx .text-danger-50\/80 {
  color: rgb(254 242 242 / 0.8);
}
.hx .text-danger-50\/85 {
  color: rgb(254 242 242 / 0.85);
}
.hx .text-danger-50\/90 {
  color: rgb(254 242 242 / 0.9);
}
.hx .text-danger-50\/95 {
  color: rgb(254 242 242 / 0.95);
}
.hx .text-danger-500 {
  --tw-text-opacity: 1;
  color: rgb(233 76 74 / var(--tw-text-opacity, 1));
}
.hx .text-danger-500\/0 {
  color: rgb(233 76 74 / 0);
}
.hx .text-danger-500\/10 {
  color: rgb(233 76 74 / 0.1);
}
.hx .text-danger-500\/100 {
  color: rgb(233 76 74 / 1);
}
.hx .text-danger-500\/15 {
  color: rgb(233 76 74 / 0.15);
}
.hx .text-danger-500\/20 {
  color: rgb(233 76 74 / 0.2);
}
.hx .text-danger-500\/25 {
  color: rgb(233 76 74 / 0.25);
}
.hx .text-danger-500\/30 {
  color: rgb(233 76 74 / 0.3);
}
.hx .text-danger-500\/35 {
  color: rgb(233 76 74 / 0.35);
}
.hx .text-danger-500\/40 {
  color: rgb(233 76 74 / 0.4);
}
.hx .text-danger-500\/45 {
  color: rgb(233 76 74 / 0.45);
}
.hx .text-danger-500\/5 {
  color: rgb(233 76 74 / 0.05);
}
.hx .text-danger-500\/50 {
  color: rgb(233 76 74 / 0.5);
}
.hx .text-danger-500\/55 {
  color: rgb(233 76 74 / 0.55);
}
.hx .text-danger-500\/60 {
  color: rgb(233 76 74 / 0.6);
}
.hx .text-danger-500\/65 {
  color: rgb(233 76 74 / 0.65);
}
.hx .text-danger-500\/70 {
  color: rgb(233 76 74 / 0.7);
}
.hx .text-danger-500\/75 {
  color: rgb(233 76 74 / 0.75);
}
.hx .text-danger-500\/80 {
  color: rgb(233 76 74 / 0.8);
}
.hx .text-danger-500\/85 {
  color: rgb(233 76 74 / 0.85);
}
.hx .text-danger-500\/90 {
  color: rgb(233 76 74 / 0.9);
}
.hx .text-danger-500\/95 {
  color: rgb(233 76 74 / 0.95);
}
.hx .text-danger-600 {
  --tw-text-opacity: 1;
  color: rgb(214 50 48 / var(--tw-text-opacity, 1));
}
.hx .text-danger-600\/0 {
  color: rgb(214 50 48 / 0);
}
.hx .text-danger-600\/10 {
  color: rgb(214 50 48 / 0.1);
}
.hx .text-danger-600\/100 {
  color: rgb(214 50 48 / 1);
}
.hx .text-danger-600\/15 {
  color: rgb(214 50 48 / 0.15);
}
.hx .text-danger-600\/20 {
  color: rgb(214 50 48 / 0.2);
}
.hx .text-danger-600\/25 {
  color: rgb(214 50 48 / 0.25);
}
.hx .text-danger-600\/30 {
  color: rgb(214 50 48 / 0.3);
}
.hx .text-danger-600\/35 {
  color: rgb(214 50 48 / 0.35);
}
.hx .text-danger-600\/40 {
  color: rgb(214 50 48 / 0.4);
}
.hx .text-danger-600\/45 {
  color: rgb(214 50 48 / 0.45);
}
.hx .text-danger-600\/5 {
  color: rgb(214 50 48 / 0.05);
}
.hx .text-danger-600\/50 {
  color: rgb(214 50 48 / 0.5);
}
.hx .text-danger-600\/55 {
  color: rgb(214 50 48 / 0.55);
}
.hx .text-danger-600\/60 {
  color: rgb(214 50 48 / 0.6);
}
.hx .text-danger-600\/65 {
  color: rgb(214 50 48 / 0.65);
}
.hx .text-danger-600\/70 {
  color: rgb(214 50 48 / 0.7);
}
.hx .text-danger-600\/75 {
  color: rgb(214 50 48 / 0.75);
}
.hx .text-danger-600\/80 {
  color: rgb(214 50 48 / 0.8);
}
.hx .text-danger-600\/85 {
  color: rgb(214 50 48 / 0.85);
}
.hx .text-danger-600\/90 {
  color: rgb(214 50 48 / 0.9);
}
.hx .text-danger-600\/95 {
  color: rgb(214 50 48 / 0.95);
}
.hx .text-danger-700 {
  --tw-text-opacity: 1;
  color: rgb(179 36 34 / var(--tw-text-opacity, 1));
}
.hx .text-danger-700\/0 {
  color: rgb(179 36 34 / 0);
}
.hx .text-danger-700\/10 {
  color: rgb(179 36 34 / 0.1);
}
.hx .text-danger-700\/100 {
  color: rgb(179 36 34 / 1);
}
.hx .text-danger-700\/15 {
  color: rgb(179 36 34 / 0.15);
}
.hx .text-danger-700\/20 {
  color: rgb(179 36 34 / 0.2);
}
.hx .text-danger-700\/25 {
  color: rgb(179 36 34 / 0.25);
}
.hx .text-danger-700\/30 {
  color: rgb(179 36 34 / 0.3);
}
.hx .text-danger-700\/35 {
  color: rgb(179 36 34 / 0.35);
}
.hx .text-danger-700\/40 {
  color: rgb(179 36 34 / 0.4);
}
.hx .text-danger-700\/45 {
  color: rgb(179 36 34 / 0.45);
}
.hx .text-danger-700\/5 {
  color: rgb(179 36 34 / 0.05);
}
.hx .text-danger-700\/50 {
  color: rgb(179 36 34 / 0.5);
}
.hx .text-danger-700\/55 {
  color: rgb(179 36 34 / 0.55);
}
.hx .text-danger-700\/60 {
  color: rgb(179 36 34 / 0.6);
}
.hx .text-danger-700\/65 {
  color: rgb(179 36 34 / 0.65);
}
.hx .text-danger-700\/70 {
  color: rgb(179 36 34 / 0.7);
}
.hx .text-danger-700\/75 {
  color: rgb(179 36 34 / 0.75);
}
.hx .text-danger-700\/80 {
  color: rgb(179 36 34 / 0.8);
}
.hx .text-danger-700\/85 {
  color: rgb(179 36 34 / 0.85);
}
.hx .text-danger-700\/90 {
  color: rgb(179 36 34 / 0.9);
}
.hx .text-danger-700\/95 {
  color: rgb(179 36 34 / 0.95);
}
.hx .text-danger-800 {
  --tw-text-opacity: 1;
  color: rgb(148 33 32 / var(--tw-text-opacity, 1));
}
.hx .text-danger-800\/0 {
  color: rgb(148 33 32 / 0);
}
.hx .text-danger-800\/10 {
  color: rgb(148 33 32 / 0.1);
}
.hx .text-danger-800\/100 {
  color: rgb(148 33 32 / 1);
}
.hx .text-danger-800\/15 {
  color: rgb(148 33 32 / 0.15);
}
.hx .text-danger-800\/20 {
  color: rgb(148 33 32 / 0.2);
}
.hx .text-danger-800\/25 {
  color: rgb(148 33 32 / 0.25);
}
.hx .text-danger-800\/30 {
  color: rgb(148 33 32 / 0.3);
}
.hx .text-danger-800\/35 {
  color: rgb(148 33 32 / 0.35);
}
.hx .text-danger-800\/40 {
  color: rgb(148 33 32 / 0.4);
}
.hx .text-danger-800\/45 {
  color: rgb(148 33 32 / 0.45);
}
.hx .text-danger-800\/5 {
  color: rgb(148 33 32 / 0.05);
}
.hx .text-danger-800\/50 {
  color: rgb(148 33 32 / 0.5);
}
.hx .text-danger-800\/55 {
  color: rgb(148 33 32 / 0.55);
}
.hx .text-danger-800\/60 {
  color: rgb(148 33 32 / 0.6);
}
.hx .text-danger-800\/65 {
  color: rgb(148 33 32 / 0.65);
}
.hx .text-danger-800\/70 {
  color: rgb(148 33 32 / 0.7);
}
.hx .text-danger-800\/75 {
  color: rgb(148 33 32 / 0.75);
}
.hx .text-danger-800\/80 {
  color: rgb(148 33 32 / 0.8);
}
.hx .text-danger-800\/85 {
  color: rgb(148 33 32 / 0.85);
}
.hx .text-danger-800\/90 {
  color: rgb(148 33 32 / 0.9);
}
.hx .text-danger-800\/95 {
  color: rgb(148 33 32 / 0.95);
}
.hx .text-danger-900 {
  --tw-text-opacity: 1;
  color: rgb(123 34 33 / var(--tw-text-opacity, 1));
}
.hx .text-danger-900\/0 {
  color: rgb(123 34 33 / 0);
}
.hx .text-danger-900\/10 {
  color: rgb(123 34 33 / 0.1);
}
.hx .text-danger-900\/100 {
  color: rgb(123 34 33 / 1);
}
.hx .text-danger-900\/15 {
  color: rgb(123 34 33 / 0.15);
}
.hx .text-danger-900\/20 {
  color: rgb(123 34 33 / 0.2);
}
.hx .text-danger-900\/25 {
  color: rgb(123 34 33 / 0.25);
}
.hx .text-danger-900\/30 {
  color: rgb(123 34 33 / 0.3);
}
.hx .text-danger-900\/35 {
  color: rgb(123 34 33 / 0.35);
}
.hx .text-danger-900\/40 {
  color: rgb(123 34 33 / 0.4);
}
.hx .text-danger-900\/45 {
  color: rgb(123 34 33 / 0.45);
}
.hx .text-danger-900\/5 {
  color: rgb(123 34 33 / 0.05);
}
.hx .text-danger-900\/50 {
  color: rgb(123 34 33 / 0.5);
}
.hx .text-danger-900\/55 {
  color: rgb(123 34 33 / 0.55);
}
.hx .text-danger-900\/60 {
  color: rgb(123 34 33 / 0.6);
}
.hx .text-danger-900\/65 {
  color: rgb(123 34 33 / 0.65);
}
.hx .text-danger-900\/70 {
  color: rgb(123 34 33 / 0.7);
}
.hx .text-danger-900\/75 {
  color: rgb(123 34 33 / 0.75);
}
.hx .text-danger-900\/80 {
  color: rgb(123 34 33 / 0.8);
}
.hx .text-danger-900\/85 {
  color: rgb(123 34 33 / 0.85);
}
.hx .text-danger-900\/90 {
  color: rgb(123 34 33 / 0.9);
}
.hx .text-danger-900\/95 {
  color: rgb(123 34 33 / 0.95);
}
.hx .text-danger-950 {
  --tw-text-opacity: 1;
  color: rgb(67 13 12 / var(--tw-text-opacity, 1));
}
.hx .text-danger-950\/0 {
  color: rgb(67 13 12 / 0);
}
.hx .text-danger-950\/10 {
  color: rgb(67 13 12 / 0.1);
}
.hx .text-danger-950\/100 {
  color: rgb(67 13 12 / 1);
}
.hx .text-danger-950\/15 {
  color: rgb(67 13 12 / 0.15);
}
.hx .text-danger-950\/20 {
  color: rgb(67 13 12 / 0.2);
}
.hx .text-danger-950\/25 {
  color: rgb(67 13 12 / 0.25);
}
.hx .text-danger-950\/30 {
  color: rgb(67 13 12 / 0.3);
}
.hx .text-danger-950\/35 {
  color: rgb(67 13 12 / 0.35);
}
.hx .text-danger-950\/40 {
  color: rgb(67 13 12 / 0.4);
}
.hx .text-danger-950\/45 {
  color: rgb(67 13 12 / 0.45);
}
.hx .text-danger-950\/5 {
  color: rgb(67 13 12 / 0.05);
}
.hx .text-danger-950\/50 {
  color: rgb(67 13 12 / 0.5);
}
.hx .text-danger-950\/55 {
  color: rgb(67 13 12 / 0.55);
}
.hx .text-danger-950\/60 {
  color: rgb(67 13 12 / 0.6);
}
.hx .text-danger-950\/65 {
  color: rgb(67 13 12 / 0.65);
}
.hx .text-danger-950\/70 {
  color: rgb(67 13 12 / 0.7);
}
.hx .text-danger-950\/75 {
  color: rgb(67 13 12 / 0.75);
}
.hx .text-danger-950\/80 {
  color: rgb(67 13 12 / 0.8);
}
.hx .text-danger-950\/85 {
  color: rgb(67 13 12 / 0.85);
}
.hx .text-danger-950\/90 {
  color: rgb(67 13 12 / 0.9);
}
.hx .text-danger-950\/95 {
  color: rgb(67 13 12 / 0.95);
}
.hx .text-danger\/0 {
  color: rgb(214 50 48 / 0);
}
.hx .text-danger\/10 {
  color: rgb(214 50 48 / 0.1);
}
.hx .text-danger\/100 {
  color: rgb(214 50 48 / 1);
}
.hx .text-danger\/15 {
  color: rgb(214 50 48 / 0.15);
}
.hx .text-danger\/20 {
  color: rgb(214 50 48 / 0.2);
}
.hx .text-danger\/25 {
  color: rgb(214 50 48 / 0.25);
}
.hx .text-danger\/30 {
  color: rgb(214 50 48 / 0.3);
}
.hx .text-danger\/35 {
  color: rgb(214 50 48 / 0.35);
}
.hx .text-danger\/40 {
  color: rgb(214 50 48 / 0.4);
}
.hx .text-danger\/45 {
  color: rgb(214 50 48 / 0.45);
}
.hx .text-danger\/5 {
  color: rgb(214 50 48 / 0.05);
}
.hx .text-danger\/50 {
  color: rgb(214 50 48 / 0.5);
}
.hx .text-danger\/55 {
  color: rgb(214 50 48 / 0.55);
}
.hx .text-danger\/60 {
  color: rgb(214 50 48 / 0.6);
}
.hx .text-danger\/65 {
  color: rgb(214 50 48 / 0.65);
}
.hx .text-danger\/70 {
  color: rgb(214 50 48 / 0.7);
}
.hx .text-danger\/75 {
  color: rgb(214 50 48 / 0.75);
}
.hx .text-danger\/80 {
  color: rgb(214 50 48 / 0.8);
}
.hx .text-danger\/85 {
  color: rgb(214 50 48 / 0.85);
}
.hx .text-danger\/90 {
  color: rgb(214 50 48 / 0.9);
}
.hx .text-danger\/95 {
  color: rgb(214 50 48 / 0.95);
}
.hx .text-emerald-100 {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-100\/0 {
  color: rgb(209 250 229 / 0);
}
.hx .text-emerald-100\/10 {
  color: rgb(209 250 229 / 0.1);
}
.hx .text-emerald-100\/100 {
  color: rgb(209 250 229 / 1);
}
.hx .text-emerald-100\/15 {
  color: rgb(209 250 229 / 0.15);
}
.hx .text-emerald-100\/20 {
  color: rgb(209 250 229 / 0.2);
}
.hx .text-emerald-100\/25 {
  color: rgb(209 250 229 / 0.25);
}
.hx .text-emerald-100\/30 {
  color: rgb(209 250 229 / 0.3);
}
.hx .text-emerald-100\/35 {
  color: rgb(209 250 229 / 0.35);
}
.hx .text-emerald-100\/40 {
  color: rgb(209 250 229 / 0.4);
}
.hx .text-emerald-100\/45 {
  color: rgb(209 250 229 / 0.45);
}
.hx .text-emerald-100\/5 {
  color: rgb(209 250 229 / 0.05);
}
.hx .text-emerald-100\/50 {
  color: rgb(209 250 229 / 0.5);
}
.hx .text-emerald-100\/55 {
  color: rgb(209 250 229 / 0.55);
}
.hx .text-emerald-100\/60 {
  color: rgb(209 250 229 / 0.6);
}
.hx .text-emerald-100\/65 {
  color: rgb(209 250 229 / 0.65);
}
.hx .text-emerald-100\/70 {
  color: rgb(209 250 229 / 0.7);
}
.hx .text-emerald-100\/75 {
  color: rgb(209 250 229 / 0.75);
}
.hx .text-emerald-100\/80 {
  color: rgb(209 250 229 / 0.8);
}
.hx .text-emerald-100\/85 {
  color: rgb(209 250 229 / 0.85);
}
.hx .text-emerald-100\/90 {
  color: rgb(209 250 229 / 0.9);
}
.hx .text-emerald-100\/95 {
  color: rgb(209 250 229 / 0.95);
}
.hx .text-emerald-200 {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-200\/0 {
  color: rgb(167 243 208 / 0);
}
.hx .text-emerald-200\/10 {
  color: rgb(167 243 208 / 0.1);
}
.hx .text-emerald-200\/100 {
  color: rgb(167 243 208 / 1);
}
.hx .text-emerald-200\/15 {
  color: rgb(167 243 208 / 0.15);
}
.hx .text-emerald-200\/20 {
  color: rgb(167 243 208 / 0.2);
}
.hx .text-emerald-200\/25 {
  color: rgb(167 243 208 / 0.25);
}
.hx .text-emerald-200\/30 {
  color: rgb(167 243 208 / 0.3);
}
.hx .text-emerald-200\/35 {
  color: rgb(167 243 208 / 0.35);
}
.hx .text-emerald-200\/40 {
  color: rgb(167 243 208 / 0.4);
}
.hx .text-emerald-200\/45 {
  color: rgb(167 243 208 / 0.45);
}
.hx .text-emerald-200\/5 {
  color: rgb(167 243 208 / 0.05);
}
.hx .text-emerald-200\/50 {
  color: rgb(167 243 208 / 0.5);
}
.hx .text-emerald-200\/55 {
  color: rgb(167 243 208 / 0.55);
}
.hx .text-emerald-200\/60 {
  color: rgb(167 243 208 / 0.6);
}
.hx .text-emerald-200\/65 {
  color: rgb(167 243 208 / 0.65);
}
.hx .text-emerald-200\/70 {
  color: rgb(167 243 208 / 0.7);
}
.hx .text-emerald-200\/75 {
  color: rgb(167 243 208 / 0.75);
}
.hx .text-emerald-200\/80 {
  color: rgb(167 243 208 / 0.8);
}
.hx .text-emerald-200\/85 {
  color: rgb(167 243 208 / 0.85);
}
.hx .text-emerald-200\/90 {
  color: rgb(167 243 208 / 0.9);
}
.hx .text-emerald-200\/95 {
  color: rgb(167 243 208 / 0.95);
}
.hx .text-emerald-300 {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-300\/0 {
  color: rgb(110 231 183 / 0);
}
.hx .text-emerald-300\/10 {
  color: rgb(110 231 183 / 0.1);
}
.hx .text-emerald-300\/100 {
  color: rgb(110 231 183 / 1);
}
.hx .text-emerald-300\/15 {
  color: rgb(110 231 183 / 0.15);
}
.hx .text-emerald-300\/20 {
  color: rgb(110 231 183 / 0.2);
}
.hx .text-emerald-300\/25 {
  color: rgb(110 231 183 / 0.25);
}
.hx .text-emerald-300\/30 {
  color: rgb(110 231 183 / 0.3);
}
.hx .text-emerald-300\/35 {
  color: rgb(110 231 183 / 0.35);
}
.hx .text-emerald-300\/40 {
  color: rgb(110 231 183 / 0.4);
}
.hx .text-emerald-300\/45 {
  color: rgb(110 231 183 / 0.45);
}
.hx .text-emerald-300\/5 {
  color: rgb(110 231 183 / 0.05);
}
.hx .text-emerald-300\/50 {
  color: rgb(110 231 183 / 0.5);
}
.hx .text-emerald-300\/55 {
  color: rgb(110 231 183 / 0.55);
}
.hx .text-emerald-300\/60 {
  color: rgb(110 231 183 / 0.6);
}
.hx .text-emerald-300\/65 {
  color: rgb(110 231 183 / 0.65);
}
.hx .text-emerald-300\/70 {
  color: rgb(110 231 183 / 0.7);
}
.hx .text-emerald-300\/75 {
  color: rgb(110 231 183 / 0.75);
}
.hx .text-emerald-300\/80 {
  color: rgb(110 231 183 / 0.8);
}
.hx .text-emerald-300\/85 {
  color: rgb(110 231 183 / 0.85);
}
.hx .text-emerald-300\/90 {
  color: rgb(110 231 183 / 0.9);
}
.hx .text-emerald-300\/95 {
  color: rgb(110 231 183 / 0.95);
}
.hx .text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-400\/0 {
  color: rgb(52 211 153 / 0);
}
.hx .text-emerald-400\/10 {
  color: rgb(52 211 153 / 0.1);
}
.hx .text-emerald-400\/100 {
  color: rgb(52 211 153 / 1);
}
.hx .text-emerald-400\/15 {
  color: rgb(52 211 153 / 0.15);
}
.hx .text-emerald-400\/20 {
  color: rgb(52 211 153 / 0.2);
}
.hx .text-emerald-400\/25 {
  color: rgb(52 211 153 / 0.25);
}
.hx .text-emerald-400\/30 {
  color: rgb(52 211 153 / 0.3);
}
.hx .text-emerald-400\/35 {
  color: rgb(52 211 153 / 0.35);
}
.hx .text-emerald-400\/40 {
  color: rgb(52 211 153 / 0.4);
}
.hx .text-emerald-400\/45 {
  color: rgb(52 211 153 / 0.45);
}
.hx .text-emerald-400\/5 {
  color: rgb(52 211 153 / 0.05);
}
.hx .text-emerald-400\/50 {
  color: rgb(52 211 153 / 0.5);
}
.hx .text-emerald-400\/55 {
  color: rgb(52 211 153 / 0.55);
}
.hx .text-emerald-400\/60 {
  color: rgb(52 211 153 / 0.6);
}
.hx .text-emerald-400\/65 {
  color: rgb(52 211 153 / 0.65);
}
.hx .text-emerald-400\/70 {
  color: rgb(52 211 153 / 0.7);
}
.hx .text-emerald-400\/75 {
  color: rgb(52 211 153 / 0.75);
}
.hx .text-emerald-400\/80 {
  color: rgb(52 211 153 / 0.8);
}
.hx .text-emerald-400\/85 {
  color: rgb(52 211 153 / 0.85);
}
.hx .text-emerald-400\/90 {
  color: rgb(52 211 153 / 0.9);
}
.hx .text-emerald-400\/95 {
  color: rgb(52 211 153 / 0.95);
}
.hx .text-emerald-50 {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-50\/0 {
  color: rgb(236 253 245 / 0);
}
.hx .text-emerald-50\/10 {
  color: rgb(236 253 245 / 0.1);
}
.hx .text-emerald-50\/100 {
  color: rgb(236 253 245 / 1);
}
.hx .text-emerald-50\/15 {
  color: rgb(236 253 245 / 0.15);
}
.hx .text-emerald-50\/20 {
  color: rgb(236 253 245 / 0.2);
}
.hx .text-emerald-50\/25 {
  color: rgb(236 253 245 / 0.25);
}
.hx .text-emerald-50\/30 {
  color: rgb(236 253 245 / 0.3);
}
.hx .text-emerald-50\/35 {
  color: rgb(236 253 245 / 0.35);
}
.hx .text-emerald-50\/40 {
  color: rgb(236 253 245 / 0.4);
}
.hx .text-emerald-50\/45 {
  color: rgb(236 253 245 / 0.45);
}
.hx .text-emerald-50\/5 {
  color: rgb(236 253 245 / 0.05);
}
.hx .text-emerald-50\/50 {
  color: rgb(236 253 245 / 0.5);
}
.hx .text-emerald-50\/55 {
  color: rgb(236 253 245 / 0.55);
}
.hx .text-emerald-50\/60 {
  color: rgb(236 253 245 / 0.6);
}
.hx .text-emerald-50\/65 {
  color: rgb(236 253 245 / 0.65);
}
.hx .text-emerald-50\/70 {
  color: rgb(236 253 245 / 0.7);
}
.hx .text-emerald-50\/75 {
  color: rgb(236 253 245 / 0.75);
}
.hx .text-emerald-50\/80 {
  color: rgb(236 253 245 / 0.8);
}
.hx .text-emerald-50\/85 {
  color: rgb(236 253 245 / 0.85);
}
.hx .text-emerald-50\/90 {
  color: rgb(236 253 245 / 0.9);
}
.hx .text-emerald-50\/95 {
  color: rgb(236 253 245 / 0.95);
}
.hx .text-emerald-500 {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-500\/0 {
  color: rgb(16 185 129 / 0);
}
.hx .text-emerald-500\/10 {
  color: rgb(16 185 129 / 0.1);
}
.hx .text-emerald-500\/100 {
  color: rgb(16 185 129 / 1);
}
.hx .text-emerald-500\/15 {
  color: rgb(16 185 129 / 0.15);
}
.hx .text-emerald-500\/20 {
  color: rgb(16 185 129 / 0.2);
}
.hx .text-emerald-500\/25 {
  color: rgb(16 185 129 / 0.25);
}
.hx .text-emerald-500\/30 {
  color: rgb(16 185 129 / 0.3);
}
.hx .text-emerald-500\/35 {
  color: rgb(16 185 129 / 0.35);
}
.hx .text-emerald-500\/40 {
  color: rgb(16 185 129 / 0.4);
}
.hx .text-emerald-500\/45 {
  color: rgb(16 185 129 / 0.45);
}
.hx .text-emerald-500\/5 {
  color: rgb(16 185 129 / 0.05);
}
.hx .text-emerald-500\/50 {
  color: rgb(16 185 129 / 0.5);
}
.hx .text-emerald-500\/55 {
  color: rgb(16 185 129 / 0.55);
}
.hx .text-emerald-500\/60 {
  color: rgb(16 185 129 / 0.6);
}
.hx .text-emerald-500\/65 {
  color: rgb(16 185 129 / 0.65);
}
.hx .text-emerald-500\/70 {
  color: rgb(16 185 129 / 0.7);
}
.hx .text-emerald-500\/75 {
  color: rgb(16 185 129 / 0.75);
}
.hx .text-emerald-500\/80 {
  color: rgb(16 185 129 / 0.8);
}
.hx .text-emerald-500\/85 {
  color: rgb(16 185 129 / 0.85);
}
.hx .text-emerald-500\/90 {
  color: rgb(16 185 129 / 0.9);
}
.hx .text-emerald-500\/95 {
  color: rgb(16 185 129 / 0.95);
}
.hx .text-emerald-600 {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-600\/0 {
  color: rgb(5 150 105 / 0);
}
.hx .text-emerald-600\/10 {
  color: rgb(5 150 105 / 0.1);
}
.hx .text-emerald-600\/100 {
  color: rgb(5 150 105 / 1);
}
.hx .text-emerald-600\/15 {
  color: rgb(5 150 105 / 0.15);
}
.hx .text-emerald-600\/20 {
  color: rgb(5 150 105 / 0.2);
}
.hx .text-emerald-600\/25 {
  color: rgb(5 150 105 / 0.25);
}
.hx .text-emerald-600\/30 {
  color: rgb(5 150 105 / 0.3);
}
.hx .text-emerald-600\/35 {
  color: rgb(5 150 105 / 0.35);
}
.hx .text-emerald-600\/40 {
  color: rgb(5 150 105 / 0.4);
}
.hx .text-emerald-600\/45 {
  color: rgb(5 150 105 / 0.45);
}
.hx .text-emerald-600\/5 {
  color: rgb(5 150 105 / 0.05);
}
.hx .text-emerald-600\/50 {
  color: rgb(5 150 105 / 0.5);
}
.hx .text-emerald-600\/55 {
  color: rgb(5 150 105 / 0.55);
}
.hx .text-emerald-600\/60 {
  color: rgb(5 150 105 / 0.6);
}
.hx .text-emerald-600\/65 {
  color: rgb(5 150 105 / 0.65);
}
.hx .text-emerald-600\/70 {
  color: rgb(5 150 105 / 0.7);
}
.hx .text-emerald-600\/75 {
  color: rgb(5 150 105 / 0.75);
}
.hx .text-emerald-600\/80 {
  color: rgb(5 150 105 / 0.8);
}
.hx .text-emerald-600\/85 {
  color: rgb(5 150 105 / 0.85);
}
.hx .text-emerald-600\/90 {
  color: rgb(5 150 105 / 0.9);
}
.hx .text-emerald-600\/95 {
  color: rgb(5 150 105 / 0.95);
}
.hx .text-emerald-700 {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-700\/0 {
  color: rgb(4 120 87 / 0);
}
.hx .text-emerald-700\/10 {
  color: rgb(4 120 87 / 0.1);
}
.hx .text-emerald-700\/100 {
  color: rgb(4 120 87 / 1);
}
.hx .text-emerald-700\/15 {
  color: rgb(4 120 87 / 0.15);
}
.hx .text-emerald-700\/20 {
  color: rgb(4 120 87 / 0.2);
}
.hx .text-emerald-700\/25 {
  color: rgb(4 120 87 / 0.25);
}
.hx .text-emerald-700\/30 {
  color: rgb(4 120 87 / 0.3);
}
.hx .text-emerald-700\/35 {
  color: rgb(4 120 87 / 0.35);
}
.hx .text-emerald-700\/40 {
  color: rgb(4 120 87 / 0.4);
}
.hx .text-emerald-700\/45 {
  color: rgb(4 120 87 / 0.45);
}
.hx .text-emerald-700\/5 {
  color: rgb(4 120 87 / 0.05);
}
.hx .text-emerald-700\/50 {
  color: rgb(4 120 87 / 0.5);
}
.hx .text-emerald-700\/55 {
  color: rgb(4 120 87 / 0.55);
}
.hx .text-emerald-700\/60 {
  color: rgb(4 120 87 / 0.6);
}
.hx .text-emerald-700\/65 {
  color: rgb(4 120 87 / 0.65);
}
.hx .text-emerald-700\/70 {
  color: rgb(4 120 87 / 0.7);
}
.hx .text-emerald-700\/75 {
  color: rgb(4 120 87 / 0.75);
}
.hx .text-emerald-700\/80 {
  color: rgb(4 120 87 / 0.8);
}
.hx .text-emerald-700\/85 {
  color: rgb(4 120 87 / 0.85);
}
.hx .text-emerald-700\/90 {
  color: rgb(4 120 87 / 0.9);
}
.hx .text-emerald-700\/95 {
  color: rgb(4 120 87 / 0.95);
}
.hx .text-emerald-800 {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-800\/0 {
  color: rgb(6 95 70 / 0);
}
.hx .text-emerald-800\/10 {
  color: rgb(6 95 70 / 0.1);
}
.hx .text-emerald-800\/100 {
  color: rgb(6 95 70 / 1);
}
.hx .text-emerald-800\/15 {
  color: rgb(6 95 70 / 0.15);
}
.hx .text-emerald-800\/20 {
  color: rgb(6 95 70 / 0.2);
}
.hx .text-emerald-800\/25 {
  color: rgb(6 95 70 / 0.25);
}
.hx .text-emerald-800\/30 {
  color: rgb(6 95 70 / 0.3);
}
.hx .text-emerald-800\/35 {
  color: rgb(6 95 70 / 0.35);
}
.hx .text-emerald-800\/40 {
  color: rgb(6 95 70 / 0.4);
}
.hx .text-emerald-800\/45 {
  color: rgb(6 95 70 / 0.45);
}
.hx .text-emerald-800\/5 {
  color: rgb(6 95 70 / 0.05);
}
.hx .text-emerald-800\/50 {
  color: rgb(6 95 70 / 0.5);
}
.hx .text-emerald-800\/55 {
  color: rgb(6 95 70 / 0.55);
}
.hx .text-emerald-800\/60 {
  color: rgb(6 95 70 / 0.6);
}
.hx .text-emerald-800\/65 {
  color: rgb(6 95 70 / 0.65);
}
.hx .text-emerald-800\/70 {
  color: rgb(6 95 70 / 0.7);
}
.hx .text-emerald-800\/75 {
  color: rgb(6 95 70 / 0.75);
}
.hx .text-emerald-800\/80 {
  color: rgb(6 95 70 / 0.8);
}
.hx .text-emerald-800\/85 {
  color: rgb(6 95 70 / 0.85);
}
.hx .text-emerald-800\/90 {
  color: rgb(6 95 70 / 0.9);
}
.hx .text-emerald-800\/95 {
  color: rgb(6 95 70 / 0.95);
}
.hx .text-emerald-900 {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-900\/0 {
  color: rgb(6 78 59 / 0);
}
.hx .text-emerald-900\/10 {
  color: rgb(6 78 59 / 0.1);
}
.hx .text-emerald-900\/100 {
  color: rgb(6 78 59 / 1);
}
.hx .text-emerald-900\/15 {
  color: rgb(6 78 59 / 0.15);
}
.hx .text-emerald-900\/20 {
  color: rgb(6 78 59 / 0.2);
}
.hx .text-emerald-900\/25 {
  color: rgb(6 78 59 / 0.25);
}
.hx .text-emerald-900\/30 {
  color: rgb(6 78 59 / 0.3);
}
.hx .text-emerald-900\/35 {
  color: rgb(6 78 59 / 0.35);
}
.hx .text-emerald-900\/40 {
  color: rgb(6 78 59 / 0.4);
}
.hx .text-emerald-900\/45 {
  color: rgb(6 78 59 / 0.45);
}
.hx .text-emerald-900\/5 {
  color: rgb(6 78 59 / 0.05);
}
.hx .text-emerald-900\/50 {
  color: rgb(6 78 59 / 0.5);
}
.hx .text-emerald-900\/55 {
  color: rgb(6 78 59 / 0.55);
}
.hx .text-emerald-900\/60 {
  color: rgb(6 78 59 / 0.6);
}
.hx .text-emerald-900\/65 {
  color: rgb(6 78 59 / 0.65);
}
.hx .text-emerald-900\/70 {
  color: rgb(6 78 59 / 0.7);
}
.hx .text-emerald-900\/75 {
  color: rgb(6 78 59 / 0.75);
}
.hx .text-emerald-900\/80 {
  color: rgb(6 78 59 / 0.8);
}
.hx .text-emerald-900\/85 {
  color: rgb(6 78 59 / 0.85);
}
.hx .text-emerald-900\/90 {
  color: rgb(6 78 59 / 0.9);
}
.hx .text-emerald-900\/95 {
  color: rgb(6 78 59 / 0.95);
}
.hx .text-emerald-950 {
  --tw-text-opacity: 1;
  color: rgb(2 44 34 / var(--tw-text-opacity, 1));
}
.hx .text-emerald-950\/0 {
  color: rgb(2 44 34 / 0);
}
.hx .text-emerald-950\/10 {
  color: rgb(2 44 34 / 0.1);
}
.hx .text-emerald-950\/100 {
  color: rgb(2 44 34 / 1);
}
.hx .text-emerald-950\/15 {
  color: rgb(2 44 34 / 0.15);
}
.hx .text-emerald-950\/20 {
  color: rgb(2 44 34 / 0.2);
}
.hx .text-emerald-950\/25 {
  color: rgb(2 44 34 / 0.25);
}
.hx .text-emerald-950\/30 {
  color: rgb(2 44 34 / 0.3);
}
.hx .text-emerald-950\/35 {
  color: rgb(2 44 34 / 0.35);
}
.hx .text-emerald-950\/40 {
  color: rgb(2 44 34 / 0.4);
}
.hx .text-emerald-950\/45 {
  color: rgb(2 44 34 / 0.45);
}
.hx .text-emerald-950\/5 {
  color: rgb(2 44 34 / 0.05);
}
.hx .text-emerald-950\/50 {
  color: rgb(2 44 34 / 0.5);
}
.hx .text-emerald-950\/55 {
  color: rgb(2 44 34 / 0.55);
}
.hx .text-emerald-950\/60 {
  color: rgb(2 44 34 / 0.6);
}
.hx .text-emerald-950\/65 {
  color: rgb(2 44 34 / 0.65);
}
.hx .text-emerald-950\/70 {
  color: rgb(2 44 34 / 0.7);
}
.hx .text-emerald-950\/75 {
  color: rgb(2 44 34 / 0.75);
}
.hx .text-emerald-950\/80 {
  color: rgb(2 44 34 / 0.8);
}
.hx .text-emerald-950\/85 {
  color: rgb(2 44 34 / 0.85);
}
.hx .text-emerald-950\/90 {
  color: rgb(2 44 34 / 0.9);
}
.hx .text-emerald-950\/95 {
  color: rgb(2 44 34 / 0.95);
}
.hx .text-error {
  --tw-text-opacity: 1;
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity, 1)));
}
.hx .text-error-content {
  --tw-text-opacity: 1;
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity, 1)));
}
.hx .text-error-content\/0 {
  color: var(--fallback-erc,oklch(var(--erc)/0));
}
.hx .text-error-content\/10 {
  color: var(--fallback-erc,oklch(var(--erc)/0.1));
}
.hx .text-error-content\/100 {
  color: var(--fallback-erc,oklch(var(--erc)/1));
}
.hx .text-error-content\/15 {
  color: var(--fallback-erc,oklch(var(--erc)/0.15));
}
.hx .text-error-content\/20 {
  color: var(--fallback-erc,oklch(var(--erc)/0.2));
}
.hx .text-error-content\/25 {
  color: var(--fallback-erc,oklch(var(--erc)/0.25));
}
.hx .text-error-content\/30 {
  color: var(--fallback-erc,oklch(var(--erc)/0.3));
}
.hx .text-error-content\/35 {
  color: var(--fallback-erc,oklch(var(--erc)/0.35));
}
.hx .text-error-content\/40 {
  color: var(--fallback-erc,oklch(var(--erc)/0.4));
}
.hx .text-error-content\/45 {
  color: var(--fallback-erc,oklch(var(--erc)/0.45));
}
.hx .text-error-content\/5 {
  color: var(--fallback-erc,oklch(var(--erc)/0.05));
}
.hx .text-error-content\/50 {
  color: var(--fallback-erc,oklch(var(--erc)/0.5));
}
.hx .text-error-content\/55 {
  color: var(--fallback-erc,oklch(var(--erc)/0.55));
}
.hx .text-error-content\/60 {
  color: var(--fallback-erc,oklch(var(--erc)/0.6));
}
.hx .text-error-content\/65 {
  color: var(--fallback-erc,oklch(var(--erc)/0.65));
}
.hx .text-error-content\/70 {
  color: var(--fallback-erc,oklch(var(--erc)/0.7));
}
.hx .text-error-content\/75 {
  color: var(--fallback-erc,oklch(var(--erc)/0.75));
}
.hx .text-error-content\/80 {
  color: var(--fallback-erc,oklch(var(--erc)/0.8));
}
.hx .text-error-content\/85 {
  color: var(--fallback-erc,oklch(var(--erc)/0.85));
}
.hx .text-error-content\/90 {
  color: var(--fallback-erc,oklch(var(--erc)/0.9));
}
.hx .text-error-content\/95 {
  color: var(--fallback-erc,oklch(var(--erc)/0.95));
}
.hx .text-error\/0 {
  color: var(--fallback-er,oklch(var(--er)/0));
}
.hx .text-error\/10 {
  color: var(--fallback-er,oklch(var(--er)/0.1));
}
.hx .text-error\/100 {
  color: var(--fallback-er,oklch(var(--er)/1));
}
.hx .text-error\/15 {
  color: var(--fallback-er,oklch(var(--er)/0.15));
}
.hx .text-error\/20 {
  color: var(--fallback-er,oklch(var(--er)/0.2));
}
.hx .text-error\/25 {
  color: var(--fallback-er,oklch(var(--er)/0.25));
}
.hx .text-error\/30 {
  color: var(--fallback-er,oklch(var(--er)/0.3));
}
.hx .text-error\/35 {
  color: var(--fallback-er,oklch(var(--er)/0.35));
}
.hx .text-error\/40 {
  color: var(--fallback-er,oklch(var(--er)/0.4));
}
.hx .text-error\/45 {
  color: var(--fallback-er,oklch(var(--er)/0.45));
}
.hx .text-error\/5 {
  color: var(--fallback-er,oklch(var(--er)/0.05));
}
.hx .text-error\/50 {
  color: var(--fallback-er,oklch(var(--er)/0.5));
}
.hx .text-error\/55 {
  color: var(--fallback-er,oklch(var(--er)/0.55));
}
.hx .text-error\/60 {
  color: var(--fallback-er,oklch(var(--er)/0.6));
}
.hx .text-error\/65 {
  color: var(--fallback-er,oklch(var(--er)/0.65));
}
.hx .text-error\/70 {
  color: var(--fallback-er,oklch(var(--er)/0.7));
}
.hx .text-error\/75 {
  color: var(--fallback-er,oklch(var(--er)/0.75));
}
.hx .text-error\/80 {
  color: var(--fallback-er,oklch(var(--er)/0.8));
}
.hx .text-error\/85 {
  color: var(--fallback-er,oklch(var(--er)/0.85));
}
.hx .text-error\/90 {
  color: var(--fallback-er,oklch(var(--er)/0.9));
}
.hx .text-error\/95 {
  color: var(--fallback-er,oklch(var(--er)/0.95));
}
.hx .text-fuchsia-100 {
  --tw-text-opacity: 1;
  color: rgb(250 232 255 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-100\/0 {
  color: rgb(250 232 255 / 0);
}
.hx .text-fuchsia-100\/10 {
  color: rgb(250 232 255 / 0.1);
}
.hx .text-fuchsia-100\/100 {
  color: rgb(250 232 255 / 1);
}
.hx .text-fuchsia-100\/15 {
  color: rgb(250 232 255 / 0.15);
}
.hx .text-fuchsia-100\/20 {
  color: rgb(250 232 255 / 0.2);
}
.hx .text-fuchsia-100\/25 {
  color: rgb(250 232 255 / 0.25);
}
.hx .text-fuchsia-100\/30 {
  color: rgb(250 232 255 / 0.3);
}
.hx .text-fuchsia-100\/35 {
  color: rgb(250 232 255 / 0.35);
}
.hx .text-fuchsia-100\/40 {
  color: rgb(250 232 255 / 0.4);
}
.hx .text-fuchsia-100\/45 {
  color: rgb(250 232 255 / 0.45);
}
.hx .text-fuchsia-100\/5 {
  color: rgb(250 232 255 / 0.05);
}
.hx .text-fuchsia-100\/50 {
  color: rgb(250 232 255 / 0.5);
}
.hx .text-fuchsia-100\/55 {
  color: rgb(250 232 255 / 0.55);
}
.hx .text-fuchsia-100\/60 {
  color: rgb(250 232 255 / 0.6);
}
.hx .text-fuchsia-100\/65 {
  color: rgb(250 232 255 / 0.65);
}
.hx .text-fuchsia-100\/70 {
  color: rgb(250 232 255 / 0.7);
}
.hx .text-fuchsia-100\/75 {
  color: rgb(250 232 255 / 0.75);
}
.hx .text-fuchsia-100\/80 {
  color: rgb(250 232 255 / 0.8);
}
.hx .text-fuchsia-100\/85 {
  color: rgb(250 232 255 / 0.85);
}
.hx .text-fuchsia-100\/90 {
  color: rgb(250 232 255 / 0.9);
}
.hx .text-fuchsia-100\/95 {
  color: rgb(250 232 255 / 0.95);
}
.hx .text-fuchsia-200 {
  --tw-text-opacity: 1;
  color: rgb(245 208 254 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-200\/0 {
  color: rgb(245 208 254 / 0);
}
.hx .text-fuchsia-200\/10 {
  color: rgb(245 208 254 / 0.1);
}
.hx .text-fuchsia-200\/100 {
  color: rgb(245 208 254 / 1);
}
.hx .text-fuchsia-200\/15 {
  color: rgb(245 208 254 / 0.15);
}
.hx .text-fuchsia-200\/20 {
  color: rgb(245 208 254 / 0.2);
}
.hx .text-fuchsia-200\/25 {
  color: rgb(245 208 254 / 0.25);
}
.hx .text-fuchsia-200\/30 {
  color: rgb(245 208 254 / 0.3);
}
.hx .text-fuchsia-200\/35 {
  color: rgb(245 208 254 / 0.35);
}
.hx .text-fuchsia-200\/40 {
  color: rgb(245 208 254 / 0.4);
}
.hx .text-fuchsia-200\/45 {
  color: rgb(245 208 254 / 0.45);
}
.hx .text-fuchsia-200\/5 {
  color: rgb(245 208 254 / 0.05);
}
.hx .text-fuchsia-200\/50 {
  color: rgb(245 208 254 / 0.5);
}
.hx .text-fuchsia-200\/55 {
  color: rgb(245 208 254 / 0.55);
}
.hx .text-fuchsia-200\/60 {
  color: rgb(245 208 254 / 0.6);
}
.hx .text-fuchsia-200\/65 {
  color: rgb(245 208 254 / 0.65);
}
.hx .text-fuchsia-200\/70 {
  color: rgb(245 208 254 / 0.7);
}
.hx .text-fuchsia-200\/75 {
  color: rgb(245 208 254 / 0.75);
}
.hx .text-fuchsia-200\/80 {
  color: rgb(245 208 254 / 0.8);
}
.hx .text-fuchsia-200\/85 {
  color: rgb(245 208 254 / 0.85);
}
.hx .text-fuchsia-200\/90 {
  color: rgb(245 208 254 / 0.9);
}
.hx .text-fuchsia-200\/95 {
  color: rgb(245 208 254 / 0.95);
}
.hx .text-fuchsia-300 {
  --tw-text-opacity: 1;
  color: rgb(240 171 252 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-300\/0 {
  color: rgb(240 171 252 / 0);
}
.hx .text-fuchsia-300\/10 {
  color: rgb(240 171 252 / 0.1);
}
.hx .text-fuchsia-300\/100 {
  color: rgb(240 171 252 / 1);
}
.hx .text-fuchsia-300\/15 {
  color: rgb(240 171 252 / 0.15);
}
.hx .text-fuchsia-300\/20 {
  color: rgb(240 171 252 / 0.2);
}
.hx .text-fuchsia-300\/25 {
  color: rgb(240 171 252 / 0.25);
}
.hx .text-fuchsia-300\/30 {
  color: rgb(240 171 252 / 0.3);
}
.hx .text-fuchsia-300\/35 {
  color: rgb(240 171 252 / 0.35);
}
.hx .text-fuchsia-300\/40 {
  color: rgb(240 171 252 / 0.4);
}
.hx .text-fuchsia-300\/45 {
  color: rgb(240 171 252 / 0.45);
}
.hx .text-fuchsia-300\/5 {
  color: rgb(240 171 252 / 0.05);
}
.hx .text-fuchsia-300\/50 {
  color: rgb(240 171 252 / 0.5);
}
.hx .text-fuchsia-300\/55 {
  color: rgb(240 171 252 / 0.55);
}
.hx .text-fuchsia-300\/60 {
  color: rgb(240 171 252 / 0.6);
}
.hx .text-fuchsia-300\/65 {
  color: rgb(240 171 252 / 0.65);
}
.hx .text-fuchsia-300\/70 {
  color: rgb(240 171 252 / 0.7);
}
.hx .text-fuchsia-300\/75 {
  color: rgb(240 171 252 / 0.75);
}
.hx .text-fuchsia-300\/80 {
  color: rgb(240 171 252 / 0.8);
}
.hx .text-fuchsia-300\/85 {
  color: rgb(240 171 252 / 0.85);
}
.hx .text-fuchsia-300\/90 {
  color: rgb(240 171 252 / 0.9);
}
.hx .text-fuchsia-300\/95 {
  color: rgb(240 171 252 / 0.95);
}
.hx .text-fuchsia-400 {
  --tw-text-opacity: 1;
  color: rgb(232 121 249 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-400\/0 {
  color: rgb(232 121 249 / 0);
}
.hx .text-fuchsia-400\/10 {
  color: rgb(232 121 249 / 0.1);
}
.hx .text-fuchsia-400\/100 {
  color: rgb(232 121 249 / 1);
}
.hx .text-fuchsia-400\/15 {
  color: rgb(232 121 249 / 0.15);
}
.hx .text-fuchsia-400\/20 {
  color: rgb(232 121 249 / 0.2);
}
.hx .text-fuchsia-400\/25 {
  color: rgb(232 121 249 / 0.25);
}
.hx .text-fuchsia-400\/30 {
  color: rgb(232 121 249 / 0.3);
}
.hx .text-fuchsia-400\/35 {
  color: rgb(232 121 249 / 0.35);
}
.hx .text-fuchsia-400\/40 {
  color: rgb(232 121 249 / 0.4);
}
.hx .text-fuchsia-400\/45 {
  color: rgb(232 121 249 / 0.45);
}
.hx .text-fuchsia-400\/5 {
  color: rgb(232 121 249 / 0.05);
}
.hx .text-fuchsia-400\/50 {
  color: rgb(232 121 249 / 0.5);
}
.hx .text-fuchsia-400\/55 {
  color: rgb(232 121 249 / 0.55);
}
.hx .text-fuchsia-400\/60 {
  color: rgb(232 121 249 / 0.6);
}
.hx .text-fuchsia-400\/65 {
  color: rgb(232 121 249 / 0.65);
}
.hx .text-fuchsia-400\/70 {
  color: rgb(232 121 249 / 0.7);
}
.hx .text-fuchsia-400\/75 {
  color: rgb(232 121 249 / 0.75);
}
.hx .text-fuchsia-400\/80 {
  color: rgb(232 121 249 / 0.8);
}
.hx .text-fuchsia-400\/85 {
  color: rgb(232 121 249 / 0.85);
}
.hx .text-fuchsia-400\/90 {
  color: rgb(232 121 249 / 0.9);
}
.hx .text-fuchsia-400\/95 {
  color: rgb(232 121 249 / 0.95);
}
.hx .text-fuchsia-50 {
  --tw-text-opacity: 1;
  color: rgb(253 244 255 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-50\/0 {
  color: rgb(253 244 255 / 0);
}
.hx .text-fuchsia-50\/10 {
  color: rgb(253 244 255 / 0.1);
}
.hx .text-fuchsia-50\/100 {
  color: rgb(253 244 255 / 1);
}
.hx .text-fuchsia-50\/15 {
  color: rgb(253 244 255 / 0.15);
}
.hx .text-fuchsia-50\/20 {
  color: rgb(253 244 255 / 0.2);
}
.hx .text-fuchsia-50\/25 {
  color: rgb(253 244 255 / 0.25);
}
.hx .text-fuchsia-50\/30 {
  color: rgb(253 244 255 / 0.3);
}
.hx .text-fuchsia-50\/35 {
  color: rgb(253 244 255 / 0.35);
}
.hx .text-fuchsia-50\/40 {
  color: rgb(253 244 255 / 0.4);
}
.hx .text-fuchsia-50\/45 {
  color: rgb(253 244 255 / 0.45);
}
.hx .text-fuchsia-50\/5 {
  color: rgb(253 244 255 / 0.05);
}
.hx .text-fuchsia-50\/50 {
  color: rgb(253 244 255 / 0.5);
}
.hx .text-fuchsia-50\/55 {
  color: rgb(253 244 255 / 0.55);
}
.hx .text-fuchsia-50\/60 {
  color: rgb(253 244 255 / 0.6);
}
.hx .text-fuchsia-50\/65 {
  color: rgb(253 244 255 / 0.65);
}
.hx .text-fuchsia-50\/70 {
  color: rgb(253 244 255 / 0.7);
}
.hx .text-fuchsia-50\/75 {
  color: rgb(253 244 255 / 0.75);
}
.hx .text-fuchsia-50\/80 {
  color: rgb(253 244 255 / 0.8);
}
.hx .text-fuchsia-50\/85 {
  color: rgb(253 244 255 / 0.85);
}
.hx .text-fuchsia-50\/90 {
  color: rgb(253 244 255 / 0.9);
}
.hx .text-fuchsia-50\/95 {
  color: rgb(253 244 255 / 0.95);
}
.hx .text-fuchsia-500 {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-500\/0 {
  color: rgb(217 70 239 / 0);
}
.hx .text-fuchsia-500\/10 {
  color: rgb(217 70 239 / 0.1);
}
.hx .text-fuchsia-500\/100 {
  color: rgb(217 70 239 / 1);
}
.hx .text-fuchsia-500\/15 {
  color: rgb(217 70 239 / 0.15);
}
.hx .text-fuchsia-500\/20 {
  color: rgb(217 70 239 / 0.2);
}
.hx .text-fuchsia-500\/25 {
  color: rgb(217 70 239 / 0.25);
}
.hx .text-fuchsia-500\/30 {
  color: rgb(217 70 239 / 0.3);
}
.hx .text-fuchsia-500\/35 {
  color: rgb(217 70 239 / 0.35);
}
.hx .text-fuchsia-500\/40 {
  color: rgb(217 70 239 / 0.4);
}
.hx .text-fuchsia-500\/45 {
  color: rgb(217 70 239 / 0.45);
}
.hx .text-fuchsia-500\/5 {
  color: rgb(217 70 239 / 0.05);
}
.hx .text-fuchsia-500\/50 {
  color: rgb(217 70 239 / 0.5);
}
.hx .text-fuchsia-500\/55 {
  color: rgb(217 70 239 / 0.55);
}
.hx .text-fuchsia-500\/60 {
  color: rgb(217 70 239 / 0.6);
}
.hx .text-fuchsia-500\/65 {
  color: rgb(217 70 239 / 0.65);
}
.hx .text-fuchsia-500\/70 {
  color: rgb(217 70 239 / 0.7);
}
.hx .text-fuchsia-500\/75 {
  color: rgb(217 70 239 / 0.75);
}
.hx .text-fuchsia-500\/80 {
  color: rgb(217 70 239 / 0.8);
}
.hx .text-fuchsia-500\/85 {
  color: rgb(217 70 239 / 0.85);
}
.hx .text-fuchsia-500\/90 {
  color: rgb(217 70 239 / 0.9);
}
.hx .text-fuchsia-500\/95 {
  color: rgb(217 70 239 / 0.95);
}
.hx .text-fuchsia-600 {
  --tw-text-opacity: 1;
  color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-600\/0 {
  color: rgb(192 38 211 / 0);
}
.hx .text-fuchsia-600\/10 {
  color: rgb(192 38 211 / 0.1);
}
.hx .text-fuchsia-600\/100 {
  color: rgb(192 38 211 / 1);
}
.hx .text-fuchsia-600\/15 {
  color: rgb(192 38 211 / 0.15);
}
.hx .text-fuchsia-600\/20 {
  color: rgb(192 38 211 / 0.2);
}
.hx .text-fuchsia-600\/25 {
  color: rgb(192 38 211 / 0.25);
}
.hx .text-fuchsia-600\/30 {
  color: rgb(192 38 211 / 0.3);
}
.hx .text-fuchsia-600\/35 {
  color: rgb(192 38 211 / 0.35);
}
.hx .text-fuchsia-600\/40 {
  color: rgb(192 38 211 / 0.4);
}
.hx .text-fuchsia-600\/45 {
  color: rgb(192 38 211 / 0.45);
}
.hx .text-fuchsia-600\/5 {
  color: rgb(192 38 211 / 0.05);
}
.hx .text-fuchsia-600\/50 {
  color: rgb(192 38 211 / 0.5);
}
.hx .text-fuchsia-600\/55 {
  color: rgb(192 38 211 / 0.55);
}
.hx .text-fuchsia-600\/60 {
  color: rgb(192 38 211 / 0.6);
}
.hx .text-fuchsia-600\/65 {
  color: rgb(192 38 211 / 0.65);
}
.hx .text-fuchsia-600\/70 {
  color: rgb(192 38 211 / 0.7);
}
.hx .text-fuchsia-600\/75 {
  color: rgb(192 38 211 / 0.75);
}
.hx .text-fuchsia-600\/80 {
  color: rgb(192 38 211 / 0.8);
}
.hx .text-fuchsia-600\/85 {
  color: rgb(192 38 211 / 0.85);
}
.hx .text-fuchsia-600\/90 {
  color: rgb(192 38 211 / 0.9);
}
.hx .text-fuchsia-600\/95 {
  color: rgb(192 38 211 / 0.95);
}
.hx .text-fuchsia-700 {
  --tw-text-opacity: 1;
  color: rgb(162 28 175 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-700\/0 {
  color: rgb(162 28 175 / 0);
}
.hx .text-fuchsia-700\/10 {
  color: rgb(162 28 175 / 0.1);
}
.hx .text-fuchsia-700\/100 {
  color: rgb(162 28 175 / 1);
}
.hx .text-fuchsia-700\/15 {
  color: rgb(162 28 175 / 0.15);
}
.hx .text-fuchsia-700\/20 {
  color: rgb(162 28 175 / 0.2);
}
.hx .text-fuchsia-700\/25 {
  color: rgb(162 28 175 / 0.25);
}
.hx .text-fuchsia-700\/30 {
  color: rgb(162 28 175 / 0.3);
}
.hx .text-fuchsia-700\/35 {
  color: rgb(162 28 175 / 0.35);
}
.hx .text-fuchsia-700\/40 {
  color: rgb(162 28 175 / 0.4);
}
.hx .text-fuchsia-700\/45 {
  color: rgb(162 28 175 / 0.45);
}
.hx .text-fuchsia-700\/5 {
  color: rgb(162 28 175 / 0.05);
}
.hx .text-fuchsia-700\/50 {
  color: rgb(162 28 175 / 0.5);
}
.hx .text-fuchsia-700\/55 {
  color: rgb(162 28 175 / 0.55);
}
.hx .text-fuchsia-700\/60 {
  color: rgb(162 28 175 / 0.6);
}
.hx .text-fuchsia-700\/65 {
  color: rgb(162 28 175 / 0.65);
}
.hx .text-fuchsia-700\/70 {
  color: rgb(162 28 175 / 0.7);
}
.hx .text-fuchsia-700\/75 {
  color: rgb(162 28 175 / 0.75);
}
.hx .text-fuchsia-700\/80 {
  color: rgb(162 28 175 / 0.8);
}
.hx .text-fuchsia-700\/85 {
  color: rgb(162 28 175 / 0.85);
}
.hx .text-fuchsia-700\/90 {
  color: rgb(162 28 175 / 0.9);
}
.hx .text-fuchsia-700\/95 {
  color: rgb(162 28 175 / 0.95);
}
.hx .text-fuchsia-800 {
  --tw-text-opacity: 1;
  color: rgb(134 25 143 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-800\/0 {
  color: rgb(134 25 143 / 0);
}
.hx .text-fuchsia-800\/10 {
  color: rgb(134 25 143 / 0.1);
}
.hx .text-fuchsia-800\/100 {
  color: rgb(134 25 143 / 1);
}
.hx .text-fuchsia-800\/15 {
  color: rgb(134 25 143 / 0.15);
}
.hx .text-fuchsia-800\/20 {
  color: rgb(134 25 143 / 0.2);
}
.hx .text-fuchsia-800\/25 {
  color: rgb(134 25 143 / 0.25);
}
.hx .text-fuchsia-800\/30 {
  color: rgb(134 25 143 / 0.3);
}
.hx .text-fuchsia-800\/35 {
  color: rgb(134 25 143 / 0.35);
}
.hx .text-fuchsia-800\/40 {
  color: rgb(134 25 143 / 0.4);
}
.hx .text-fuchsia-800\/45 {
  color: rgb(134 25 143 / 0.45);
}
.hx .text-fuchsia-800\/5 {
  color: rgb(134 25 143 / 0.05);
}
.hx .text-fuchsia-800\/50 {
  color: rgb(134 25 143 / 0.5);
}
.hx .text-fuchsia-800\/55 {
  color: rgb(134 25 143 / 0.55);
}
.hx .text-fuchsia-800\/60 {
  color: rgb(134 25 143 / 0.6);
}
.hx .text-fuchsia-800\/65 {
  color: rgb(134 25 143 / 0.65);
}
.hx .text-fuchsia-800\/70 {
  color: rgb(134 25 143 / 0.7);
}
.hx .text-fuchsia-800\/75 {
  color: rgb(134 25 143 / 0.75);
}
.hx .text-fuchsia-800\/80 {
  color: rgb(134 25 143 / 0.8);
}
.hx .text-fuchsia-800\/85 {
  color: rgb(134 25 143 / 0.85);
}
.hx .text-fuchsia-800\/90 {
  color: rgb(134 25 143 / 0.9);
}
.hx .text-fuchsia-800\/95 {
  color: rgb(134 25 143 / 0.95);
}
.hx .text-fuchsia-900 {
  --tw-text-opacity: 1;
  color: rgb(112 26 117 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-900\/0 {
  color: rgb(112 26 117 / 0);
}
.hx .text-fuchsia-900\/10 {
  color: rgb(112 26 117 / 0.1);
}
.hx .text-fuchsia-900\/100 {
  color: rgb(112 26 117 / 1);
}
.hx .text-fuchsia-900\/15 {
  color: rgb(112 26 117 / 0.15);
}
.hx .text-fuchsia-900\/20 {
  color: rgb(112 26 117 / 0.2);
}
.hx .text-fuchsia-900\/25 {
  color: rgb(112 26 117 / 0.25);
}
.hx .text-fuchsia-900\/30 {
  color: rgb(112 26 117 / 0.3);
}
.hx .text-fuchsia-900\/35 {
  color: rgb(112 26 117 / 0.35);
}
.hx .text-fuchsia-900\/40 {
  color: rgb(112 26 117 / 0.4);
}
.hx .text-fuchsia-900\/45 {
  color: rgb(112 26 117 / 0.45);
}
.hx .text-fuchsia-900\/5 {
  color: rgb(112 26 117 / 0.05);
}
.hx .text-fuchsia-900\/50 {
  color: rgb(112 26 117 / 0.5);
}
.hx .text-fuchsia-900\/55 {
  color: rgb(112 26 117 / 0.55);
}
.hx .text-fuchsia-900\/60 {
  color: rgb(112 26 117 / 0.6);
}
.hx .text-fuchsia-900\/65 {
  color: rgb(112 26 117 / 0.65);
}
.hx .text-fuchsia-900\/70 {
  color: rgb(112 26 117 / 0.7);
}
.hx .text-fuchsia-900\/75 {
  color: rgb(112 26 117 / 0.75);
}
.hx .text-fuchsia-900\/80 {
  color: rgb(112 26 117 / 0.8);
}
.hx .text-fuchsia-900\/85 {
  color: rgb(112 26 117 / 0.85);
}
.hx .text-fuchsia-900\/90 {
  color: rgb(112 26 117 / 0.9);
}
.hx .text-fuchsia-900\/95 {
  color: rgb(112 26 117 / 0.95);
}
.hx .text-fuchsia-950 {
  --tw-text-opacity: 1;
  color: rgb(74 4 78 / var(--tw-text-opacity, 1));
}
.hx .text-fuchsia-950\/0 {
  color: rgb(74 4 78 / 0);
}
.hx .text-fuchsia-950\/10 {
  color: rgb(74 4 78 / 0.1);
}
.hx .text-fuchsia-950\/100 {
  color: rgb(74 4 78 / 1);
}
.hx .text-fuchsia-950\/15 {
  color: rgb(74 4 78 / 0.15);
}
.hx .text-fuchsia-950\/20 {
  color: rgb(74 4 78 / 0.2);
}
.hx .text-fuchsia-950\/25 {
  color: rgb(74 4 78 / 0.25);
}
.hx .text-fuchsia-950\/30 {
  color: rgb(74 4 78 / 0.3);
}
.hx .text-fuchsia-950\/35 {
  color: rgb(74 4 78 / 0.35);
}
.hx .text-fuchsia-950\/40 {
  color: rgb(74 4 78 / 0.4);
}
.hx .text-fuchsia-950\/45 {
  color: rgb(74 4 78 / 0.45);
}
.hx .text-fuchsia-950\/5 {
  color: rgb(74 4 78 / 0.05);
}
.hx .text-fuchsia-950\/50 {
  color: rgb(74 4 78 / 0.5);
}
.hx .text-fuchsia-950\/55 {
  color: rgb(74 4 78 / 0.55);
}
.hx .text-fuchsia-950\/60 {
  color: rgb(74 4 78 / 0.6);
}
.hx .text-fuchsia-950\/65 {
  color: rgb(74 4 78 / 0.65);
}
.hx .text-fuchsia-950\/70 {
  color: rgb(74 4 78 / 0.7);
}
.hx .text-fuchsia-950\/75 {
  color: rgb(74 4 78 / 0.75);
}
.hx .text-fuchsia-950\/80 {
  color: rgb(74 4 78 / 0.8);
}
.hx .text-fuchsia-950\/85 {
  color: rgb(74 4 78 / 0.85);
}
.hx .text-fuchsia-950\/90 {
  color: rgb(74 4 78 / 0.9);
}
.hx .text-fuchsia-950\/95 {
  color: rgb(74 4 78 / 0.95);
}
.hx .text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.hx .text-gray-100\/0 {
  color: rgb(243 244 246 / 0);
}
.hx .text-gray-100\/10 {
  color: rgb(243 244 246 / 0.1);
}
.hx .text-gray-100\/100 {
  color: rgb(243 244 246 / 1);
}
.hx .text-gray-100\/15 {
  color: rgb(243 244 246 / 0.15);
}
.hx .text-gray-100\/20 {
  color: rgb(243 244 246 / 0.2);
}
.hx .text-gray-100\/25 {
  color: rgb(243 244 246 / 0.25);
}
.hx .text-gray-100\/30 {
  color: rgb(243 244 246 / 0.3);
}
.hx .text-gray-100\/35 {
  color: rgb(243 244 246 / 0.35);
}
.hx .text-gray-100\/40 {
  color: rgb(243 244 246 / 0.4);
}
.hx .text-gray-100\/45 {
  color: rgb(243 244 246 / 0.45);
}
.hx .text-gray-100\/5 {
  color: rgb(243 244 246 / 0.05);
}
.hx .text-gray-100\/50 {
  color: rgb(243 244 246 / 0.5);
}
.hx .text-gray-100\/55 {
  color: rgb(243 244 246 / 0.55);
}
.hx .text-gray-100\/60 {
  color: rgb(243 244 246 / 0.6);
}
.hx .text-gray-100\/65 {
  color: rgb(243 244 246 / 0.65);
}
.hx .text-gray-100\/70 {
  color: rgb(243 244 246 / 0.7);
}
.hx .text-gray-100\/75 {
  color: rgb(243 244 246 / 0.75);
}
.hx .text-gray-100\/80 {
  color: rgb(243 244 246 / 0.8);
}
.hx .text-gray-100\/85 {
  color: rgb(243 244 246 / 0.85);
}
.hx .text-gray-100\/90 {
  color: rgb(243 244 246 / 0.9);
}
.hx .text-gray-100\/95 {
  color: rgb(243 244 246 / 0.95);
}
.hx .text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.hx .text-gray-200\/0 {
  color: rgb(229 231 235 / 0);
}
.hx .text-gray-200\/10 {
  color: rgb(229 231 235 / 0.1);
}
.hx .text-gray-200\/100 {
  color: rgb(229 231 235 / 1);
}
.hx .text-gray-200\/15 {
  color: rgb(229 231 235 / 0.15);
}
.hx .text-gray-200\/20 {
  color: rgb(229 231 235 / 0.2);
}
.hx .text-gray-200\/25 {
  color: rgb(229 231 235 / 0.25);
}
.hx .text-gray-200\/30 {
  color: rgb(229 231 235 / 0.3);
}
.hx .text-gray-200\/35 {
  color: rgb(229 231 235 / 0.35);
}
.hx .text-gray-200\/40 {
  color: rgb(229 231 235 / 0.4);
}
.hx .text-gray-200\/45 {
  color: rgb(229 231 235 / 0.45);
}
.hx .text-gray-200\/5 {
  color: rgb(229 231 235 / 0.05);
}
.hx .text-gray-200\/50 {
  color: rgb(229 231 235 / 0.5);
}
.hx .text-gray-200\/55 {
  color: rgb(229 231 235 / 0.55);
}
.hx .text-gray-200\/60 {
  color: rgb(229 231 235 / 0.6);
}
.hx .text-gray-200\/65 {
  color: rgb(229 231 235 / 0.65);
}
.hx .text-gray-200\/70 {
  color: rgb(229 231 235 / 0.7);
}
.hx .text-gray-200\/75 {
  color: rgb(229 231 235 / 0.75);
}
.hx .text-gray-200\/80 {
  color: rgb(229 231 235 / 0.8);
}
.hx .text-gray-200\/85 {
  color: rgb(229 231 235 / 0.85);
}
.hx .text-gray-200\/90 {
  color: rgb(229 231 235 / 0.9);
}
.hx .text-gray-200\/95 {
  color: rgb(229 231 235 / 0.95);
}
.hx .text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.hx .text-gray-300\/0 {
  color: rgb(209 213 219 / 0);
}
.hx .text-gray-300\/10 {
  color: rgb(209 213 219 / 0.1);
}
.hx .text-gray-300\/100 {
  color: rgb(209 213 219 / 1);
}
.hx .text-gray-300\/15 {
  color: rgb(209 213 219 / 0.15);
}
.hx .text-gray-300\/20 {
  color: rgb(209 213 219 / 0.2);
}
.hx .text-gray-300\/25 {
  color: rgb(209 213 219 / 0.25);
}
.hx .text-gray-300\/30 {
  color: rgb(209 213 219 / 0.3);
}
.hx .text-gray-300\/35 {
  color: rgb(209 213 219 / 0.35);
}
.hx .text-gray-300\/40 {
  color: rgb(209 213 219 / 0.4);
}
.hx .text-gray-300\/45 {
  color: rgb(209 213 219 / 0.45);
}
.hx .text-gray-300\/5 {
  color: rgb(209 213 219 / 0.05);
}
.hx .text-gray-300\/50 {
  color: rgb(209 213 219 / 0.5);
}
.hx .text-gray-300\/55 {
  color: rgb(209 213 219 / 0.55);
}
.hx .text-gray-300\/60 {
  color: rgb(209 213 219 / 0.6);
}
.hx .text-gray-300\/65 {
  color: rgb(209 213 219 / 0.65);
}
.hx .text-gray-300\/70 {
  color: rgb(209 213 219 / 0.7);
}
.hx .text-gray-300\/75 {
  color: rgb(209 213 219 / 0.75);
}
.hx .text-gray-300\/80 {
  color: rgb(209 213 219 / 0.8);
}
.hx .text-gray-300\/85 {
  color: rgb(209 213 219 / 0.85);
}
.hx .text-gray-300\/90 {
  color: rgb(209 213 219 / 0.9);
}
.hx .text-gray-300\/95 {
  color: rgb(209 213 219 / 0.95);
}
.hx .text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hx .text-gray-400\/0 {
  color: rgb(156 163 175 / 0);
}
.hx .text-gray-400\/10 {
  color: rgb(156 163 175 / 0.1);
}
.hx .text-gray-400\/100 {
  color: rgb(156 163 175 / 1);
}
.hx .text-gray-400\/15 {
  color: rgb(156 163 175 / 0.15);
}
.hx .text-gray-400\/20 {
  color: rgb(156 163 175 / 0.2);
}
.hx .text-gray-400\/25 {
  color: rgb(156 163 175 / 0.25);
}
.hx .text-gray-400\/30 {
  color: rgb(156 163 175 / 0.3);
}
.hx .text-gray-400\/35 {
  color: rgb(156 163 175 / 0.35);
}
.hx .text-gray-400\/40 {
  color: rgb(156 163 175 / 0.4);
}
.hx .text-gray-400\/45 {
  color: rgb(156 163 175 / 0.45);
}
.hx .text-gray-400\/5 {
  color: rgb(156 163 175 / 0.05);
}
.hx .text-gray-400\/50 {
  color: rgb(156 163 175 / 0.5);
}
.hx .text-gray-400\/55 {
  color: rgb(156 163 175 / 0.55);
}
.hx .text-gray-400\/60 {
  color: rgb(156 163 175 / 0.6);
}
.hx .text-gray-400\/65 {
  color: rgb(156 163 175 / 0.65);
}
.hx .text-gray-400\/70 {
  color: rgb(156 163 175 / 0.7);
}
.hx .text-gray-400\/75 {
  color: rgb(156 163 175 / 0.75);
}
.hx .text-gray-400\/80 {
  color: rgb(156 163 175 / 0.8);
}
.hx .text-gray-400\/85 {
  color: rgb(156 163 175 / 0.85);
}
.hx .text-gray-400\/90 {
  color: rgb(156 163 175 / 0.9);
}
.hx .text-gray-400\/95 {
  color: rgb(156 163 175 / 0.95);
}
.hx .text-gray-50 {
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}
.hx .text-gray-50\/0 {
  color: rgb(249 250 251 / 0);
}
.hx .text-gray-50\/10 {
  color: rgb(249 250 251 / 0.1);
}
.hx .text-gray-50\/100 {
  color: rgb(249 250 251 / 1);
}
.hx .text-gray-50\/15 {
  color: rgb(249 250 251 / 0.15);
}
.hx .text-gray-50\/20 {
  color: rgb(249 250 251 / 0.2);
}
.hx .text-gray-50\/25 {
  color: rgb(249 250 251 / 0.25);
}
.hx .text-gray-50\/30 {
  color: rgb(249 250 251 / 0.3);
}
.hx .text-gray-50\/35 {
  color: rgb(249 250 251 / 0.35);
}
.hx .text-gray-50\/40 {
  color: rgb(249 250 251 / 0.4);
}
.hx .text-gray-50\/45 {
  color: rgb(249 250 251 / 0.45);
}
.hx .text-gray-50\/5 {
  color: rgb(249 250 251 / 0.05);
}
.hx .text-gray-50\/50 {
  color: rgb(249 250 251 / 0.5);
}
.hx .text-gray-50\/55 {
  color: rgb(249 250 251 / 0.55);
}
.hx .text-gray-50\/60 {
  color: rgb(249 250 251 / 0.6);
}
.hx .text-gray-50\/65 {
  color: rgb(249 250 251 / 0.65);
}
.hx .text-gray-50\/70 {
  color: rgb(249 250 251 / 0.7);
}
.hx .text-gray-50\/75 {
  color: rgb(249 250 251 / 0.75);
}
.hx .text-gray-50\/80 {
  color: rgb(249 250 251 / 0.8);
}
.hx .text-gray-50\/85 {
  color: rgb(249 250 251 / 0.85);
}
.hx .text-gray-50\/90 {
  color: rgb(249 250 251 / 0.9);
}
.hx .text-gray-50\/95 {
  color: rgb(249 250 251 / 0.95);
}
.hx .text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.hx .text-gray-500\/0 {
  color: rgb(107 114 128 / 0);
}
.hx .text-gray-500\/10 {
  color: rgb(107 114 128 / 0.1);
}
.hx .text-gray-500\/100 {
  color: rgb(107 114 128 / 1);
}
.hx .text-gray-500\/15 {
  color: rgb(107 114 128 / 0.15);
}
.hx .text-gray-500\/20 {
  color: rgb(107 114 128 / 0.2);
}
.hx .text-gray-500\/25 {
  color: rgb(107 114 128 / 0.25);
}
.hx .text-gray-500\/30 {
  color: rgb(107 114 128 / 0.3);
}
.hx .text-gray-500\/35 {
  color: rgb(107 114 128 / 0.35);
}
.hx .text-gray-500\/40 {
  color: rgb(107 114 128 / 0.4);
}
.hx .text-gray-500\/45 {
  color: rgb(107 114 128 / 0.45);
}
.hx .text-gray-500\/5 {
  color: rgb(107 114 128 / 0.05);
}
.hx .text-gray-500\/50 {
  color: rgb(107 114 128 / 0.5);
}
.hx .text-gray-500\/55 {
  color: rgb(107 114 128 / 0.55);
}
.hx .text-gray-500\/60 {
  color: rgb(107 114 128 / 0.6);
}
.hx .text-gray-500\/65 {
  color: rgb(107 114 128 / 0.65);
}
.hx .text-gray-500\/70 {
  color: rgb(107 114 128 / 0.7);
}
.hx .text-gray-500\/75 {
  color: rgb(107 114 128 / 0.75);
}
.hx .text-gray-500\/80 {
  color: rgb(107 114 128 / 0.8);
}
.hx .text-gray-500\/85 {
  color: rgb(107 114 128 / 0.85);
}
.hx .text-gray-500\/90 {
  color: rgb(107 114 128 / 0.9);
}
.hx .text-gray-500\/95 {
  color: rgb(107 114 128 / 0.95);
}
.hx .text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.hx .text-gray-600\/0 {
  color: rgb(75 85 99 / 0);
}
.hx .text-gray-600\/10 {
  color: rgb(75 85 99 / 0.1);
}
.hx .text-gray-600\/100 {
  color: rgb(75 85 99 / 1);
}
.hx .text-gray-600\/15 {
  color: rgb(75 85 99 / 0.15);
}
.hx .text-gray-600\/20 {
  color: rgb(75 85 99 / 0.2);
}
.hx .text-gray-600\/25 {
  color: rgb(75 85 99 / 0.25);
}
.hx .text-gray-600\/30 {
  color: rgb(75 85 99 / 0.3);
}
.hx .text-gray-600\/35 {
  color: rgb(75 85 99 / 0.35);
}
.hx .text-gray-600\/40 {
  color: rgb(75 85 99 / 0.4);
}
.hx .text-gray-600\/45 {
  color: rgb(75 85 99 / 0.45);
}
.hx .text-gray-600\/5 {
  color: rgb(75 85 99 / 0.05);
}
.hx .text-gray-600\/50 {
  color: rgb(75 85 99 / 0.5);
}
.hx .text-gray-600\/55 {
  color: rgb(75 85 99 / 0.55);
}
.hx .text-gray-600\/60 {
  color: rgb(75 85 99 / 0.6);
}
.hx .text-gray-600\/65 {
  color: rgb(75 85 99 / 0.65);
}
.hx .text-gray-600\/70 {
  color: rgb(75 85 99 / 0.7);
}
.hx .text-gray-600\/75 {
  color: rgb(75 85 99 / 0.75);
}
.hx .text-gray-600\/80 {
  color: rgb(75 85 99 / 0.8);
}
.hx .text-gray-600\/85 {
  color: rgb(75 85 99 / 0.85);
}
.hx .text-gray-600\/90 {
  color: rgb(75 85 99 / 0.9);
}
.hx .text-gray-600\/95 {
  color: rgb(75 85 99 / 0.95);
}
.hx .text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hx .text-gray-700\/0 {
  color: rgb(55 65 81 / 0);
}
.hx .text-gray-700\/10 {
  color: rgb(55 65 81 / 0.1);
}
.hx .text-gray-700\/100 {
  color: rgb(55 65 81 / 1);
}
.hx .text-gray-700\/15 {
  color: rgb(55 65 81 / 0.15);
}
.hx .text-gray-700\/20 {
  color: rgb(55 65 81 / 0.2);
}
.hx .text-gray-700\/25 {
  color: rgb(55 65 81 / 0.25);
}
.hx .text-gray-700\/30 {
  color: rgb(55 65 81 / 0.3);
}
.hx .text-gray-700\/35 {
  color: rgb(55 65 81 / 0.35);
}
.hx .text-gray-700\/40 {
  color: rgb(55 65 81 / 0.4);
}
.hx .text-gray-700\/45 {
  color: rgb(55 65 81 / 0.45);
}
.hx .text-gray-700\/5 {
  color: rgb(55 65 81 / 0.05);
}
.hx .text-gray-700\/50 {
  color: rgb(55 65 81 / 0.5);
}
.hx .text-gray-700\/55 {
  color: rgb(55 65 81 / 0.55);
}
.hx .text-gray-700\/60 {
  color: rgb(55 65 81 / 0.6);
}
.hx .text-gray-700\/65 {
  color: rgb(55 65 81 / 0.65);
}
.hx .text-gray-700\/70 {
  color: rgb(55 65 81 / 0.7);
}
.hx .text-gray-700\/75 {
  color: rgb(55 65 81 / 0.75);
}
.hx .text-gray-700\/80 {
  color: rgb(55 65 81 / 0.8);
}
.hx .text-gray-700\/85 {
  color: rgb(55 65 81 / 0.85);
}
.hx .text-gray-700\/90 {
  color: rgb(55 65 81 / 0.9);
}
.hx .text-gray-700\/95 {
  color: rgb(55 65 81 / 0.95);
}
.hx .text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.hx .text-gray-800\/0 {
  color: rgb(31 41 55 / 0);
}
.hx .text-gray-800\/10 {
  color: rgb(31 41 55 / 0.1);
}
.hx .text-gray-800\/100 {
  color: rgb(31 41 55 / 1);
}
.hx .text-gray-800\/15 {
  color: rgb(31 41 55 / 0.15);
}
.hx .text-gray-800\/20 {
  color: rgb(31 41 55 / 0.2);
}
.hx .text-gray-800\/25 {
  color: rgb(31 41 55 / 0.25);
}
.hx .text-gray-800\/30 {
  color: rgb(31 41 55 / 0.3);
}
.hx .text-gray-800\/35 {
  color: rgb(31 41 55 / 0.35);
}
.hx .text-gray-800\/40 {
  color: rgb(31 41 55 / 0.4);
}
.hx .text-gray-800\/45 {
  color: rgb(31 41 55 / 0.45);
}
.hx .text-gray-800\/5 {
  color: rgb(31 41 55 / 0.05);
}
.hx .text-gray-800\/50 {
  color: rgb(31 41 55 / 0.5);
}
.hx .text-gray-800\/55 {
  color: rgb(31 41 55 / 0.55);
}
.hx .text-gray-800\/60 {
  color: rgb(31 41 55 / 0.6);
}
.hx .text-gray-800\/65 {
  color: rgb(31 41 55 / 0.65);
}
.hx .text-gray-800\/70 {
  color: rgb(31 41 55 / 0.7);
}
.hx .text-gray-800\/75 {
  color: rgb(31 41 55 / 0.75);
}
.hx .text-gray-800\/80 {
  color: rgb(31 41 55 / 0.8);
}
.hx .text-gray-800\/85 {
  color: rgb(31 41 55 / 0.85);
}
.hx .text-gray-800\/90 {
  color: rgb(31 41 55 / 0.9);
}
.hx .text-gray-800\/95 {
  color: rgb(31 41 55 / 0.95);
}
.hx .text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hx .text-gray-900\/0 {
  color: rgb(17 24 39 / 0);
}
.hx .text-gray-900\/10 {
  color: rgb(17 24 39 / 0.1);
}
.hx .text-gray-900\/100 {
  color: rgb(17 24 39 / 1);
}
.hx .text-gray-900\/15 {
  color: rgb(17 24 39 / 0.15);
}
.hx .text-gray-900\/20 {
  color: rgb(17 24 39 / 0.2);
}
.hx .text-gray-900\/25 {
  color: rgb(17 24 39 / 0.25);
}
.hx .text-gray-900\/30 {
  color: rgb(17 24 39 / 0.3);
}
.hx .text-gray-900\/35 {
  color: rgb(17 24 39 / 0.35);
}
.hx .text-gray-900\/40 {
  color: rgb(17 24 39 / 0.4);
}
.hx .text-gray-900\/45 {
  color: rgb(17 24 39 / 0.45);
}
.hx .text-gray-900\/5 {
  color: rgb(17 24 39 / 0.05);
}
.hx .text-gray-900\/50 {
  color: rgb(17 24 39 / 0.5);
}
.hx .text-gray-900\/55 {
  color: rgb(17 24 39 / 0.55);
}
.hx .text-gray-900\/60 {
  color: rgb(17 24 39 / 0.6);
}
.hx .text-gray-900\/65 {
  color: rgb(17 24 39 / 0.65);
}
.hx .text-gray-900\/70 {
  color: rgb(17 24 39 / 0.7);
}
.hx .text-gray-900\/75 {
  color: rgb(17 24 39 / 0.75);
}
.hx .text-gray-900\/80 {
  color: rgb(17 24 39 / 0.8);
}
.hx .text-gray-900\/85 {
  color: rgb(17 24 39 / 0.85);
}
.hx .text-gray-900\/90 {
  color: rgb(17 24 39 / 0.9);
}
.hx .text-gray-900\/95 {
  color: rgb(17 24 39 / 0.95);
}
.hx .text-gray-950 {
  --tw-text-opacity: 1;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1));
}
.hx .text-gray-950\/0 {
  color: rgb(3 7 18 / 0);
}
.hx .text-gray-950\/10 {
  color: rgb(3 7 18 / 0.1);
}
.hx .text-gray-950\/100 {
  color: rgb(3 7 18 / 1);
}
.hx .text-gray-950\/15 {
  color: rgb(3 7 18 / 0.15);
}
.hx .text-gray-950\/20 {
  color: rgb(3 7 18 / 0.2);
}
.hx .text-gray-950\/25 {
  color: rgb(3 7 18 / 0.25);
}
.hx .text-gray-950\/30 {
  color: rgb(3 7 18 / 0.3);
}
.hx .text-gray-950\/35 {
  color: rgb(3 7 18 / 0.35);
}
.hx .text-gray-950\/40 {
  color: rgb(3 7 18 / 0.4);
}
.hx .text-gray-950\/45 {
  color: rgb(3 7 18 / 0.45);
}
.hx .text-gray-950\/5 {
  color: rgb(3 7 18 / 0.05);
}
.hx .text-gray-950\/50 {
  color: rgb(3 7 18 / 0.5);
}
.hx .text-gray-950\/55 {
  color: rgb(3 7 18 / 0.55);
}
.hx .text-gray-950\/60 {
  color: rgb(3 7 18 / 0.6);
}
.hx .text-gray-950\/65 {
  color: rgb(3 7 18 / 0.65);
}
.hx .text-gray-950\/70 {
  color: rgb(3 7 18 / 0.7);
}
.hx .text-gray-950\/75 {
  color: rgb(3 7 18 / 0.75);
}
.hx .text-gray-950\/80 {
  color: rgb(3 7 18 / 0.8);
}
.hx .text-gray-950\/85 {
  color: rgb(3 7 18 / 0.85);
}
.hx .text-gray-950\/90 {
  color: rgb(3 7 18 / 0.9);
}
.hx .text-gray-950\/95 {
  color: rgb(3 7 18 / 0.95);
}
.hx .text-green-100 {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / var(--tw-text-opacity, 1));
}
.hx .text-green-100\/0 {
  color: rgb(220 252 231 / 0);
}
.hx .text-green-100\/10 {
  color: rgb(220 252 231 / 0.1);
}
.hx .text-green-100\/100 {
  color: rgb(220 252 231 / 1);
}
.hx .text-green-100\/15 {
  color: rgb(220 252 231 / 0.15);
}
.hx .text-green-100\/20 {
  color: rgb(220 252 231 / 0.2);
}
.hx .text-green-100\/25 {
  color: rgb(220 252 231 / 0.25);
}
.hx .text-green-100\/30 {
  color: rgb(220 252 231 / 0.3);
}
.hx .text-green-100\/35 {
  color: rgb(220 252 231 / 0.35);
}
.hx .text-green-100\/40 {
  color: rgb(220 252 231 / 0.4);
}
.hx .text-green-100\/45 {
  color: rgb(220 252 231 / 0.45);
}
.hx .text-green-100\/5 {
  color: rgb(220 252 231 / 0.05);
}
.hx .text-green-100\/50 {
  color: rgb(220 252 231 / 0.5);
}
.hx .text-green-100\/55 {
  color: rgb(220 252 231 / 0.55);
}
.hx .text-green-100\/60 {
  color: rgb(220 252 231 / 0.6);
}
.hx .text-green-100\/65 {
  color: rgb(220 252 231 / 0.65);
}
.hx .text-green-100\/70 {
  color: rgb(220 252 231 / 0.7);
}
.hx .text-green-100\/75 {
  color: rgb(220 252 231 / 0.75);
}
.hx .text-green-100\/80 {
  color: rgb(220 252 231 / 0.8);
}
.hx .text-green-100\/85 {
  color: rgb(220 252 231 / 0.85);
}
.hx .text-green-100\/90 {
  color: rgb(220 252 231 / 0.9);
}
.hx .text-green-100\/95 {
  color: rgb(220 252 231 / 0.95);
}
.hx .text-green-200 {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.hx .text-green-200\/0 {
  color: rgb(187 247 208 / 0);
}
.hx .text-green-200\/10 {
  color: rgb(187 247 208 / 0.1);
}
.hx .text-green-200\/100 {
  color: rgb(187 247 208 / 1);
}
.hx .text-green-200\/15 {
  color: rgb(187 247 208 / 0.15);
}
.hx .text-green-200\/20 {
  color: rgb(187 247 208 / 0.2);
}
.hx .text-green-200\/25 {
  color: rgb(187 247 208 / 0.25);
}
.hx .text-green-200\/30 {
  color: rgb(187 247 208 / 0.3);
}
.hx .text-green-200\/35 {
  color: rgb(187 247 208 / 0.35);
}
.hx .text-green-200\/40 {
  color: rgb(187 247 208 / 0.4);
}
.hx .text-green-200\/45 {
  color: rgb(187 247 208 / 0.45);
}
.hx .text-green-200\/5 {
  color: rgb(187 247 208 / 0.05);
}
.hx .text-green-200\/50 {
  color: rgb(187 247 208 / 0.5);
}
.hx .text-green-200\/55 {
  color: rgb(187 247 208 / 0.55);
}
.hx .text-green-200\/60 {
  color: rgb(187 247 208 / 0.6);
}
.hx .text-green-200\/65 {
  color: rgb(187 247 208 / 0.65);
}
.hx .text-green-200\/70 {
  color: rgb(187 247 208 / 0.7);
}
.hx .text-green-200\/75 {
  color: rgb(187 247 208 / 0.75);
}
.hx .text-green-200\/80 {
  color: rgb(187 247 208 / 0.8);
}
.hx .text-green-200\/85 {
  color: rgb(187 247 208 / 0.85);
}
.hx .text-green-200\/90 {
  color: rgb(187 247 208 / 0.9);
}
.hx .text-green-200\/95 {
  color: rgb(187 247 208 / 0.95);
}
.hx .text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.hx .text-green-300\/0 {
  color: rgb(134 239 172 / 0);
}
.hx .text-green-300\/10 {
  color: rgb(134 239 172 / 0.1);
}
.hx .text-green-300\/100 {
  color: rgb(134 239 172 / 1);
}
.hx .text-green-300\/15 {
  color: rgb(134 239 172 / 0.15);
}
.hx .text-green-300\/20 {
  color: rgb(134 239 172 / 0.2);
}
.hx .text-green-300\/25 {
  color: rgb(134 239 172 / 0.25);
}
.hx .text-green-300\/30 {
  color: rgb(134 239 172 / 0.3);
}
.hx .text-green-300\/35 {
  color: rgb(134 239 172 / 0.35);
}
.hx .text-green-300\/40 {
  color: rgb(134 239 172 / 0.4);
}
.hx .text-green-300\/45 {
  color: rgb(134 239 172 / 0.45);
}
.hx .text-green-300\/5 {
  color: rgb(134 239 172 / 0.05);
}
.hx .text-green-300\/50 {
  color: rgb(134 239 172 / 0.5);
}
.hx .text-green-300\/55 {
  color: rgb(134 239 172 / 0.55);
}
.hx .text-green-300\/60 {
  color: rgb(134 239 172 / 0.6);
}
.hx .text-green-300\/65 {
  color: rgb(134 239 172 / 0.65);
}
.hx .text-green-300\/70 {
  color: rgb(134 239 172 / 0.7);
}
.hx .text-green-300\/75 {
  color: rgb(134 239 172 / 0.75);
}
.hx .text-green-300\/80 {
  color: rgb(134 239 172 / 0.8);
}
.hx .text-green-300\/85 {
  color: rgb(134 239 172 / 0.85);
}
.hx .text-green-300\/90 {
  color: rgb(134 239 172 / 0.9);
}
.hx .text-green-300\/95 {
  color: rgb(134 239 172 / 0.95);
}
.hx .text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.hx .text-green-400\/0 {
  color: rgb(74 222 128 / 0);
}
.hx .text-green-400\/10 {
  color: rgb(74 222 128 / 0.1);
}
.hx .text-green-400\/100 {
  color: rgb(74 222 128 / 1);
}
.hx .text-green-400\/15 {
  color: rgb(74 222 128 / 0.15);
}
.hx .text-green-400\/20 {
  color: rgb(74 222 128 / 0.2);
}
.hx .text-green-400\/25 {
  color: rgb(74 222 128 / 0.25);
}
.hx .text-green-400\/30 {
  color: rgb(74 222 128 / 0.3);
}
.hx .text-green-400\/35 {
  color: rgb(74 222 128 / 0.35);
}
.hx .text-green-400\/40 {
  color: rgb(74 222 128 / 0.4);
}
.hx .text-green-400\/45 {
  color: rgb(74 222 128 / 0.45);
}
.hx .text-green-400\/5 {
  color: rgb(74 222 128 / 0.05);
}
.hx .text-green-400\/50 {
  color: rgb(74 222 128 / 0.5);
}
.hx .text-green-400\/55 {
  color: rgb(74 222 128 / 0.55);
}
.hx .text-green-400\/60 {
  color: rgb(74 222 128 / 0.6);
}
.hx .text-green-400\/65 {
  color: rgb(74 222 128 / 0.65);
}
.hx .text-green-400\/70 {
  color: rgb(74 222 128 / 0.7);
}
.hx .text-green-400\/75 {
  color: rgb(74 222 128 / 0.75);
}
.hx .text-green-400\/80 {
  color: rgb(74 222 128 / 0.8);
}
.hx .text-green-400\/85 {
  color: rgb(74 222 128 / 0.85);
}
.hx .text-green-400\/90 {
  color: rgb(74 222 128 / 0.9);
}
.hx .text-green-400\/95 {
  color: rgb(74 222 128 / 0.95);
}
.hx .text-green-50 {
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity, 1));
}
.hx .text-green-50\/0 {
  color: rgb(240 253 244 / 0);
}
.hx .text-green-50\/10 {
  color: rgb(240 253 244 / 0.1);
}
.hx .text-green-50\/100 {
  color: rgb(240 253 244 / 1);
}
.hx .text-green-50\/15 {
  color: rgb(240 253 244 / 0.15);
}
.hx .text-green-50\/20 {
  color: rgb(240 253 244 / 0.2);
}
.hx .text-green-50\/25 {
  color: rgb(240 253 244 / 0.25);
}
.hx .text-green-50\/30 {
  color: rgb(240 253 244 / 0.3);
}
.hx .text-green-50\/35 {
  color: rgb(240 253 244 / 0.35);
}
.hx .text-green-50\/40 {
  color: rgb(240 253 244 / 0.4);
}
.hx .text-green-50\/45 {
  color: rgb(240 253 244 / 0.45);
}
.hx .text-green-50\/5 {
  color: rgb(240 253 244 / 0.05);
}
.hx .text-green-50\/50 {
  color: rgb(240 253 244 / 0.5);
}
.hx .text-green-50\/55 {
  color: rgb(240 253 244 / 0.55);
}
.hx .text-green-50\/60 {
  color: rgb(240 253 244 / 0.6);
}
.hx .text-green-50\/65 {
  color: rgb(240 253 244 / 0.65);
}
.hx .text-green-50\/70 {
  color: rgb(240 253 244 / 0.7);
}
.hx .text-green-50\/75 {
  color: rgb(240 253 244 / 0.75);
}
.hx .text-green-50\/80 {
  color: rgb(240 253 244 / 0.8);
}
.hx .text-green-50\/85 {
  color: rgb(240 253 244 / 0.85);
}
.hx .text-green-50\/90 {
  color: rgb(240 253 244 / 0.9);
}
.hx .text-green-50\/95 {
  color: rgb(240 253 244 / 0.95);
}
.hx .text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.hx .text-green-500\/0 {
  color: rgb(34 197 94 / 0);
}
.hx .text-green-500\/10 {
  color: rgb(34 197 94 / 0.1);
}
.hx .text-green-500\/100 {
  color: rgb(34 197 94 / 1);
}
.hx .text-green-500\/15 {
  color: rgb(34 197 94 / 0.15);
}
.hx .text-green-500\/20 {
  color: rgb(34 197 94 / 0.2);
}
.hx .text-green-500\/25 {
  color: rgb(34 197 94 / 0.25);
}
.hx .text-green-500\/30 {
  color: rgb(34 197 94 / 0.3);
}
.hx .text-green-500\/35 {
  color: rgb(34 197 94 / 0.35);
}
.hx .text-green-500\/40 {
  color: rgb(34 197 94 / 0.4);
}
.hx .text-green-500\/45 {
  color: rgb(34 197 94 / 0.45);
}
.hx .text-green-500\/5 {
  color: rgb(34 197 94 / 0.05);
}
.hx .text-green-500\/50 {
  color: rgb(34 197 94 / 0.5);
}
.hx .text-green-500\/55 {
  color: rgb(34 197 94 / 0.55);
}
.hx .text-green-500\/60 {
  color: rgb(34 197 94 / 0.6);
}
.hx .text-green-500\/65 {
  color: rgb(34 197 94 / 0.65);
}
.hx .text-green-500\/70 {
  color: rgb(34 197 94 / 0.7);
}
.hx .text-green-500\/75 {
  color: rgb(34 197 94 / 0.75);
}
.hx .text-green-500\/80 {
  color: rgb(34 197 94 / 0.8);
}
.hx .text-green-500\/85 {
  color: rgb(34 197 94 / 0.85);
}
.hx .text-green-500\/90 {
  color: rgb(34 197 94 / 0.9);
}
.hx .text-green-500\/95 {
  color: rgb(34 197 94 / 0.95);
}
.hx .text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.hx .text-green-600\/0 {
  color: rgb(22 163 74 / 0);
}
.hx .text-green-600\/10 {
  color: rgb(22 163 74 / 0.1);
}
.hx .text-green-600\/100 {
  color: rgb(22 163 74 / 1);
}
.hx .text-green-600\/15 {
  color: rgb(22 163 74 / 0.15);
}
.hx .text-green-600\/20 {
  color: rgb(22 163 74 / 0.2);
}
.hx .text-green-600\/25 {
  color: rgb(22 163 74 / 0.25);
}
.hx .text-green-600\/30 {
  color: rgb(22 163 74 / 0.3);
}
.hx .text-green-600\/35 {
  color: rgb(22 163 74 / 0.35);
}
.hx .text-green-600\/40 {
  color: rgb(22 163 74 / 0.4);
}
.hx .text-green-600\/45 {
  color: rgb(22 163 74 / 0.45);
}
.hx .text-green-600\/5 {
  color: rgb(22 163 74 / 0.05);
}
.hx .text-green-600\/50 {
  color: rgb(22 163 74 / 0.5);
}
.hx .text-green-600\/55 {
  color: rgb(22 163 74 / 0.55);
}
.hx .text-green-600\/60 {
  color: rgb(22 163 74 / 0.6);
}
.hx .text-green-600\/65 {
  color: rgb(22 163 74 / 0.65);
}
.hx .text-green-600\/70 {
  color: rgb(22 163 74 / 0.7);
}
.hx .text-green-600\/75 {
  color: rgb(22 163 74 / 0.75);
}
.hx .text-green-600\/80 {
  color: rgb(22 163 74 / 0.8);
}
.hx .text-green-600\/85 {
  color: rgb(22 163 74 / 0.85);
}
.hx .text-green-600\/90 {
  color: rgb(22 163 74 / 0.9);
}
.hx .text-green-600\/95 {
  color: rgb(22 163 74 / 0.95);
}
.hx .text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.hx .text-green-700\/0 {
  color: rgb(21 128 61 / 0);
}
.hx .text-green-700\/10 {
  color: rgb(21 128 61 / 0.1);
}
.hx .text-green-700\/100 {
  color: rgb(21 128 61 / 1);
}
.hx .text-green-700\/15 {
  color: rgb(21 128 61 / 0.15);
}
.hx .text-green-700\/20 {
  color: rgb(21 128 61 / 0.2);
}
.hx .text-green-700\/25 {
  color: rgb(21 128 61 / 0.25);
}
.hx .text-green-700\/30 {
  color: rgb(21 128 61 / 0.3);
}
.hx .text-green-700\/35 {
  color: rgb(21 128 61 / 0.35);
}
.hx .text-green-700\/40 {
  color: rgb(21 128 61 / 0.4);
}
.hx .text-green-700\/45 {
  color: rgb(21 128 61 / 0.45);
}
.hx .text-green-700\/5 {
  color: rgb(21 128 61 / 0.05);
}
.hx .text-green-700\/50 {
  color: rgb(21 128 61 / 0.5);
}
.hx .text-green-700\/55 {
  color: rgb(21 128 61 / 0.55);
}
.hx .text-green-700\/60 {
  color: rgb(21 128 61 / 0.6);
}
.hx .text-green-700\/65 {
  color: rgb(21 128 61 / 0.65);
}
.hx .text-green-700\/70 {
  color: rgb(21 128 61 / 0.7);
}
.hx .text-green-700\/75 {
  color: rgb(21 128 61 / 0.75);
}
.hx .text-green-700\/80 {
  color: rgb(21 128 61 / 0.8);
}
.hx .text-green-700\/85 {
  color: rgb(21 128 61 / 0.85);
}
.hx .text-green-700\/90 {
  color: rgb(21 128 61 / 0.9);
}
.hx .text-green-700\/95 {
  color: rgb(21 128 61 / 0.95);
}
.hx .text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.hx .text-green-800\/0 {
  color: rgb(22 101 52 / 0);
}
.hx .text-green-800\/10 {
  color: rgb(22 101 52 / 0.1);
}
.hx .text-green-800\/100 {
  color: rgb(22 101 52 / 1);
}
.hx .text-green-800\/15 {
  color: rgb(22 101 52 / 0.15);
}
.hx .text-green-800\/20 {
  color: rgb(22 101 52 / 0.2);
}
.hx .text-green-800\/25 {
  color: rgb(22 101 52 / 0.25);
}
.hx .text-green-800\/30 {
  color: rgb(22 101 52 / 0.3);
}
.hx .text-green-800\/35 {
  color: rgb(22 101 52 / 0.35);
}
.hx .text-green-800\/40 {
  color: rgb(22 101 52 / 0.4);
}
.hx .text-green-800\/45 {
  color: rgb(22 101 52 / 0.45);
}
.hx .text-green-800\/5 {
  color: rgb(22 101 52 / 0.05);
}
.hx .text-green-800\/50 {
  color: rgb(22 101 52 / 0.5);
}
.hx .text-green-800\/55 {
  color: rgb(22 101 52 / 0.55);
}
.hx .text-green-800\/60 {
  color: rgb(22 101 52 / 0.6);
}
.hx .text-green-800\/65 {
  color: rgb(22 101 52 / 0.65);
}
.hx .text-green-800\/70 {
  color: rgb(22 101 52 / 0.7);
}
.hx .text-green-800\/75 {
  color: rgb(22 101 52 / 0.75);
}
.hx .text-green-800\/80 {
  color: rgb(22 101 52 / 0.8);
}
.hx .text-green-800\/85 {
  color: rgb(22 101 52 / 0.85);
}
.hx .text-green-800\/90 {
  color: rgb(22 101 52 / 0.9);
}
.hx .text-green-800\/95 {
  color: rgb(22 101 52 / 0.95);
}
.hx .text-green-900 {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.hx .text-green-900\/0 {
  color: rgb(20 83 45 / 0);
}
.hx .text-green-900\/10 {
  color: rgb(20 83 45 / 0.1);
}
.hx .text-green-900\/100 {
  color: rgb(20 83 45 / 1);
}
.hx .text-green-900\/15 {
  color: rgb(20 83 45 / 0.15);
}
.hx .text-green-900\/20 {
  color: rgb(20 83 45 / 0.2);
}
.hx .text-green-900\/25 {
  color: rgb(20 83 45 / 0.25);
}
.hx .text-green-900\/30 {
  color: rgb(20 83 45 / 0.3);
}
.hx .text-green-900\/35 {
  color: rgb(20 83 45 / 0.35);
}
.hx .text-green-900\/40 {
  color: rgb(20 83 45 / 0.4);
}
.hx .text-green-900\/45 {
  color: rgb(20 83 45 / 0.45);
}
.hx .text-green-900\/5 {
  color: rgb(20 83 45 / 0.05);
}
.hx .text-green-900\/50 {
  color: rgb(20 83 45 / 0.5);
}
.hx .text-green-900\/55 {
  color: rgb(20 83 45 / 0.55);
}
.hx .text-green-900\/60 {
  color: rgb(20 83 45 / 0.6);
}
.hx .text-green-900\/65 {
  color: rgb(20 83 45 / 0.65);
}
.hx .text-green-900\/70 {
  color: rgb(20 83 45 / 0.7);
}
.hx .text-green-900\/75 {
  color: rgb(20 83 45 / 0.75);
}
.hx .text-green-900\/80 {
  color: rgb(20 83 45 / 0.8);
}
.hx .text-green-900\/85 {
  color: rgb(20 83 45 / 0.85);
}
.hx .text-green-900\/90 {
  color: rgb(20 83 45 / 0.9);
}
.hx .text-green-900\/95 {
  color: rgb(20 83 45 / 0.95);
}
.hx .text-green-950 {
  --tw-text-opacity: 1;
  color: rgb(5 46 22 / var(--tw-text-opacity, 1));
}
.hx .text-green-950\/0 {
  color: rgb(5 46 22 / 0);
}
.hx .text-green-950\/10 {
  color: rgb(5 46 22 / 0.1);
}
.hx .text-green-950\/100 {
  color: rgb(5 46 22 / 1);
}
.hx .text-green-950\/15 {
  color: rgb(5 46 22 / 0.15);
}
.hx .text-green-950\/20 {
  color: rgb(5 46 22 / 0.2);
}
.hx .text-green-950\/25 {
  color: rgb(5 46 22 / 0.25);
}
.hx .text-green-950\/30 {
  color: rgb(5 46 22 / 0.3);
}
.hx .text-green-950\/35 {
  color: rgb(5 46 22 / 0.35);
}
.hx .text-green-950\/40 {
  color: rgb(5 46 22 / 0.4);
}
.hx .text-green-950\/45 {
  color: rgb(5 46 22 / 0.45);
}
.hx .text-green-950\/5 {
  color: rgb(5 46 22 / 0.05);
}
.hx .text-green-950\/50 {
  color: rgb(5 46 22 / 0.5);
}
.hx .text-green-950\/55 {
  color: rgb(5 46 22 / 0.55);
}
.hx .text-green-950\/60 {
  color: rgb(5 46 22 / 0.6);
}
.hx .text-green-950\/65 {
  color: rgb(5 46 22 / 0.65);
}
.hx .text-green-950\/70 {
  color: rgb(5 46 22 / 0.7);
}
.hx .text-green-950\/75 {
  color: rgb(5 46 22 / 0.75);
}
.hx .text-green-950\/80 {
  color: rgb(5 46 22 / 0.8);
}
.hx .text-green-950\/85 {
  color: rgb(5 46 22 / 0.85);
}
.hx .text-green-950\/90 {
  color: rgb(5 46 22 / 0.9);
}
.hx .text-green-950\/95 {
  color: rgb(5 46 22 / 0.95);
}
.hx .text-indigo-100 {
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-100\/0 {
  color: rgb(224 231 255 / 0);
}
.hx .text-indigo-100\/10 {
  color: rgb(224 231 255 / 0.1);
}
.hx .text-indigo-100\/100 {
  color: rgb(224 231 255 / 1);
}
.hx .text-indigo-100\/15 {
  color: rgb(224 231 255 / 0.15);
}
.hx .text-indigo-100\/20 {
  color: rgb(224 231 255 / 0.2);
}
.hx .text-indigo-100\/25 {
  color: rgb(224 231 255 / 0.25);
}
.hx .text-indigo-100\/30 {
  color: rgb(224 231 255 / 0.3);
}
.hx .text-indigo-100\/35 {
  color: rgb(224 231 255 / 0.35);
}
.hx .text-indigo-100\/40 {
  color: rgb(224 231 255 / 0.4);
}
.hx .text-indigo-100\/45 {
  color: rgb(224 231 255 / 0.45);
}
.hx .text-indigo-100\/5 {
  color: rgb(224 231 255 / 0.05);
}
.hx .text-indigo-100\/50 {
  color: rgb(224 231 255 / 0.5);
}
.hx .text-indigo-100\/55 {
  color: rgb(224 231 255 / 0.55);
}
.hx .text-indigo-100\/60 {
  color: rgb(224 231 255 / 0.6);
}
.hx .text-indigo-100\/65 {
  color: rgb(224 231 255 / 0.65);
}
.hx .text-indigo-100\/70 {
  color: rgb(224 231 255 / 0.7);
}
.hx .text-indigo-100\/75 {
  color: rgb(224 231 255 / 0.75);
}
.hx .text-indigo-100\/80 {
  color: rgb(224 231 255 / 0.8);
}
.hx .text-indigo-100\/85 {
  color: rgb(224 231 255 / 0.85);
}
.hx .text-indigo-100\/90 {
  color: rgb(224 231 255 / 0.9);
}
.hx .text-indigo-100\/95 {
  color: rgb(224 231 255 / 0.95);
}
.hx .text-indigo-200 {
  --tw-text-opacity: 1;
  color: rgb(199 210 254 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-200\/0 {
  color: rgb(199 210 254 / 0);
}
.hx .text-indigo-200\/10 {
  color: rgb(199 210 254 / 0.1);
}
.hx .text-indigo-200\/100 {
  color: rgb(199 210 254 / 1);
}
.hx .text-indigo-200\/15 {
  color: rgb(199 210 254 / 0.15);
}
.hx .text-indigo-200\/20 {
  color: rgb(199 210 254 / 0.2);
}
.hx .text-indigo-200\/25 {
  color: rgb(199 210 254 / 0.25);
}
.hx .text-indigo-200\/30 {
  color: rgb(199 210 254 / 0.3);
}
.hx .text-indigo-200\/35 {
  color: rgb(199 210 254 / 0.35);
}
.hx .text-indigo-200\/40 {
  color: rgb(199 210 254 / 0.4);
}
.hx .text-indigo-200\/45 {
  color: rgb(199 210 254 / 0.45);
}
.hx .text-indigo-200\/5 {
  color: rgb(199 210 254 / 0.05);
}
.hx .text-indigo-200\/50 {
  color: rgb(199 210 254 / 0.5);
}
.hx .text-indigo-200\/55 {
  color: rgb(199 210 254 / 0.55);
}
.hx .text-indigo-200\/60 {
  color: rgb(199 210 254 / 0.6);
}
.hx .text-indigo-200\/65 {
  color: rgb(199 210 254 / 0.65);
}
.hx .text-indigo-200\/70 {
  color: rgb(199 210 254 / 0.7);
}
.hx .text-indigo-200\/75 {
  color: rgb(199 210 254 / 0.75);
}
.hx .text-indigo-200\/80 {
  color: rgb(199 210 254 / 0.8);
}
.hx .text-indigo-200\/85 {
  color: rgb(199 210 254 / 0.85);
}
.hx .text-indigo-200\/90 {
  color: rgb(199 210 254 / 0.9);
}
.hx .text-indigo-200\/95 {
  color: rgb(199 210 254 / 0.95);
}
.hx .text-indigo-300 {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-300\/0 {
  color: rgb(165 180 252 / 0);
}
.hx .text-indigo-300\/10 {
  color: rgb(165 180 252 / 0.1);
}
.hx .text-indigo-300\/100 {
  color: rgb(165 180 252 / 1);
}
.hx .text-indigo-300\/15 {
  color: rgb(165 180 252 / 0.15);
}
.hx .text-indigo-300\/20 {
  color: rgb(165 180 252 / 0.2);
}
.hx .text-indigo-300\/25 {
  color: rgb(165 180 252 / 0.25);
}
.hx .text-indigo-300\/30 {
  color: rgb(165 180 252 / 0.3);
}
.hx .text-indigo-300\/35 {
  color: rgb(165 180 252 / 0.35);
}
.hx .text-indigo-300\/40 {
  color: rgb(165 180 252 / 0.4);
}
.hx .text-indigo-300\/45 {
  color: rgb(165 180 252 / 0.45);
}
.hx .text-indigo-300\/5 {
  color: rgb(165 180 252 / 0.05);
}
.hx .text-indigo-300\/50 {
  color: rgb(165 180 252 / 0.5);
}
.hx .text-indigo-300\/55 {
  color: rgb(165 180 252 / 0.55);
}
.hx .text-indigo-300\/60 {
  color: rgb(165 180 252 / 0.6);
}
.hx .text-indigo-300\/65 {
  color: rgb(165 180 252 / 0.65);
}
.hx .text-indigo-300\/70 {
  color: rgb(165 180 252 / 0.7);
}
.hx .text-indigo-300\/75 {
  color: rgb(165 180 252 / 0.75);
}
.hx .text-indigo-300\/80 {
  color: rgb(165 180 252 / 0.8);
}
.hx .text-indigo-300\/85 {
  color: rgb(165 180 252 / 0.85);
}
.hx .text-indigo-300\/90 {
  color: rgb(165 180 252 / 0.9);
}
.hx .text-indigo-300\/95 {
  color: rgb(165 180 252 / 0.95);
}
.hx .text-indigo-400 {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-400\/0 {
  color: rgb(129 140 248 / 0);
}
.hx .text-indigo-400\/10 {
  color: rgb(129 140 248 / 0.1);
}
.hx .text-indigo-400\/100 {
  color: rgb(129 140 248 / 1);
}
.hx .text-indigo-400\/15 {
  color: rgb(129 140 248 / 0.15);
}
.hx .text-indigo-400\/20 {
  color: rgb(129 140 248 / 0.2);
}
.hx .text-indigo-400\/25 {
  color: rgb(129 140 248 / 0.25);
}
.hx .text-indigo-400\/30 {
  color: rgb(129 140 248 / 0.3);
}
.hx .text-indigo-400\/35 {
  color: rgb(129 140 248 / 0.35);
}
.hx .text-indigo-400\/40 {
  color: rgb(129 140 248 / 0.4);
}
.hx .text-indigo-400\/45 {
  color: rgb(129 140 248 / 0.45);
}
.hx .text-indigo-400\/5 {
  color: rgb(129 140 248 / 0.05);
}
.hx .text-indigo-400\/50 {
  color: rgb(129 140 248 / 0.5);
}
.hx .text-indigo-400\/55 {
  color: rgb(129 140 248 / 0.55);
}
.hx .text-indigo-400\/60 {
  color: rgb(129 140 248 / 0.6);
}
.hx .text-indigo-400\/65 {
  color: rgb(129 140 248 / 0.65);
}
.hx .text-indigo-400\/70 {
  color: rgb(129 140 248 / 0.7);
}
.hx .text-indigo-400\/75 {
  color: rgb(129 140 248 / 0.75);
}
.hx .text-indigo-400\/80 {
  color: rgb(129 140 248 / 0.8);
}
.hx .text-indigo-400\/85 {
  color: rgb(129 140 248 / 0.85);
}
.hx .text-indigo-400\/90 {
  color: rgb(129 140 248 / 0.9);
}
.hx .text-indigo-400\/95 {
  color: rgb(129 140 248 / 0.95);
}
.hx .text-indigo-50 {
  --tw-text-opacity: 1;
  color: rgb(238 242 255 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-50\/0 {
  color: rgb(238 242 255 / 0);
}
.hx .text-indigo-50\/10 {
  color: rgb(238 242 255 / 0.1);
}
.hx .text-indigo-50\/100 {
  color: rgb(238 242 255 / 1);
}
.hx .text-indigo-50\/15 {
  color: rgb(238 242 255 / 0.15);
}
.hx .text-indigo-50\/20 {
  color: rgb(238 242 255 / 0.2);
}
.hx .text-indigo-50\/25 {
  color: rgb(238 242 255 / 0.25);
}
.hx .text-indigo-50\/30 {
  color: rgb(238 242 255 / 0.3);
}
.hx .text-indigo-50\/35 {
  color: rgb(238 242 255 / 0.35);
}
.hx .text-indigo-50\/40 {
  color: rgb(238 242 255 / 0.4);
}
.hx .text-indigo-50\/45 {
  color: rgb(238 242 255 / 0.45);
}
.hx .text-indigo-50\/5 {
  color: rgb(238 242 255 / 0.05);
}
.hx .text-indigo-50\/50 {
  color: rgb(238 242 255 / 0.5);
}
.hx .text-indigo-50\/55 {
  color: rgb(238 242 255 / 0.55);
}
.hx .text-indigo-50\/60 {
  color: rgb(238 242 255 / 0.6);
}
.hx .text-indigo-50\/65 {
  color: rgb(238 242 255 / 0.65);
}
.hx .text-indigo-50\/70 {
  color: rgb(238 242 255 / 0.7);
}
.hx .text-indigo-50\/75 {
  color: rgb(238 242 255 / 0.75);
}
.hx .text-indigo-50\/80 {
  color: rgb(238 242 255 / 0.8);
}
.hx .text-indigo-50\/85 {
  color: rgb(238 242 255 / 0.85);
}
.hx .text-indigo-50\/90 {
  color: rgb(238 242 255 / 0.9);
}
.hx .text-indigo-50\/95 {
  color: rgb(238 242 255 / 0.95);
}
.hx .text-indigo-500 {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-500\/0 {
  color: rgb(99 102 241 / 0);
}
.hx .text-indigo-500\/10 {
  color: rgb(99 102 241 / 0.1);
}
.hx .text-indigo-500\/100 {
  color: rgb(99 102 241 / 1);
}
.hx .text-indigo-500\/15 {
  color: rgb(99 102 241 / 0.15);
}
.hx .text-indigo-500\/20 {
  color: rgb(99 102 241 / 0.2);
}
.hx .text-indigo-500\/25 {
  color: rgb(99 102 241 / 0.25);
}
.hx .text-indigo-500\/30 {
  color: rgb(99 102 241 / 0.3);
}
.hx .text-indigo-500\/35 {
  color: rgb(99 102 241 / 0.35);
}
.hx .text-indigo-500\/40 {
  color: rgb(99 102 241 / 0.4);
}
.hx .text-indigo-500\/45 {
  color: rgb(99 102 241 / 0.45);
}
.hx .text-indigo-500\/5 {
  color: rgb(99 102 241 / 0.05);
}
.hx .text-indigo-500\/50 {
  color: rgb(99 102 241 / 0.5);
}
.hx .text-indigo-500\/55 {
  color: rgb(99 102 241 / 0.55);
}
.hx .text-indigo-500\/60 {
  color: rgb(99 102 241 / 0.6);
}
.hx .text-indigo-500\/65 {
  color: rgb(99 102 241 / 0.65);
}
.hx .text-indigo-500\/70 {
  color: rgb(99 102 241 / 0.7);
}
.hx .text-indigo-500\/75 {
  color: rgb(99 102 241 / 0.75);
}
.hx .text-indigo-500\/80 {
  color: rgb(99 102 241 / 0.8);
}
.hx .text-indigo-500\/85 {
  color: rgb(99 102 241 / 0.85);
}
.hx .text-indigo-500\/90 {
  color: rgb(99 102 241 / 0.9);
}
.hx .text-indigo-500\/95 {
  color: rgb(99 102 241 / 0.95);
}
.hx .text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-600\/0 {
  color: rgb(79 70 229 / 0);
}
.hx .text-indigo-600\/10 {
  color: rgb(79 70 229 / 0.1);
}
.hx .text-indigo-600\/100 {
  color: rgb(79 70 229 / 1);
}
.hx .text-indigo-600\/15 {
  color: rgb(79 70 229 / 0.15);
}
.hx .text-indigo-600\/20 {
  color: rgb(79 70 229 / 0.2);
}
.hx .text-indigo-600\/25 {
  color: rgb(79 70 229 / 0.25);
}
.hx .text-indigo-600\/30 {
  color: rgb(79 70 229 / 0.3);
}
.hx .text-indigo-600\/35 {
  color: rgb(79 70 229 / 0.35);
}
.hx .text-indigo-600\/40 {
  color: rgb(79 70 229 / 0.4);
}
.hx .text-indigo-600\/45 {
  color: rgb(79 70 229 / 0.45);
}
.hx .text-indigo-600\/5 {
  color: rgb(79 70 229 / 0.05);
}
.hx .text-indigo-600\/50 {
  color: rgb(79 70 229 / 0.5);
}
.hx .text-indigo-600\/55 {
  color: rgb(79 70 229 / 0.55);
}
.hx .text-indigo-600\/60 {
  color: rgb(79 70 229 / 0.6);
}
.hx .text-indigo-600\/65 {
  color: rgb(79 70 229 / 0.65);
}
.hx .text-indigo-600\/70 {
  color: rgb(79 70 229 / 0.7);
}
.hx .text-indigo-600\/75 {
  color: rgb(79 70 229 / 0.75);
}
.hx .text-indigo-600\/80 {
  color: rgb(79 70 229 / 0.8);
}
.hx .text-indigo-600\/85 {
  color: rgb(79 70 229 / 0.85);
}
.hx .text-indigo-600\/90 {
  color: rgb(79 70 229 / 0.9);
}
.hx .text-indigo-600\/95 {
  color: rgb(79 70 229 / 0.95);
}
.hx .text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-700\/0 {
  color: rgb(67 56 202 / 0);
}
.hx .text-indigo-700\/10 {
  color: rgb(67 56 202 / 0.1);
}
.hx .text-indigo-700\/100 {
  color: rgb(67 56 202 / 1);
}
.hx .text-indigo-700\/15 {
  color: rgb(67 56 202 / 0.15);
}
.hx .text-indigo-700\/20 {
  color: rgb(67 56 202 / 0.2);
}
.hx .text-indigo-700\/25 {
  color: rgb(67 56 202 / 0.25);
}
.hx .text-indigo-700\/30 {
  color: rgb(67 56 202 / 0.3);
}
.hx .text-indigo-700\/35 {
  color: rgb(67 56 202 / 0.35);
}
.hx .text-indigo-700\/40 {
  color: rgb(67 56 202 / 0.4);
}
.hx .text-indigo-700\/45 {
  color: rgb(67 56 202 / 0.45);
}
.hx .text-indigo-700\/5 {
  color: rgb(67 56 202 / 0.05);
}
.hx .text-indigo-700\/50 {
  color: rgb(67 56 202 / 0.5);
}
.hx .text-indigo-700\/55 {
  color: rgb(67 56 202 / 0.55);
}
.hx .text-indigo-700\/60 {
  color: rgb(67 56 202 / 0.6);
}
.hx .text-indigo-700\/65 {
  color: rgb(67 56 202 / 0.65);
}
.hx .text-indigo-700\/70 {
  color: rgb(67 56 202 / 0.7);
}
.hx .text-indigo-700\/75 {
  color: rgb(67 56 202 / 0.75);
}
.hx .text-indigo-700\/80 {
  color: rgb(67 56 202 / 0.8);
}
.hx .text-indigo-700\/85 {
  color: rgb(67 56 202 / 0.85);
}
.hx .text-indigo-700\/90 {
  color: rgb(67 56 202 / 0.9);
}
.hx .text-indigo-700\/95 {
  color: rgb(67 56 202 / 0.95);
}
.hx .text-indigo-800 {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-800\/0 {
  color: rgb(55 48 163 / 0);
}
.hx .text-indigo-800\/10 {
  color: rgb(55 48 163 / 0.1);
}
.hx .text-indigo-800\/100 {
  color: rgb(55 48 163 / 1);
}
.hx .text-indigo-800\/15 {
  color: rgb(55 48 163 / 0.15);
}
.hx .text-indigo-800\/20 {
  color: rgb(55 48 163 / 0.2);
}
.hx .text-indigo-800\/25 {
  color: rgb(55 48 163 / 0.25);
}
.hx .text-indigo-800\/30 {
  color: rgb(55 48 163 / 0.3);
}
.hx .text-indigo-800\/35 {
  color: rgb(55 48 163 / 0.35);
}
.hx .text-indigo-800\/40 {
  color: rgb(55 48 163 / 0.4);
}
.hx .text-indigo-800\/45 {
  color: rgb(55 48 163 / 0.45);
}
.hx .text-indigo-800\/5 {
  color: rgb(55 48 163 / 0.05);
}
.hx .text-indigo-800\/50 {
  color: rgb(55 48 163 / 0.5);
}
.hx .text-indigo-800\/55 {
  color: rgb(55 48 163 / 0.55);
}
.hx .text-indigo-800\/60 {
  color: rgb(55 48 163 / 0.6);
}
.hx .text-indigo-800\/65 {
  color: rgb(55 48 163 / 0.65);
}
.hx .text-indigo-800\/70 {
  color: rgb(55 48 163 / 0.7);
}
.hx .text-indigo-800\/75 {
  color: rgb(55 48 163 / 0.75);
}
.hx .text-indigo-800\/80 {
  color: rgb(55 48 163 / 0.8);
}
.hx .text-indigo-800\/85 {
  color: rgb(55 48 163 / 0.85);
}
.hx .text-indigo-800\/90 {
  color: rgb(55 48 163 / 0.9);
}
.hx .text-indigo-800\/95 {
  color: rgb(55 48 163 / 0.95);
}
.hx .text-indigo-900 {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-900\/0 {
  color: rgb(49 46 129 / 0);
}
.hx .text-indigo-900\/10 {
  color: rgb(49 46 129 / 0.1);
}
.hx .text-indigo-900\/100 {
  color: rgb(49 46 129 / 1);
}
.hx .text-indigo-900\/15 {
  color: rgb(49 46 129 / 0.15);
}
.hx .text-indigo-900\/20 {
  color: rgb(49 46 129 / 0.2);
}
.hx .text-indigo-900\/25 {
  color: rgb(49 46 129 / 0.25);
}
.hx .text-indigo-900\/30 {
  color: rgb(49 46 129 / 0.3);
}
.hx .text-indigo-900\/35 {
  color: rgb(49 46 129 / 0.35);
}
.hx .text-indigo-900\/40 {
  color: rgb(49 46 129 / 0.4);
}
.hx .text-indigo-900\/45 {
  color: rgb(49 46 129 / 0.45);
}
.hx .text-indigo-900\/5 {
  color: rgb(49 46 129 / 0.05);
}
.hx .text-indigo-900\/50 {
  color: rgb(49 46 129 / 0.5);
}
.hx .text-indigo-900\/55 {
  color: rgb(49 46 129 / 0.55);
}
.hx .text-indigo-900\/60 {
  color: rgb(49 46 129 / 0.6);
}
.hx .text-indigo-900\/65 {
  color: rgb(49 46 129 / 0.65);
}
.hx .text-indigo-900\/70 {
  color: rgb(49 46 129 / 0.7);
}
.hx .text-indigo-900\/75 {
  color: rgb(49 46 129 / 0.75);
}
.hx .text-indigo-900\/80 {
  color: rgb(49 46 129 / 0.8);
}
.hx .text-indigo-900\/85 {
  color: rgb(49 46 129 / 0.85);
}
.hx .text-indigo-900\/90 {
  color: rgb(49 46 129 / 0.9);
}
.hx .text-indigo-900\/95 {
  color: rgb(49 46 129 / 0.95);
}
.hx .text-indigo-950 {
  --tw-text-opacity: 1;
  color: rgb(30 27 75 / var(--tw-text-opacity, 1));
}
.hx .text-indigo-950\/0 {
  color: rgb(30 27 75 / 0);
}
.hx .text-indigo-950\/10 {
  color: rgb(30 27 75 / 0.1);
}
.hx .text-indigo-950\/100 {
  color: rgb(30 27 75 / 1);
}
.hx .text-indigo-950\/15 {
  color: rgb(30 27 75 / 0.15);
}
.hx .text-indigo-950\/20 {
  color: rgb(30 27 75 / 0.2);
}
.hx .text-indigo-950\/25 {
  color: rgb(30 27 75 / 0.25);
}
.hx .text-indigo-950\/30 {
  color: rgb(30 27 75 / 0.3);
}
.hx .text-indigo-950\/35 {
  color: rgb(30 27 75 / 0.35);
}
.hx .text-indigo-950\/40 {
  color: rgb(30 27 75 / 0.4);
}
.hx .text-indigo-950\/45 {
  color: rgb(30 27 75 / 0.45);
}
.hx .text-indigo-950\/5 {
  color: rgb(30 27 75 / 0.05);
}
.hx .text-indigo-950\/50 {
  color: rgb(30 27 75 / 0.5);
}
.hx .text-indigo-950\/55 {
  color: rgb(30 27 75 / 0.55);
}
.hx .text-indigo-950\/60 {
  color: rgb(30 27 75 / 0.6);
}
.hx .text-indigo-950\/65 {
  color: rgb(30 27 75 / 0.65);
}
.hx .text-indigo-950\/70 {
  color: rgb(30 27 75 / 0.7);
}
.hx .text-indigo-950\/75 {
  color: rgb(30 27 75 / 0.75);
}
.hx .text-indigo-950\/80 {
  color: rgb(30 27 75 / 0.8);
}
.hx .text-indigo-950\/85 {
  color: rgb(30 27 75 / 0.85);
}
.hx .text-indigo-950\/90 {
  color: rgb(30 27 75 / 0.9);
}
.hx .text-indigo-950\/95 {
  color: rgb(30 27 75 / 0.95);
}
.hx .text-info {
  --tw-text-opacity: 1;
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity, 1)));
}
.hx .text-info-content {
  --tw-text-opacity: 1;
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity, 1)));
}
.hx .text-info-content\/0 {
  color: var(--fallback-inc,oklch(var(--inc)/0));
}
.hx .text-info-content\/10 {
  color: var(--fallback-inc,oklch(var(--inc)/0.1));
}
.hx .text-info-content\/100 {
  color: var(--fallback-inc,oklch(var(--inc)/1));
}
.hx .text-info-content\/15 {
  color: var(--fallback-inc,oklch(var(--inc)/0.15));
}
.hx .text-info-content\/20 {
  color: var(--fallback-inc,oklch(var(--inc)/0.2));
}
.hx .text-info-content\/25 {
  color: var(--fallback-inc,oklch(var(--inc)/0.25));
}
.hx .text-info-content\/30 {
  color: var(--fallback-inc,oklch(var(--inc)/0.3));
}
.hx .text-info-content\/35 {
  color: var(--fallback-inc,oklch(var(--inc)/0.35));
}
.hx .text-info-content\/40 {
  color: var(--fallback-inc,oklch(var(--inc)/0.4));
}
.hx .text-info-content\/45 {
  color: var(--fallback-inc,oklch(var(--inc)/0.45));
}
.hx .text-info-content\/5 {
  color: var(--fallback-inc,oklch(var(--inc)/0.05));
}
.hx .text-info-content\/50 {
  color: var(--fallback-inc,oklch(var(--inc)/0.5));
}
.hx .text-info-content\/55 {
  color: var(--fallback-inc,oklch(var(--inc)/0.55));
}
.hx .text-info-content\/60 {
  color: var(--fallback-inc,oklch(var(--inc)/0.6));
}
.hx .text-info-content\/65 {
  color: var(--fallback-inc,oklch(var(--inc)/0.65));
}
.hx .text-info-content\/70 {
  color: var(--fallback-inc,oklch(var(--inc)/0.7));
}
.hx .text-info-content\/75 {
  color: var(--fallback-inc,oklch(var(--inc)/0.75));
}
.hx .text-info-content\/80 {
  color: var(--fallback-inc,oklch(var(--inc)/0.8));
}
.hx .text-info-content\/85 {
  color: var(--fallback-inc,oklch(var(--inc)/0.85));
}
.hx .text-info-content\/90 {
  color: var(--fallback-inc,oklch(var(--inc)/0.9));
}
.hx .text-info-content\/95 {
  color: var(--fallback-inc,oklch(var(--inc)/0.95));
}
.hx .text-info\/0 {
  color: var(--fallback-in,oklch(var(--in)/0));
}
.hx .text-info\/10 {
  color: var(--fallback-in,oklch(var(--in)/0.1));
}
.hx .text-info\/100 {
  color: var(--fallback-in,oklch(var(--in)/1));
}
.hx .text-info\/15 {
  color: var(--fallback-in,oklch(var(--in)/0.15));
}
.hx .text-info\/20 {
  color: var(--fallback-in,oklch(var(--in)/0.2));
}
.hx .text-info\/25 {
  color: var(--fallback-in,oklch(var(--in)/0.25));
}
.hx .text-info\/30 {
  color: var(--fallback-in,oklch(var(--in)/0.3));
}
.hx .text-info\/35 {
  color: var(--fallback-in,oklch(var(--in)/0.35));
}
.hx .text-info\/40 {
  color: var(--fallback-in,oklch(var(--in)/0.4));
}
.hx .text-info\/45 {
  color: var(--fallback-in,oklch(var(--in)/0.45));
}
.hx .text-info\/5 {
  color: var(--fallback-in,oklch(var(--in)/0.05));
}
.hx .text-info\/50 {
  color: var(--fallback-in,oklch(var(--in)/0.5));
}
.hx .text-info\/55 {
  color: var(--fallback-in,oklch(var(--in)/0.55));
}
.hx .text-info\/60 {
  color: var(--fallback-in,oklch(var(--in)/0.6));
}
.hx .text-info\/65 {
  color: var(--fallback-in,oklch(var(--in)/0.65));
}
.hx .text-info\/70 {
  color: var(--fallback-in,oklch(var(--in)/0.7));
}
.hx .text-info\/75 {
  color: var(--fallback-in,oklch(var(--in)/0.75));
}
.hx .text-info\/80 {
  color: var(--fallback-in,oklch(var(--in)/0.8));
}
.hx .text-info\/85 {
  color: var(--fallback-in,oklch(var(--in)/0.85));
}
.hx .text-info\/90 {
  color: var(--fallback-in,oklch(var(--in)/0.9));
}
.hx .text-info\/95 {
  color: var(--fallback-in,oklch(var(--in)/0.95));
}
.hx .text-inherit {
  color: inherit;
}
.hx .text-lime-100 {
  --tw-text-opacity: 1;
  color: rgb(236 252 203 / var(--tw-text-opacity, 1));
}
.hx .text-lime-100\/0 {
  color: rgb(236 252 203 / 0);
}
.hx .text-lime-100\/10 {
  color: rgb(236 252 203 / 0.1);
}
.hx .text-lime-100\/100 {
  color: rgb(236 252 203 / 1);
}
.hx .text-lime-100\/15 {
  color: rgb(236 252 203 / 0.15);
}
.hx .text-lime-100\/20 {
  color: rgb(236 252 203 / 0.2);
}
.hx .text-lime-100\/25 {
  color: rgb(236 252 203 / 0.25);
}
.hx .text-lime-100\/30 {
  color: rgb(236 252 203 / 0.3);
}
.hx .text-lime-100\/35 {
  color: rgb(236 252 203 / 0.35);
}
.hx .text-lime-100\/40 {
  color: rgb(236 252 203 / 0.4);
}
.hx .text-lime-100\/45 {
  color: rgb(236 252 203 / 0.45);
}
.hx .text-lime-100\/5 {
  color: rgb(236 252 203 / 0.05);
}
.hx .text-lime-100\/50 {
  color: rgb(236 252 203 / 0.5);
}
.hx .text-lime-100\/55 {
  color: rgb(236 252 203 / 0.55);
}
.hx .text-lime-100\/60 {
  color: rgb(236 252 203 / 0.6);
}
.hx .text-lime-100\/65 {
  color: rgb(236 252 203 / 0.65);
}
.hx .text-lime-100\/70 {
  color: rgb(236 252 203 / 0.7);
}
.hx .text-lime-100\/75 {
  color: rgb(236 252 203 / 0.75);
}
.hx .text-lime-100\/80 {
  color: rgb(236 252 203 / 0.8);
}
.hx .text-lime-100\/85 {
  color: rgb(236 252 203 / 0.85);
}
.hx .text-lime-100\/90 {
  color: rgb(236 252 203 / 0.9);
}
.hx .text-lime-100\/95 {
  color: rgb(236 252 203 / 0.95);
}
.hx .text-lime-200 {
  --tw-text-opacity: 1;
  color: rgb(217 249 157 / var(--tw-text-opacity, 1));
}
.hx .text-lime-200\/0 {
  color: rgb(217 249 157 / 0);
}
.hx .text-lime-200\/10 {
  color: rgb(217 249 157 / 0.1);
}
.hx .text-lime-200\/100 {
  color: rgb(217 249 157 / 1);
}
.hx .text-lime-200\/15 {
  color: rgb(217 249 157 / 0.15);
}
.hx .text-lime-200\/20 {
  color: rgb(217 249 157 / 0.2);
}
.hx .text-lime-200\/25 {
  color: rgb(217 249 157 / 0.25);
}
.hx .text-lime-200\/30 {
  color: rgb(217 249 157 / 0.3);
}
.hx .text-lime-200\/35 {
  color: rgb(217 249 157 / 0.35);
}
.hx .text-lime-200\/40 {
  color: rgb(217 249 157 / 0.4);
}
.hx .text-lime-200\/45 {
  color: rgb(217 249 157 / 0.45);
}
.hx .text-lime-200\/5 {
  color: rgb(217 249 157 / 0.05);
}
.hx .text-lime-200\/50 {
  color: rgb(217 249 157 / 0.5);
}
.hx .text-lime-200\/55 {
  color: rgb(217 249 157 / 0.55);
}
.hx .text-lime-200\/60 {
  color: rgb(217 249 157 / 0.6);
}
.hx .text-lime-200\/65 {
  color: rgb(217 249 157 / 0.65);
}
.hx .text-lime-200\/70 {
  color: rgb(217 249 157 / 0.7);
}
.hx .text-lime-200\/75 {
  color: rgb(217 249 157 / 0.75);
}
.hx .text-lime-200\/80 {
  color: rgb(217 249 157 / 0.8);
}
.hx .text-lime-200\/85 {
  color: rgb(217 249 157 / 0.85);
}
.hx .text-lime-200\/90 {
  color: rgb(217 249 157 / 0.9);
}
.hx .text-lime-200\/95 {
  color: rgb(217 249 157 / 0.95);
}
.hx .text-lime-300 {
  --tw-text-opacity: 1;
  color: rgb(190 242 100 / var(--tw-text-opacity, 1));
}
.hx .text-lime-300\/0 {
  color: rgb(190 242 100 / 0);
}
.hx .text-lime-300\/10 {
  color: rgb(190 242 100 / 0.1);
}
.hx .text-lime-300\/100 {
  color: rgb(190 242 100 / 1);
}
.hx .text-lime-300\/15 {
  color: rgb(190 242 100 / 0.15);
}
.hx .text-lime-300\/20 {
  color: rgb(190 242 100 / 0.2);
}
.hx .text-lime-300\/25 {
  color: rgb(190 242 100 / 0.25);
}
.hx .text-lime-300\/30 {
  color: rgb(190 242 100 / 0.3);
}
.hx .text-lime-300\/35 {
  color: rgb(190 242 100 / 0.35);
}
.hx .text-lime-300\/40 {
  color: rgb(190 242 100 / 0.4);
}
.hx .text-lime-300\/45 {
  color: rgb(190 242 100 / 0.45);
}
.hx .text-lime-300\/5 {
  color: rgb(190 242 100 / 0.05);
}
.hx .text-lime-300\/50 {
  color: rgb(190 242 100 / 0.5);
}
.hx .text-lime-300\/55 {
  color: rgb(190 242 100 / 0.55);
}
.hx .text-lime-300\/60 {
  color: rgb(190 242 100 / 0.6);
}
.hx .text-lime-300\/65 {
  color: rgb(190 242 100 / 0.65);
}
.hx .text-lime-300\/70 {
  color: rgb(190 242 100 / 0.7);
}
.hx .text-lime-300\/75 {
  color: rgb(190 242 100 / 0.75);
}
.hx .text-lime-300\/80 {
  color: rgb(190 242 100 / 0.8);
}
.hx .text-lime-300\/85 {
  color: rgb(190 242 100 / 0.85);
}
.hx .text-lime-300\/90 {
  color: rgb(190 242 100 / 0.9);
}
.hx .text-lime-300\/95 {
  color: rgb(190 242 100 / 0.95);
}
.hx .text-lime-400 {
  --tw-text-opacity: 1;
  color: rgb(163 230 53 / var(--tw-text-opacity, 1));
}
.hx .text-lime-400\/0 {
  color: rgb(163 230 53 / 0);
}
.hx .text-lime-400\/10 {
  color: rgb(163 230 53 / 0.1);
}
.hx .text-lime-400\/100 {
  color: rgb(163 230 53 / 1);
}
.hx .text-lime-400\/15 {
  color: rgb(163 230 53 / 0.15);
}
.hx .text-lime-400\/20 {
  color: rgb(163 230 53 / 0.2);
}
.hx .text-lime-400\/25 {
  color: rgb(163 230 53 / 0.25);
}
.hx .text-lime-400\/30 {
  color: rgb(163 230 53 / 0.3);
}
.hx .text-lime-400\/35 {
  color: rgb(163 230 53 / 0.35);
}
.hx .text-lime-400\/40 {
  color: rgb(163 230 53 / 0.4);
}
.hx .text-lime-400\/45 {
  color: rgb(163 230 53 / 0.45);
}
.hx .text-lime-400\/5 {
  color: rgb(163 230 53 / 0.05);
}
.hx .text-lime-400\/50 {
  color: rgb(163 230 53 / 0.5);
}
.hx .text-lime-400\/55 {
  color: rgb(163 230 53 / 0.55);
}
.hx .text-lime-400\/60 {
  color: rgb(163 230 53 / 0.6);
}
.hx .text-lime-400\/65 {
  color: rgb(163 230 53 / 0.65);
}
.hx .text-lime-400\/70 {
  color: rgb(163 230 53 / 0.7);
}
.hx .text-lime-400\/75 {
  color: rgb(163 230 53 / 0.75);
}
.hx .text-lime-400\/80 {
  color: rgb(163 230 53 / 0.8);
}
.hx .text-lime-400\/85 {
  color: rgb(163 230 53 / 0.85);
}
.hx .text-lime-400\/90 {
  color: rgb(163 230 53 / 0.9);
}
.hx .text-lime-400\/95 {
  color: rgb(163 230 53 / 0.95);
}
.hx .text-lime-50 {
  --tw-text-opacity: 1;
  color: rgb(247 254 231 / var(--tw-text-opacity, 1));
}
.hx .text-lime-50\/0 {
  color: rgb(247 254 231 / 0);
}
.hx .text-lime-50\/10 {
  color: rgb(247 254 231 / 0.1);
}
.hx .text-lime-50\/100 {
  color: rgb(247 254 231 / 1);
}
.hx .text-lime-50\/15 {
  color: rgb(247 254 231 / 0.15);
}
.hx .text-lime-50\/20 {
  color: rgb(247 254 231 / 0.2);
}
.hx .text-lime-50\/25 {
  color: rgb(247 254 231 / 0.25);
}
.hx .text-lime-50\/30 {
  color: rgb(247 254 231 / 0.3);
}
.hx .text-lime-50\/35 {
  color: rgb(247 254 231 / 0.35);
}
.hx .text-lime-50\/40 {
  color: rgb(247 254 231 / 0.4);
}
.hx .text-lime-50\/45 {
  color: rgb(247 254 231 / 0.45);
}
.hx .text-lime-50\/5 {
  color: rgb(247 254 231 / 0.05);
}
.hx .text-lime-50\/50 {
  color: rgb(247 254 231 / 0.5);
}
.hx .text-lime-50\/55 {
  color: rgb(247 254 231 / 0.55);
}
.hx .text-lime-50\/60 {
  color: rgb(247 254 231 / 0.6);
}
.hx .text-lime-50\/65 {
  color: rgb(247 254 231 / 0.65);
}
.hx .text-lime-50\/70 {
  color: rgb(247 254 231 / 0.7);
}
.hx .text-lime-50\/75 {
  color: rgb(247 254 231 / 0.75);
}
.hx .text-lime-50\/80 {
  color: rgb(247 254 231 / 0.8);
}
.hx .text-lime-50\/85 {
  color: rgb(247 254 231 / 0.85);
}
.hx .text-lime-50\/90 {
  color: rgb(247 254 231 / 0.9);
}
.hx .text-lime-50\/95 {
  color: rgb(247 254 231 / 0.95);
}
.hx .text-lime-500 {
  --tw-text-opacity: 1;
  color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.hx .text-lime-500\/0 {
  color: rgb(132 204 22 / 0);
}
.hx .text-lime-500\/10 {
  color: rgb(132 204 22 / 0.1);
}
.hx .text-lime-500\/100 {
  color: rgb(132 204 22 / 1);
}
.hx .text-lime-500\/15 {
  color: rgb(132 204 22 / 0.15);
}
.hx .text-lime-500\/20 {
  color: rgb(132 204 22 / 0.2);
}
.hx .text-lime-500\/25 {
  color: rgb(132 204 22 / 0.25);
}
.hx .text-lime-500\/30 {
  color: rgb(132 204 22 / 0.3);
}
.hx .text-lime-500\/35 {
  color: rgb(132 204 22 / 0.35);
}
.hx .text-lime-500\/40 {
  color: rgb(132 204 22 / 0.4);
}
.hx .text-lime-500\/45 {
  color: rgb(132 204 22 / 0.45);
}
.hx .text-lime-500\/5 {
  color: rgb(132 204 22 / 0.05);
}
.hx .text-lime-500\/50 {
  color: rgb(132 204 22 / 0.5);
}
.hx .text-lime-500\/55 {
  color: rgb(132 204 22 / 0.55);
}
.hx .text-lime-500\/60 {
  color: rgb(132 204 22 / 0.6);
}
.hx .text-lime-500\/65 {
  color: rgb(132 204 22 / 0.65);
}
.hx .text-lime-500\/70 {
  color: rgb(132 204 22 / 0.7);
}
.hx .text-lime-500\/75 {
  color: rgb(132 204 22 / 0.75);
}
.hx .text-lime-500\/80 {
  color: rgb(132 204 22 / 0.8);
}
.hx .text-lime-500\/85 {
  color: rgb(132 204 22 / 0.85);
}
.hx .text-lime-500\/90 {
  color: rgb(132 204 22 / 0.9);
}
.hx .text-lime-500\/95 {
  color: rgb(132 204 22 / 0.95);
}
.hx .text-lime-600 {
  --tw-text-opacity: 1;
  color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.hx .text-lime-600\/0 {
  color: rgb(101 163 13 / 0);
}
.hx .text-lime-600\/10 {
  color: rgb(101 163 13 / 0.1);
}
.hx .text-lime-600\/100 {
  color: rgb(101 163 13 / 1);
}
.hx .text-lime-600\/15 {
  color: rgb(101 163 13 / 0.15);
}
.hx .text-lime-600\/20 {
  color: rgb(101 163 13 / 0.2);
}
.hx .text-lime-600\/25 {
  color: rgb(101 163 13 / 0.25);
}
.hx .text-lime-600\/30 {
  color: rgb(101 163 13 / 0.3);
}
.hx .text-lime-600\/35 {
  color: rgb(101 163 13 / 0.35);
}
.hx .text-lime-600\/40 {
  color: rgb(101 163 13 / 0.4);
}
.hx .text-lime-600\/45 {
  color: rgb(101 163 13 / 0.45);
}
.hx .text-lime-600\/5 {
  color: rgb(101 163 13 / 0.05);
}
.hx .text-lime-600\/50 {
  color: rgb(101 163 13 / 0.5);
}
.hx .text-lime-600\/55 {
  color: rgb(101 163 13 / 0.55);
}
.hx .text-lime-600\/60 {
  color: rgb(101 163 13 / 0.6);
}
.hx .text-lime-600\/65 {
  color: rgb(101 163 13 / 0.65);
}
.hx .text-lime-600\/70 {
  color: rgb(101 163 13 / 0.7);
}
.hx .text-lime-600\/75 {
  color: rgb(101 163 13 / 0.75);
}
.hx .text-lime-600\/80 {
  color: rgb(101 163 13 / 0.8);
}
.hx .text-lime-600\/85 {
  color: rgb(101 163 13 / 0.85);
}
.hx .text-lime-600\/90 {
  color: rgb(101 163 13 / 0.9);
}
.hx .text-lime-600\/95 {
  color: rgb(101 163 13 / 0.95);
}
.hx .text-lime-700 {
  --tw-text-opacity: 1;
  color: rgb(77 124 15 / var(--tw-text-opacity, 1));
}
.hx .text-lime-700\/0 {
  color: rgb(77 124 15 / 0);
}
.hx .text-lime-700\/10 {
  color: rgb(77 124 15 / 0.1);
}
.hx .text-lime-700\/100 {
  color: rgb(77 124 15 / 1);
}
.hx .text-lime-700\/15 {
  color: rgb(77 124 15 / 0.15);
}
.hx .text-lime-700\/20 {
  color: rgb(77 124 15 / 0.2);
}
.hx .text-lime-700\/25 {
  color: rgb(77 124 15 / 0.25);
}
.hx .text-lime-700\/30 {
  color: rgb(77 124 15 / 0.3);
}
.hx .text-lime-700\/35 {
  color: rgb(77 124 15 / 0.35);
}
.hx .text-lime-700\/40 {
  color: rgb(77 124 15 / 0.4);
}
.hx .text-lime-700\/45 {
  color: rgb(77 124 15 / 0.45);
}
.hx .text-lime-700\/5 {
  color: rgb(77 124 15 / 0.05);
}
.hx .text-lime-700\/50 {
  color: rgb(77 124 15 / 0.5);
}
.hx .text-lime-700\/55 {
  color: rgb(77 124 15 / 0.55);
}
.hx .text-lime-700\/60 {
  color: rgb(77 124 15 / 0.6);
}
.hx .text-lime-700\/65 {
  color: rgb(77 124 15 / 0.65);
}
.hx .text-lime-700\/70 {
  color: rgb(77 124 15 / 0.7);
}
.hx .text-lime-700\/75 {
  color: rgb(77 124 15 / 0.75);
}
.hx .text-lime-700\/80 {
  color: rgb(77 124 15 / 0.8);
}
.hx .text-lime-700\/85 {
  color: rgb(77 124 15 / 0.85);
}
.hx .text-lime-700\/90 {
  color: rgb(77 124 15 / 0.9);
}
.hx .text-lime-700\/95 {
  color: rgb(77 124 15 / 0.95);
}
.hx .text-lime-800 {
  --tw-text-opacity: 1;
  color: rgb(63 98 18 / var(--tw-text-opacity, 1));
}
.hx .text-lime-800\/0 {
  color: rgb(63 98 18 / 0);
}
.hx .text-lime-800\/10 {
  color: rgb(63 98 18 / 0.1);
}
.hx .text-lime-800\/100 {
  color: rgb(63 98 18 / 1);
}
.hx .text-lime-800\/15 {
  color: rgb(63 98 18 / 0.15);
}
.hx .text-lime-800\/20 {
  color: rgb(63 98 18 / 0.2);
}
.hx .text-lime-800\/25 {
  color: rgb(63 98 18 / 0.25);
}
.hx .text-lime-800\/30 {
  color: rgb(63 98 18 / 0.3);
}
.hx .text-lime-800\/35 {
  color: rgb(63 98 18 / 0.35);
}
.hx .text-lime-800\/40 {
  color: rgb(63 98 18 / 0.4);
}
.hx .text-lime-800\/45 {
  color: rgb(63 98 18 / 0.45);
}
.hx .text-lime-800\/5 {
  color: rgb(63 98 18 / 0.05);
}
.hx .text-lime-800\/50 {
  color: rgb(63 98 18 / 0.5);
}
.hx .text-lime-800\/55 {
  color: rgb(63 98 18 / 0.55);
}
.hx .text-lime-800\/60 {
  color: rgb(63 98 18 / 0.6);
}
.hx .text-lime-800\/65 {
  color: rgb(63 98 18 / 0.65);
}
.hx .text-lime-800\/70 {
  color: rgb(63 98 18 / 0.7);
}
.hx .text-lime-800\/75 {
  color: rgb(63 98 18 / 0.75);
}
.hx .text-lime-800\/80 {
  color: rgb(63 98 18 / 0.8);
}
.hx .text-lime-800\/85 {
  color: rgb(63 98 18 / 0.85);
}
.hx .text-lime-800\/90 {
  color: rgb(63 98 18 / 0.9);
}
.hx .text-lime-800\/95 {
  color: rgb(63 98 18 / 0.95);
}
.hx .text-lime-900 {
  --tw-text-opacity: 1;
  color: rgb(54 83 20 / var(--tw-text-opacity, 1));
}
.hx .text-lime-900\/0 {
  color: rgb(54 83 20 / 0);
}
.hx .text-lime-900\/10 {
  color: rgb(54 83 20 / 0.1);
}
.hx .text-lime-900\/100 {
  color: rgb(54 83 20 / 1);
}
.hx .text-lime-900\/15 {
  color: rgb(54 83 20 / 0.15);
}
.hx .text-lime-900\/20 {
  color: rgb(54 83 20 / 0.2);
}
.hx .text-lime-900\/25 {
  color: rgb(54 83 20 / 0.25);
}
.hx .text-lime-900\/30 {
  color: rgb(54 83 20 / 0.3);
}
.hx .text-lime-900\/35 {
  color: rgb(54 83 20 / 0.35);
}
.hx .text-lime-900\/40 {
  color: rgb(54 83 20 / 0.4);
}
.hx .text-lime-900\/45 {
  color: rgb(54 83 20 / 0.45);
}
.hx .text-lime-900\/5 {
  color: rgb(54 83 20 / 0.05);
}
.hx .text-lime-900\/50 {
  color: rgb(54 83 20 / 0.5);
}
.hx .text-lime-900\/55 {
  color: rgb(54 83 20 / 0.55);
}
.hx .text-lime-900\/60 {
  color: rgb(54 83 20 / 0.6);
}
.hx .text-lime-900\/65 {
  color: rgb(54 83 20 / 0.65);
}
.hx .text-lime-900\/70 {
  color: rgb(54 83 20 / 0.7);
}
.hx .text-lime-900\/75 {
  color: rgb(54 83 20 / 0.75);
}
.hx .text-lime-900\/80 {
  color: rgb(54 83 20 / 0.8);
}
.hx .text-lime-900\/85 {
  color: rgb(54 83 20 / 0.85);
}
.hx .text-lime-900\/90 {
  color: rgb(54 83 20 / 0.9);
}
.hx .text-lime-900\/95 {
  color: rgb(54 83 20 / 0.95);
}
.hx .text-lime-950 {
  --tw-text-opacity: 1;
  color: rgb(26 46 5 / var(--tw-text-opacity, 1));
}
.hx .text-lime-950\/0 {
  color: rgb(26 46 5 / 0);
}
.hx .text-lime-950\/10 {
  color: rgb(26 46 5 / 0.1);
}
.hx .text-lime-950\/100 {
  color: rgb(26 46 5 / 1);
}
.hx .text-lime-950\/15 {
  color: rgb(26 46 5 / 0.15);
}
.hx .text-lime-950\/20 {
  color: rgb(26 46 5 / 0.2);
}
.hx .text-lime-950\/25 {
  color: rgb(26 46 5 / 0.25);
}
.hx .text-lime-950\/30 {
  color: rgb(26 46 5 / 0.3);
}
.hx .text-lime-950\/35 {
  color: rgb(26 46 5 / 0.35);
}
.hx .text-lime-950\/40 {
  color: rgb(26 46 5 / 0.4);
}
.hx .text-lime-950\/45 {
  color: rgb(26 46 5 / 0.45);
}
.hx .text-lime-950\/5 {
  color: rgb(26 46 5 / 0.05);
}
.hx .text-lime-950\/50 {
  color: rgb(26 46 5 / 0.5);
}
.hx .text-lime-950\/55 {
  color: rgb(26 46 5 / 0.55);
}
.hx .text-lime-950\/60 {
  color: rgb(26 46 5 / 0.6);
}
.hx .text-lime-950\/65 {
  color: rgb(26 46 5 / 0.65);
}
.hx .text-lime-950\/70 {
  color: rgb(26 46 5 / 0.7);
}
.hx .text-lime-950\/75 {
  color: rgb(26 46 5 / 0.75);
}
.hx .text-lime-950\/80 {
  color: rgb(26 46 5 / 0.8);
}
.hx .text-lime-950\/85 {
  color: rgb(26 46 5 / 0.85);
}
.hx .text-lime-950\/90 {
  color: rgb(26 46 5 / 0.9);
}
.hx .text-lime-950\/95 {
  color: rgb(26 46 5 / 0.95);
}
.hx .text-neutral {
  --tw-text-opacity: 1;
  color: rgb(60 60 65 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-100 {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-100\/0 {
  color: rgb(245 245 245 / 0);
}
.hx .text-neutral-100\/10 {
  color: rgb(245 245 245 / 0.1);
}
.hx .text-neutral-100\/100 {
  color: rgb(245 245 245 / 1);
}
.hx .text-neutral-100\/15 {
  color: rgb(245 245 245 / 0.15);
}
.hx .text-neutral-100\/20 {
  color: rgb(245 245 245 / 0.2);
}
.hx .text-neutral-100\/25 {
  color: rgb(245 245 245 / 0.25);
}
.hx .text-neutral-100\/30 {
  color: rgb(245 245 245 / 0.3);
}
.hx .text-neutral-100\/35 {
  color: rgb(245 245 245 / 0.35);
}
.hx .text-neutral-100\/40 {
  color: rgb(245 245 245 / 0.4);
}
.hx .text-neutral-100\/45 {
  color: rgb(245 245 245 / 0.45);
}
.hx .text-neutral-100\/5 {
  color: rgb(245 245 245 / 0.05);
}
.hx .text-neutral-100\/50 {
  color: rgb(245 245 245 / 0.5);
}
.hx .text-neutral-100\/55 {
  color: rgb(245 245 245 / 0.55);
}
.hx .text-neutral-100\/60 {
  color: rgb(245 245 245 / 0.6);
}
.hx .text-neutral-100\/65 {
  color: rgb(245 245 245 / 0.65);
}
.hx .text-neutral-100\/70 {
  color: rgb(245 245 245 / 0.7);
}
.hx .text-neutral-100\/75 {
  color: rgb(245 245 245 / 0.75);
}
.hx .text-neutral-100\/80 {
  color: rgb(245 245 245 / 0.8);
}
.hx .text-neutral-100\/85 {
  color: rgb(245 245 245 / 0.85);
}
.hx .text-neutral-100\/90 {
  color: rgb(245 245 245 / 0.9);
}
.hx .text-neutral-100\/95 {
  color: rgb(245 245 245 / 0.95);
}
.hx .text-neutral-200 {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-200\/0 {
  color: rgb(229 229 229 / 0);
}
.hx .text-neutral-200\/10 {
  color: rgb(229 229 229 / 0.1);
}
.hx .text-neutral-200\/100 {
  color: rgb(229 229 229 / 1);
}
.hx .text-neutral-200\/15 {
  color: rgb(229 229 229 / 0.15);
}
.hx .text-neutral-200\/20 {
  color: rgb(229 229 229 / 0.2);
}
.hx .text-neutral-200\/25 {
  color: rgb(229 229 229 / 0.25);
}
.hx .text-neutral-200\/30 {
  color: rgb(229 229 229 / 0.3);
}
.hx .text-neutral-200\/35 {
  color: rgb(229 229 229 / 0.35);
}
.hx .text-neutral-200\/40 {
  color: rgb(229 229 229 / 0.4);
}
.hx .text-neutral-200\/45 {
  color: rgb(229 229 229 / 0.45);
}
.hx .text-neutral-200\/5 {
  color: rgb(229 229 229 / 0.05);
}
.hx .text-neutral-200\/50 {
  color: rgb(229 229 229 / 0.5);
}
.hx .text-neutral-200\/55 {
  color: rgb(229 229 229 / 0.55);
}
.hx .text-neutral-200\/60 {
  color: rgb(229 229 229 / 0.6);
}
.hx .text-neutral-200\/65 {
  color: rgb(229 229 229 / 0.65);
}
.hx .text-neutral-200\/70 {
  color: rgb(229 229 229 / 0.7);
}
.hx .text-neutral-200\/75 {
  color: rgb(229 229 229 / 0.75);
}
.hx .text-neutral-200\/80 {
  color: rgb(229 229 229 / 0.8);
}
.hx .text-neutral-200\/85 {
  color: rgb(229 229 229 / 0.85);
}
.hx .text-neutral-200\/90 {
  color: rgb(229 229 229 / 0.9);
}
.hx .text-neutral-200\/95 {
  color: rgb(229 229 229 / 0.95);
}
.hx .text-neutral-300 {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-300\/0 {
  color: rgb(212 212 212 / 0);
}
.hx .text-neutral-300\/10 {
  color: rgb(212 212 212 / 0.1);
}
.hx .text-neutral-300\/100 {
  color: rgb(212 212 212 / 1);
}
.hx .text-neutral-300\/15 {
  color: rgb(212 212 212 / 0.15);
}
.hx .text-neutral-300\/20 {
  color: rgb(212 212 212 / 0.2);
}
.hx .text-neutral-300\/25 {
  color: rgb(212 212 212 / 0.25);
}
.hx .text-neutral-300\/30 {
  color: rgb(212 212 212 / 0.3);
}
.hx .text-neutral-300\/35 {
  color: rgb(212 212 212 / 0.35);
}
.hx .text-neutral-300\/40 {
  color: rgb(212 212 212 / 0.4);
}
.hx .text-neutral-300\/45 {
  color: rgb(212 212 212 / 0.45);
}
.hx .text-neutral-300\/5 {
  color: rgb(212 212 212 / 0.05);
}
.hx .text-neutral-300\/50 {
  color: rgb(212 212 212 / 0.5);
}
.hx .text-neutral-300\/55 {
  color: rgb(212 212 212 / 0.55);
}
.hx .text-neutral-300\/60 {
  color: rgb(212 212 212 / 0.6);
}
.hx .text-neutral-300\/65 {
  color: rgb(212 212 212 / 0.65);
}
.hx .text-neutral-300\/70 {
  color: rgb(212 212 212 / 0.7);
}
.hx .text-neutral-300\/75 {
  color: rgb(212 212 212 / 0.75);
}
.hx .text-neutral-300\/80 {
  color: rgb(212 212 212 / 0.8);
}
.hx .text-neutral-300\/85 {
  color: rgb(212 212 212 / 0.85);
}
.hx .text-neutral-300\/90 {
  color: rgb(212 212 212 / 0.9);
}
.hx .text-neutral-300\/95 {
  color: rgb(212 212 212 / 0.95);
}
.hx .text-neutral-400 {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-400\/0 {
  color: rgb(163 163 163 / 0);
}
.hx .text-neutral-400\/10 {
  color: rgb(163 163 163 / 0.1);
}
.hx .text-neutral-400\/100 {
  color: rgb(163 163 163 / 1);
}
.hx .text-neutral-400\/15 {
  color: rgb(163 163 163 / 0.15);
}
.hx .text-neutral-400\/20 {
  color: rgb(163 163 163 / 0.2);
}
.hx .text-neutral-400\/25 {
  color: rgb(163 163 163 / 0.25);
}
.hx .text-neutral-400\/30 {
  color: rgb(163 163 163 / 0.3);
}
.hx .text-neutral-400\/35 {
  color: rgb(163 163 163 / 0.35);
}
.hx .text-neutral-400\/40 {
  color: rgb(163 163 163 / 0.4);
}
.hx .text-neutral-400\/45 {
  color: rgb(163 163 163 / 0.45);
}
.hx .text-neutral-400\/5 {
  color: rgb(163 163 163 / 0.05);
}
.hx .text-neutral-400\/50 {
  color: rgb(163 163 163 / 0.5);
}
.hx .text-neutral-400\/55 {
  color: rgb(163 163 163 / 0.55);
}
.hx .text-neutral-400\/60 {
  color: rgb(163 163 163 / 0.6);
}
.hx .text-neutral-400\/65 {
  color: rgb(163 163 163 / 0.65);
}
.hx .text-neutral-400\/70 {
  color: rgb(163 163 163 / 0.7);
}
.hx .text-neutral-400\/75 {
  color: rgb(163 163 163 / 0.75);
}
.hx .text-neutral-400\/80 {
  color: rgb(163 163 163 / 0.8);
}
.hx .text-neutral-400\/85 {
  color: rgb(163 163 163 / 0.85);
}
.hx .text-neutral-400\/90 {
  color: rgb(163 163 163 / 0.9);
}
.hx .text-neutral-400\/95 {
  color: rgb(163 163 163 / 0.95);
}
.hx .text-neutral-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-50\/0 {
  color: rgb(250 250 250 / 0);
}
.hx .text-neutral-50\/10 {
  color: rgb(250 250 250 / 0.1);
}
.hx .text-neutral-50\/100 {
  color: rgb(250 250 250 / 1);
}
.hx .text-neutral-50\/15 {
  color: rgb(250 250 250 / 0.15);
}
.hx .text-neutral-50\/20 {
  color: rgb(250 250 250 / 0.2);
}
.hx .text-neutral-50\/25 {
  color: rgb(250 250 250 / 0.25);
}
.hx .text-neutral-50\/30 {
  color: rgb(250 250 250 / 0.3);
}
.hx .text-neutral-50\/35 {
  color: rgb(250 250 250 / 0.35);
}
.hx .text-neutral-50\/40 {
  color: rgb(250 250 250 / 0.4);
}
.hx .text-neutral-50\/45 {
  color: rgb(250 250 250 / 0.45);
}
.hx .text-neutral-50\/5 {
  color: rgb(250 250 250 / 0.05);
}
.hx .text-neutral-50\/50 {
  color: rgb(250 250 250 / 0.5);
}
.hx .text-neutral-50\/55 {
  color: rgb(250 250 250 / 0.55);
}
.hx .text-neutral-50\/60 {
  color: rgb(250 250 250 / 0.6);
}
.hx .text-neutral-50\/65 {
  color: rgb(250 250 250 / 0.65);
}
.hx .text-neutral-50\/70 {
  color: rgb(250 250 250 / 0.7);
}
.hx .text-neutral-50\/75 {
  color: rgb(250 250 250 / 0.75);
}
.hx .text-neutral-50\/80 {
  color: rgb(250 250 250 / 0.8);
}
.hx .text-neutral-50\/85 {
  color: rgb(250 250 250 / 0.85);
}
.hx .text-neutral-50\/90 {
  color: rgb(250 250 250 / 0.9);
}
.hx .text-neutral-50\/95 {
  color: rgb(250 250 250 / 0.95);
}
.hx .text-neutral-500 {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-500\/0 {
  color: rgb(115 115 115 / 0);
}
.hx .text-neutral-500\/10 {
  color: rgb(115 115 115 / 0.1);
}
.hx .text-neutral-500\/100 {
  color: rgb(115 115 115 / 1);
}
.hx .text-neutral-500\/15 {
  color: rgb(115 115 115 / 0.15);
}
.hx .text-neutral-500\/20 {
  color: rgb(115 115 115 / 0.2);
}
.hx .text-neutral-500\/25 {
  color: rgb(115 115 115 / 0.25);
}
.hx .text-neutral-500\/30 {
  color: rgb(115 115 115 / 0.3);
}
.hx .text-neutral-500\/35 {
  color: rgb(115 115 115 / 0.35);
}
.hx .text-neutral-500\/40 {
  color: rgb(115 115 115 / 0.4);
}
.hx .text-neutral-500\/45 {
  color: rgb(115 115 115 / 0.45);
}
.hx .text-neutral-500\/5 {
  color: rgb(115 115 115 / 0.05);
}
.hx .text-neutral-500\/50 {
  color: rgb(115 115 115 / 0.5);
}
.hx .text-neutral-500\/55 {
  color: rgb(115 115 115 / 0.55);
}
.hx .text-neutral-500\/60 {
  color: rgb(115 115 115 / 0.6);
}
.hx .text-neutral-500\/65 {
  color: rgb(115 115 115 / 0.65);
}
.hx .text-neutral-500\/70 {
  color: rgb(115 115 115 / 0.7);
}
.hx .text-neutral-500\/75 {
  color: rgb(115 115 115 / 0.75);
}
.hx .text-neutral-500\/80 {
  color: rgb(115 115 115 / 0.8);
}
.hx .text-neutral-500\/85 {
  color: rgb(115 115 115 / 0.85);
}
.hx .text-neutral-500\/90 {
  color: rgb(115 115 115 / 0.9);
}
.hx .text-neutral-500\/95 {
  color: rgb(115 115 115 / 0.95);
}
.hx .text-neutral-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-600\/0 {
  color: rgb(82 82 82 / 0);
}
.hx .text-neutral-600\/10 {
  color: rgb(82 82 82 / 0.1);
}
.hx .text-neutral-600\/100 {
  color: rgb(82 82 82 / 1);
}
.hx .text-neutral-600\/15 {
  color: rgb(82 82 82 / 0.15);
}
.hx .text-neutral-600\/20 {
  color: rgb(82 82 82 / 0.2);
}
.hx .text-neutral-600\/25 {
  color: rgb(82 82 82 / 0.25);
}
.hx .text-neutral-600\/30 {
  color: rgb(82 82 82 / 0.3);
}
.hx .text-neutral-600\/35 {
  color: rgb(82 82 82 / 0.35);
}
.hx .text-neutral-600\/40 {
  color: rgb(82 82 82 / 0.4);
}
.hx .text-neutral-600\/45 {
  color: rgb(82 82 82 / 0.45);
}
.hx .text-neutral-600\/5 {
  color: rgb(82 82 82 / 0.05);
}
.hx .text-neutral-600\/50 {
  color: rgb(82 82 82 / 0.5);
}
.hx .text-neutral-600\/55 {
  color: rgb(82 82 82 / 0.55);
}
.hx .text-neutral-600\/60 {
  color: rgb(82 82 82 / 0.6);
}
.hx .text-neutral-600\/65 {
  color: rgb(82 82 82 / 0.65);
}
.hx .text-neutral-600\/70 {
  color: rgb(82 82 82 / 0.7);
}
.hx .text-neutral-600\/75 {
  color: rgb(82 82 82 / 0.75);
}
.hx .text-neutral-600\/80 {
  color: rgb(82 82 82 / 0.8);
}
.hx .text-neutral-600\/85 {
  color: rgb(82 82 82 / 0.85);
}
.hx .text-neutral-600\/90 {
  color: rgb(82 82 82 / 0.9);
}
.hx .text-neutral-600\/95 {
  color: rgb(82 82 82 / 0.95);
}
.hx .text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-700\/0 {
  color: rgb(64 64 64 / 0);
}
.hx .text-neutral-700\/10 {
  color: rgb(64 64 64 / 0.1);
}
.hx .text-neutral-700\/100 {
  color: rgb(64 64 64 / 1);
}
.hx .text-neutral-700\/15 {
  color: rgb(64 64 64 / 0.15);
}
.hx .text-neutral-700\/20 {
  color: rgb(64 64 64 / 0.2);
}
.hx .text-neutral-700\/25 {
  color: rgb(64 64 64 / 0.25);
}
.hx .text-neutral-700\/30 {
  color: rgb(64 64 64 / 0.3);
}
.hx .text-neutral-700\/35 {
  color: rgb(64 64 64 / 0.35);
}
.hx .text-neutral-700\/40 {
  color: rgb(64 64 64 / 0.4);
}
.hx .text-neutral-700\/45 {
  color: rgb(64 64 64 / 0.45);
}
.hx .text-neutral-700\/5 {
  color: rgb(64 64 64 / 0.05);
}
.hx .text-neutral-700\/50 {
  color: rgb(64 64 64 / 0.5);
}
.hx .text-neutral-700\/55 {
  color: rgb(64 64 64 / 0.55);
}
.hx .text-neutral-700\/60 {
  color: rgb(64 64 64 / 0.6);
}
.hx .text-neutral-700\/65 {
  color: rgb(64 64 64 / 0.65);
}
.hx .text-neutral-700\/70 {
  color: rgb(64 64 64 / 0.7);
}
.hx .text-neutral-700\/75 {
  color: rgb(64 64 64 / 0.75);
}
.hx .text-neutral-700\/80 {
  color: rgb(64 64 64 / 0.8);
}
.hx .text-neutral-700\/85 {
  color: rgb(64 64 64 / 0.85);
}
.hx .text-neutral-700\/90 {
  color: rgb(64 64 64 / 0.9);
}
.hx .text-neutral-700\/95 {
  color: rgb(64 64 64 / 0.95);
}
.hx .text-neutral-800 {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-800\/0 {
  color: rgb(38 38 38 / 0);
}
.hx .text-neutral-800\/10 {
  color: rgb(38 38 38 / 0.1);
}
.hx .text-neutral-800\/100 {
  color: rgb(38 38 38 / 1);
}
.hx .text-neutral-800\/15 {
  color: rgb(38 38 38 / 0.15);
}
.hx .text-neutral-800\/20 {
  color: rgb(38 38 38 / 0.2);
}
.hx .text-neutral-800\/25 {
  color: rgb(38 38 38 / 0.25);
}
.hx .text-neutral-800\/30 {
  color: rgb(38 38 38 / 0.3);
}
.hx .text-neutral-800\/35 {
  color: rgb(38 38 38 / 0.35);
}
.hx .text-neutral-800\/40 {
  color: rgb(38 38 38 / 0.4);
}
.hx .text-neutral-800\/45 {
  color: rgb(38 38 38 / 0.45);
}
.hx .text-neutral-800\/5 {
  color: rgb(38 38 38 / 0.05);
}
.hx .text-neutral-800\/50 {
  color: rgb(38 38 38 / 0.5);
}
.hx .text-neutral-800\/55 {
  color: rgb(38 38 38 / 0.55);
}
.hx .text-neutral-800\/60 {
  color: rgb(38 38 38 / 0.6);
}
.hx .text-neutral-800\/65 {
  color: rgb(38 38 38 / 0.65);
}
.hx .text-neutral-800\/70 {
  color: rgb(38 38 38 / 0.7);
}
.hx .text-neutral-800\/75 {
  color: rgb(38 38 38 / 0.75);
}
.hx .text-neutral-800\/80 {
  color: rgb(38 38 38 / 0.8);
}
.hx .text-neutral-800\/85 {
  color: rgb(38 38 38 / 0.85);
}
.hx .text-neutral-800\/90 {
  color: rgb(38 38 38 / 0.9);
}
.hx .text-neutral-800\/95 {
  color: rgb(38 38 38 / 0.95);
}
.hx .text-neutral-900 {
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-900\/0 {
  color: rgb(23 23 23 / 0);
}
.hx .text-neutral-900\/10 {
  color: rgb(23 23 23 / 0.1);
}
.hx .text-neutral-900\/100 {
  color: rgb(23 23 23 / 1);
}
.hx .text-neutral-900\/15 {
  color: rgb(23 23 23 / 0.15);
}
.hx .text-neutral-900\/20 {
  color: rgb(23 23 23 / 0.2);
}
.hx .text-neutral-900\/25 {
  color: rgb(23 23 23 / 0.25);
}
.hx .text-neutral-900\/30 {
  color: rgb(23 23 23 / 0.3);
}
.hx .text-neutral-900\/35 {
  color: rgb(23 23 23 / 0.35);
}
.hx .text-neutral-900\/40 {
  color: rgb(23 23 23 / 0.4);
}
.hx .text-neutral-900\/45 {
  color: rgb(23 23 23 / 0.45);
}
.hx .text-neutral-900\/5 {
  color: rgb(23 23 23 / 0.05);
}
.hx .text-neutral-900\/50 {
  color: rgb(23 23 23 / 0.5);
}
.hx .text-neutral-900\/55 {
  color: rgb(23 23 23 / 0.55);
}
.hx .text-neutral-900\/60 {
  color: rgb(23 23 23 / 0.6);
}
.hx .text-neutral-900\/65 {
  color: rgb(23 23 23 / 0.65);
}
.hx .text-neutral-900\/70 {
  color: rgb(23 23 23 / 0.7);
}
.hx .text-neutral-900\/75 {
  color: rgb(23 23 23 / 0.75);
}
.hx .text-neutral-900\/80 {
  color: rgb(23 23 23 / 0.8);
}
.hx .text-neutral-900\/85 {
  color: rgb(23 23 23 / 0.85);
}
.hx .text-neutral-900\/90 {
  color: rgb(23 23 23 / 0.9);
}
.hx .text-neutral-900\/95 {
  color: rgb(23 23 23 / 0.95);
}
.hx .text-neutral-950 {
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.hx .text-neutral-950\/0 {
  color: rgb(10 10 10 / 0);
}
.hx .text-neutral-950\/10 {
  color: rgb(10 10 10 / 0.1);
}
.hx .text-neutral-950\/100 {
  color: rgb(10 10 10 / 1);
}
.hx .text-neutral-950\/15 {
  color: rgb(10 10 10 / 0.15);
}
.hx .text-neutral-950\/20 {
  color: rgb(10 10 10 / 0.2);
}
.hx .text-neutral-950\/25 {
  color: rgb(10 10 10 / 0.25);
}
.hx .text-neutral-950\/30 {
  color: rgb(10 10 10 / 0.3);
}
.hx .text-neutral-950\/35 {
  color: rgb(10 10 10 / 0.35);
}
.hx .text-neutral-950\/40 {
  color: rgb(10 10 10 / 0.4);
}
.hx .text-neutral-950\/45 {
  color: rgb(10 10 10 / 0.45);
}
.hx .text-neutral-950\/5 {
  color: rgb(10 10 10 / 0.05);
}
.hx .text-neutral-950\/50 {
  color: rgb(10 10 10 / 0.5);
}
.hx .text-neutral-950\/55 {
  color: rgb(10 10 10 / 0.55);
}
.hx .text-neutral-950\/60 {
  color: rgb(10 10 10 / 0.6);
}
.hx .text-neutral-950\/65 {
  color: rgb(10 10 10 / 0.65);
}
.hx .text-neutral-950\/70 {
  color: rgb(10 10 10 / 0.7);
}
.hx .text-neutral-950\/75 {
  color: rgb(10 10 10 / 0.75);
}
.hx .text-neutral-950\/80 {
  color: rgb(10 10 10 / 0.8);
}
.hx .text-neutral-950\/85 {
  color: rgb(10 10 10 / 0.85);
}
.hx .text-neutral-950\/90 {
  color: rgb(10 10 10 / 0.9);
}
.hx .text-neutral-950\/95 {
  color: rgb(10 10 10 / 0.95);
}
.hx .text-neutral-content {
  --tw-text-opacity: 1;
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity, 1)));
}
.hx .text-neutral-content\/0 {
  color: var(--fallback-nc,oklch(var(--nc)/0));
}
.hx .text-neutral-content\/10 {
  color: var(--fallback-nc,oklch(var(--nc)/0.1));
}
.hx .text-neutral-content\/100 {
  color: var(--fallback-nc,oklch(var(--nc)/1));
}
.hx .text-neutral-content\/15 {
  color: var(--fallback-nc,oklch(var(--nc)/0.15));
}
.hx .text-neutral-content\/20 {
  color: var(--fallback-nc,oklch(var(--nc)/0.2));
}
.hx .text-neutral-content\/25 {
  color: var(--fallback-nc,oklch(var(--nc)/0.25));
}
.hx .text-neutral-content\/30 {
  color: var(--fallback-nc,oklch(var(--nc)/0.3));
}
.hx .text-neutral-content\/35 {
  color: var(--fallback-nc,oklch(var(--nc)/0.35));
}
.hx .text-neutral-content\/40 {
  color: var(--fallback-nc,oklch(var(--nc)/0.4));
}
.hx .text-neutral-content\/45 {
  color: var(--fallback-nc,oklch(var(--nc)/0.45));
}
.hx .text-neutral-content\/5 {
  color: var(--fallback-nc,oklch(var(--nc)/0.05));
}
.hx .text-neutral-content\/50 {
  color: var(--fallback-nc,oklch(var(--nc)/0.5));
}
.hx .text-neutral-content\/55 {
  color: var(--fallback-nc,oklch(var(--nc)/0.55));
}
.hx .text-neutral-content\/60 {
  color: var(--fallback-nc,oklch(var(--nc)/0.6));
}
.hx .text-neutral-content\/65 {
  color: var(--fallback-nc,oklch(var(--nc)/0.65));
}
.hx .text-neutral-content\/70 {
  color: var(--fallback-nc,oklch(var(--nc)/0.7));
}
.hx .text-neutral-content\/75 {
  color: var(--fallback-nc,oklch(var(--nc)/0.75));
}
.hx .text-neutral-content\/80 {
  color: var(--fallback-nc,oklch(var(--nc)/0.8));
}
.hx .text-neutral-content\/85 {
  color: var(--fallback-nc,oklch(var(--nc)/0.85));
}
.hx .text-neutral-content\/90 {
  color: var(--fallback-nc,oklch(var(--nc)/0.9));
}
.hx .text-neutral-content\/95 {
  color: var(--fallback-nc,oklch(var(--nc)/0.95));
}
.hx .text-neutral\/0 {
  color: rgb(60 60 65 / 0);
}
.hx .text-neutral\/10 {
  color: rgb(60 60 65 / 0.1);
}
.hx .text-neutral\/100 {
  color: rgb(60 60 65 / 1);
}
.hx .text-neutral\/15 {
  color: rgb(60 60 65 / 0.15);
}
.hx .text-neutral\/20 {
  color: rgb(60 60 65 / 0.2);
}
.hx .text-neutral\/25 {
  color: rgb(60 60 65 / 0.25);
}
.hx .text-neutral\/30 {
  color: rgb(60 60 65 / 0.3);
}
.hx .text-neutral\/35 {
  color: rgb(60 60 65 / 0.35);
}
.hx .text-neutral\/40 {
  color: rgb(60 60 65 / 0.4);
}
.hx .text-neutral\/45 {
  color: rgb(60 60 65 / 0.45);
}
.hx .text-neutral\/5 {
  color: rgb(60 60 65 / 0.05);
}
.hx .text-neutral\/50 {
  color: rgb(60 60 65 / 0.5);
}
.hx .text-neutral\/55 {
  color: rgb(60 60 65 / 0.55);
}
.hx .text-neutral\/60 {
  color: rgb(60 60 65 / 0.6);
}
.hx .text-neutral\/65 {
  color: rgb(60 60 65 / 0.65);
}
.hx .text-neutral\/70 {
  color: rgb(60 60 65 / 0.7);
}
.hx .text-neutral\/75 {
  color: rgb(60 60 65 / 0.75);
}
.hx .text-neutral\/80 {
  color: rgb(60 60 65 / 0.8);
}
.hx .text-neutral\/85 {
  color: rgb(60 60 65 / 0.85);
}
.hx .text-neutral\/90 {
  color: rgb(60 60 65 / 0.9);
}
.hx .text-neutral\/95 {
  color: rgb(60 60 65 / 0.95);
}
.hx .text-orange-100 {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / var(--tw-text-opacity, 1));
}
.hx .text-orange-100\/0 {
  color: rgb(255 237 213 / 0);
}
.hx .text-orange-100\/10 {
  color: rgb(255 237 213 / 0.1);
}
.hx .text-orange-100\/100 {
  color: rgb(255 237 213 / 1);
}
.hx .text-orange-100\/15 {
  color: rgb(255 237 213 / 0.15);
}
.hx .text-orange-100\/20 {
  color: rgb(255 237 213 / 0.2);
}
.hx .text-orange-100\/25 {
  color: rgb(255 237 213 / 0.25);
}
.hx .text-orange-100\/30 {
  color: rgb(255 237 213 / 0.3);
}
.hx .text-orange-100\/35 {
  color: rgb(255 237 213 / 0.35);
}
.hx .text-orange-100\/40 {
  color: rgb(255 237 213 / 0.4);
}
.hx .text-orange-100\/45 {
  color: rgb(255 237 213 / 0.45);
}
.hx .text-orange-100\/5 {
  color: rgb(255 237 213 / 0.05);
}
.hx .text-orange-100\/50 {
  color: rgb(255 237 213 / 0.5);
}
.hx .text-orange-100\/55 {
  color: rgb(255 237 213 / 0.55);
}
.hx .text-orange-100\/60 {
  color: rgb(255 237 213 / 0.6);
}
.hx .text-orange-100\/65 {
  color: rgb(255 237 213 / 0.65);
}
.hx .text-orange-100\/70 {
  color: rgb(255 237 213 / 0.7);
}
.hx .text-orange-100\/75 {
  color: rgb(255 237 213 / 0.75);
}
.hx .text-orange-100\/80 {
  color: rgb(255 237 213 / 0.8);
}
.hx .text-orange-100\/85 {
  color: rgb(255 237 213 / 0.85);
}
.hx .text-orange-100\/90 {
  color: rgb(255 237 213 / 0.9);
}
.hx .text-orange-100\/95 {
  color: rgb(255 237 213 / 0.95);
}
.hx .text-orange-200 {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / var(--tw-text-opacity, 1));
}
.hx .text-orange-200\/0 {
  color: rgb(254 215 170 / 0);
}
.hx .text-orange-200\/10 {
  color: rgb(254 215 170 / 0.1);
}
.hx .text-orange-200\/100 {
  color: rgb(254 215 170 / 1);
}
.hx .text-orange-200\/15 {
  color: rgb(254 215 170 / 0.15);
}
.hx .text-orange-200\/20 {
  color: rgb(254 215 170 / 0.2);
}
.hx .text-orange-200\/25 {
  color: rgb(254 215 170 / 0.25);
}
.hx .text-orange-200\/30 {
  color: rgb(254 215 170 / 0.3);
}
.hx .text-orange-200\/35 {
  color: rgb(254 215 170 / 0.35);
}
.hx .text-orange-200\/40 {
  color: rgb(254 215 170 / 0.4);
}
.hx .text-orange-200\/45 {
  color: rgb(254 215 170 / 0.45);
}
.hx .text-orange-200\/5 {
  color: rgb(254 215 170 / 0.05);
}
.hx .text-orange-200\/50 {
  color: rgb(254 215 170 / 0.5);
}
.hx .text-orange-200\/55 {
  color: rgb(254 215 170 / 0.55);
}
.hx .text-orange-200\/60 {
  color: rgb(254 215 170 / 0.6);
}
.hx .text-orange-200\/65 {
  color: rgb(254 215 170 / 0.65);
}
.hx .text-orange-200\/70 {
  color: rgb(254 215 170 / 0.7);
}
.hx .text-orange-200\/75 {
  color: rgb(254 215 170 / 0.75);
}
.hx .text-orange-200\/80 {
  color: rgb(254 215 170 / 0.8);
}
.hx .text-orange-200\/85 {
  color: rgb(254 215 170 / 0.85);
}
.hx .text-orange-200\/90 {
  color: rgb(254 215 170 / 0.9);
}
.hx .text-orange-200\/95 {
  color: rgb(254 215 170 / 0.95);
}
.hx .text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.hx .text-orange-300\/0 {
  color: rgb(253 186 116 / 0);
}
.hx .text-orange-300\/10 {
  color: rgb(253 186 116 / 0.1);
}
.hx .text-orange-300\/100 {
  color: rgb(253 186 116 / 1);
}
.hx .text-orange-300\/15 {
  color: rgb(253 186 116 / 0.15);
}
.hx .text-orange-300\/20 {
  color: rgb(253 186 116 / 0.2);
}
.hx .text-orange-300\/25 {
  color: rgb(253 186 116 / 0.25);
}
.hx .text-orange-300\/30 {
  color: rgb(253 186 116 / 0.3);
}
.hx .text-orange-300\/35 {
  color: rgb(253 186 116 / 0.35);
}
.hx .text-orange-300\/40 {
  color: rgb(253 186 116 / 0.4);
}
.hx .text-orange-300\/45 {
  color: rgb(253 186 116 / 0.45);
}
.hx .text-orange-300\/5 {
  color: rgb(253 186 116 / 0.05);
}
.hx .text-orange-300\/50 {
  color: rgb(253 186 116 / 0.5);
}
.hx .text-orange-300\/55 {
  color: rgb(253 186 116 / 0.55);
}
.hx .text-orange-300\/60 {
  color: rgb(253 186 116 / 0.6);
}
.hx .text-orange-300\/65 {
  color: rgb(253 186 116 / 0.65);
}
.hx .text-orange-300\/70 {
  color: rgb(253 186 116 / 0.7);
}
.hx .text-orange-300\/75 {
  color: rgb(253 186 116 / 0.75);
}
.hx .text-orange-300\/80 {
  color: rgb(253 186 116 / 0.8);
}
.hx .text-orange-300\/85 {
  color: rgb(253 186 116 / 0.85);
}
.hx .text-orange-300\/90 {
  color: rgb(253 186 116 / 0.9);
}
.hx .text-orange-300\/95 {
  color: rgb(253 186 116 / 0.95);
}
.hx .text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.hx .text-orange-400\/0 {
  color: rgb(251 146 60 / 0);
}
.hx .text-orange-400\/10 {
  color: rgb(251 146 60 / 0.1);
}
.hx .text-orange-400\/100 {
  color: rgb(251 146 60 / 1);
}
.hx .text-orange-400\/15 {
  color: rgb(251 146 60 / 0.15);
}
.hx .text-orange-400\/20 {
  color: rgb(251 146 60 / 0.2);
}
.hx .text-orange-400\/25 {
  color: rgb(251 146 60 / 0.25);
}
.hx .text-orange-400\/30 {
  color: rgb(251 146 60 / 0.3);
}
.hx .text-orange-400\/35 {
  color: rgb(251 146 60 / 0.35);
}
.hx .text-orange-400\/40 {
  color: rgb(251 146 60 / 0.4);
}
.hx .text-orange-400\/45 {
  color: rgb(251 146 60 / 0.45);
}
.hx .text-orange-400\/5 {
  color: rgb(251 146 60 / 0.05);
}
.hx .text-orange-400\/50 {
  color: rgb(251 146 60 / 0.5);
}
.hx .text-orange-400\/55 {
  color: rgb(251 146 60 / 0.55);
}
.hx .text-orange-400\/60 {
  color: rgb(251 146 60 / 0.6);
}
.hx .text-orange-400\/65 {
  color: rgb(251 146 60 / 0.65);
}
.hx .text-orange-400\/70 {
  color: rgb(251 146 60 / 0.7);
}
.hx .text-orange-400\/75 {
  color: rgb(251 146 60 / 0.75);
}
.hx .text-orange-400\/80 {
  color: rgb(251 146 60 / 0.8);
}
.hx .text-orange-400\/85 {
  color: rgb(251 146 60 / 0.85);
}
.hx .text-orange-400\/90 {
  color: rgb(251 146 60 / 0.9);
}
.hx .text-orange-400\/95 {
  color: rgb(251 146 60 / 0.95);
}
.hx .text-orange-50 {
  --tw-text-opacity: 1;
  color: rgb(255 247 237 / var(--tw-text-opacity, 1));
}
.hx .text-orange-50\/0 {
  color: rgb(255 247 237 / 0);
}
.hx .text-orange-50\/10 {
  color: rgb(255 247 237 / 0.1);
}
.hx .text-orange-50\/100 {
  color: rgb(255 247 237 / 1);
}
.hx .text-orange-50\/15 {
  color: rgb(255 247 237 / 0.15);
}
.hx .text-orange-50\/20 {
  color: rgb(255 247 237 / 0.2);
}
.hx .text-orange-50\/25 {
  color: rgb(255 247 237 / 0.25);
}
.hx .text-orange-50\/30 {
  color: rgb(255 247 237 / 0.3);
}
.hx .text-orange-50\/35 {
  color: rgb(255 247 237 / 0.35);
}
.hx .text-orange-50\/40 {
  color: rgb(255 247 237 / 0.4);
}
.hx .text-orange-50\/45 {
  color: rgb(255 247 237 / 0.45);
}
.hx .text-orange-50\/5 {
  color: rgb(255 247 237 / 0.05);
}
.hx .text-orange-50\/50 {
  color: rgb(255 247 237 / 0.5);
}
.hx .text-orange-50\/55 {
  color: rgb(255 247 237 / 0.55);
}
.hx .text-orange-50\/60 {
  color: rgb(255 247 237 / 0.6);
}
.hx .text-orange-50\/65 {
  color: rgb(255 247 237 / 0.65);
}
.hx .text-orange-50\/70 {
  color: rgb(255 247 237 / 0.7);
}
.hx .text-orange-50\/75 {
  color: rgb(255 247 237 / 0.75);
}
.hx .text-orange-50\/80 {
  color: rgb(255 247 237 / 0.8);
}
.hx .text-orange-50\/85 {
  color: rgb(255 247 237 / 0.85);
}
.hx .text-orange-50\/90 {
  color: rgb(255 247 237 / 0.9);
}
.hx .text-orange-50\/95 {
  color: rgb(255 247 237 / 0.95);
}
.hx .text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.hx .text-orange-500\/0 {
  color: rgb(249 115 22 / 0);
}
.hx .text-orange-500\/10 {
  color: rgb(249 115 22 / 0.1);
}
.hx .text-orange-500\/100 {
  color: rgb(249 115 22 / 1);
}
.hx .text-orange-500\/15 {
  color: rgb(249 115 22 / 0.15);
}
.hx .text-orange-500\/20 {
  color: rgb(249 115 22 / 0.2);
}
.hx .text-orange-500\/25 {
  color: rgb(249 115 22 / 0.25);
}
.hx .text-orange-500\/30 {
  color: rgb(249 115 22 / 0.3);
}
.hx .text-orange-500\/35 {
  color: rgb(249 115 22 / 0.35);
}
.hx .text-orange-500\/40 {
  color: rgb(249 115 22 / 0.4);
}
.hx .text-orange-500\/45 {
  color: rgb(249 115 22 / 0.45);
}
.hx .text-orange-500\/5 {
  color: rgb(249 115 22 / 0.05);
}
.hx .text-orange-500\/50 {
  color: rgb(249 115 22 / 0.5);
}
.hx .text-orange-500\/55 {
  color: rgb(249 115 22 / 0.55);
}
.hx .text-orange-500\/60 {
  color: rgb(249 115 22 / 0.6);
}
.hx .text-orange-500\/65 {
  color: rgb(249 115 22 / 0.65);
}
.hx .text-orange-500\/70 {
  color: rgb(249 115 22 / 0.7);
}
.hx .text-orange-500\/75 {
  color: rgb(249 115 22 / 0.75);
}
.hx .text-orange-500\/80 {
  color: rgb(249 115 22 / 0.8);
}
.hx .text-orange-500\/85 {
  color: rgb(249 115 22 / 0.85);
}
.hx .text-orange-500\/90 {
  color: rgb(249 115 22 / 0.9);
}
.hx .text-orange-500\/95 {
  color: rgb(249 115 22 / 0.95);
}
.hx .text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.hx .text-orange-600\/0 {
  color: rgb(234 88 12 / 0);
}
.hx .text-orange-600\/10 {
  color: rgb(234 88 12 / 0.1);
}
.hx .text-orange-600\/100 {
  color: rgb(234 88 12 / 1);
}
.hx .text-orange-600\/15 {
  color: rgb(234 88 12 / 0.15);
}
.hx .text-orange-600\/20 {
  color: rgb(234 88 12 / 0.2);
}
.hx .text-orange-600\/25 {
  color: rgb(234 88 12 / 0.25);
}
.hx .text-orange-600\/30 {
  color: rgb(234 88 12 / 0.3);
}
.hx .text-orange-600\/35 {
  color: rgb(234 88 12 / 0.35);
}
.hx .text-orange-600\/40 {
  color: rgb(234 88 12 / 0.4);
}
.hx .text-orange-600\/45 {
  color: rgb(234 88 12 / 0.45);
}
.hx .text-orange-600\/5 {
  color: rgb(234 88 12 / 0.05);
}
.hx .text-orange-600\/50 {
  color: rgb(234 88 12 / 0.5);
}
.hx .text-orange-600\/55 {
  color: rgb(234 88 12 / 0.55);
}
.hx .text-orange-600\/60 {
  color: rgb(234 88 12 / 0.6);
}
.hx .text-orange-600\/65 {
  color: rgb(234 88 12 / 0.65);
}
.hx .text-orange-600\/70 {
  color: rgb(234 88 12 / 0.7);
}
.hx .text-orange-600\/75 {
  color: rgb(234 88 12 / 0.75);
}
.hx .text-orange-600\/80 {
  color: rgb(234 88 12 / 0.8);
}
.hx .text-orange-600\/85 {
  color: rgb(234 88 12 / 0.85);
}
.hx .text-orange-600\/90 {
  color: rgb(234 88 12 / 0.9);
}
.hx .text-orange-600\/95 {
  color: rgb(234 88 12 / 0.95);
}
.hx .text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.hx .text-orange-700\/0 {
  color: rgb(194 65 12 / 0);
}
.hx .text-orange-700\/10 {
  color: rgb(194 65 12 / 0.1);
}
.hx .text-orange-700\/100 {
  color: rgb(194 65 12 / 1);
}
.hx .text-orange-700\/15 {
  color: rgb(194 65 12 / 0.15);
}
.hx .text-orange-700\/20 {
  color: rgb(194 65 12 / 0.2);
}
.hx .text-orange-700\/25 {
  color: rgb(194 65 12 / 0.25);
}
.hx .text-orange-700\/30 {
  color: rgb(194 65 12 / 0.3);
}
.hx .text-orange-700\/35 {
  color: rgb(194 65 12 / 0.35);
}
.hx .text-orange-700\/40 {
  color: rgb(194 65 12 / 0.4);
}
.hx .text-orange-700\/45 {
  color: rgb(194 65 12 / 0.45);
}
.hx .text-orange-700\/5 {
  color: rgb(194 65 12 / 0.05);
}
.hx .text-orange-700\/50 {
  color: rgb(194 65 12 / 0.5);
}
.hx .text-orange-700\/55 {
  color: rgb(194 65 12 / 0.55);
}
.hx .text-orange-700\/60 {
  color: rgb(194 65 12 / 0.6);
}
.hx .text-orange-700\/65 {
  color: rgb(194 65 12 / 0.65);
}
.hx .text-orange-700\/70 {
  color: rgb(194 65 12 / 0.7);
}
.hx .text-orange-700\/75 {
  color: rgb(194 65 12 / 0.75);
}
.hx .text-orange-700\/80 {
  color: rgb(194 65 12 / 0.8);
}
.hx .text-orange-700\/85 {
  color: rgb(194 65 12 / 0.85);
}
.hx .text-orange-700\/90 {
  color: rgb(194 65 12 / 0.9);
}
.hx .text-orange-700\/95 {
  color: rgb(194 65 12 / 0.95);
}
.hx .text-orange-800 {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.hx .text-orange-800\/0 {
  color: rgb(154 52 18 / 0);
}
.hx .text-orange-800\/10 {
  color: rgb(154 52 18 / 0.1);
}
.hx .text-orange-800\/100 {
  color: rgb(154 52 18 / 1);
}
.hx .text-orange-800\/15 {
  color: rgb(154 52 18 / 0.15);
}
.hx .text-orange-800\/20 {
  color: rgb(154 52 18 / 0.2);
}
.hx .text-orange-800\/25 {
  color: rgb(154 52 18 / 0.25);
}
.hx .text-orange-800\/30 {
  color: rgb(154 52 18 / 0.3);
}
.hx .text-orange-800\/35 {
  color: rgb(154 52 18 / 0.35);
}
.hx .text-orange-800\/40 {
  color: rgb(154 52 18 / 0.4);
}
.hx .text-orange-800\/45 {
  color: rgb(154 52 18 / 0.45);
}
.hx .text-orange-800\/5 {
  color: rgb(154 52 18 / 0.05);
}
.hx .text-orange-800\/50 {
  color: rgb(154 52 18 / 0.5);
}
.hx .text-orange-800\/55 {
  color: rgb(154 52 18 / 0.55);
}
.hx .text-orange-800\/60 {
  color: rgb(154 52 18 / 0.6);
}
.hx .text-orange-800\/65 {
  color: rgb(154 52 18 / 0.65);
}
.hx .text-orange-800\/70 {
  color: rgb(154 52 18 / 0.7);
}
.hx .text-orange-800\/75 {
  color: rgb(154 52 18 / 0.75);
}
.hx .text-orange-800\/80 {
  color: rgb(154 52 18 / 0.8);
}
.hx .text-orange-800\/85 {
  color: rgb(154 52 18 / 0.85);
}
.hx .text-orange-800\/90 {
  color: rgb(154 52 18 / 0.9);
}
.hx .text-orange-800\/95 {
  color: rgb(154 52 18 / 0.95);
}
.hx .text-orange-900 {
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.hx .text-orange-900\/0 {
  color: rgb(124 45 18 / 0);
}
.hx .text-orange-900\/10 {
  color: rgb(124 45 18 / 0.1);
}
.hx .text-orange-900\/100 {
  color: rgb(124 45 18 / 1);
}
.hx .text-orange-900\/15 {
  color: rgb(124 45 18 / 0.15);
}
.hx .text-orange-900\/20 {
  color: rgb(124 45 18 / 0.2);
}
.hx .text-orange-900\/25 {
  color: rgb(124 45 18 / 0.25);
}
.hx .text-orange-900\/30 {
  color: rgb(124 45 18 / 0.3);
}
.hx .text-orange-900\/35 {
  color: rgb(124 45 18 / 0.35);
}
.hx .text-orange-900\/40 {
  color: rgb(124 45 18 / 0.4);
}
.hx .text-orange-900\/45 {
  color: rgb(124 45 18 / 0.45);
}
.hx .text-orange-900\/5 {
  color: rgb(124 45 18 / 0.05);
}
.hx .text-orange-900\/50 {
  color: rgb(124 45 18 / 0.5);
}
.hx .text-orange-900\/55 {
  color: rgb(124 45 18 / 0.55);
}
.hx .text-orange-900\/60 {
  color: rgb(124 45 18 / 0.6);
}
.hx .text-orange-900\/65 {
  color: rgb(124 45 18 / 0.65);
}
.hx .text-orange-900\/70 {
  color: rgb(124 45 18 / 0.7);
}
.hx .text-orange-900\/75 {
  color: rgb(124 45 18 / 0.75);
}
.hx .text-orange-900\/80 {
  color: rgb(124 45 18 / 0.8);
}
.hx .text-orange-900\/85 {
  color: rgb(124 45 18 / 0.85);
}
.hx .text-orange-900\/90 {
  color: rgb(124 45 18 / 0.9);
}
.hx .text-orange-900\/95 {
  color: rgb(124 45 18 / 0.95);
}
.hx .text-orange-950 {
  --tw-text-opacity: 1;
  color: rgb(67 20 7 / var(--tw-text-opacity, 1));
}
.hx .text-orange-950\/0 {
  color: rgb(67 20 7 / 0);
}
.hx .text-orange-950\/10 {
  color: rgb(67 20 7 / 0.1);
}
.hx .text-orange-950\/100 {
  color: rgb(67 20 7 / 1);
}
.hx .text-orange-950\/15 {
  color: rgb(67 20 7 / 0.15);
}
.hx .text-orange-950\/20 {
  color: rgb(67 20 7 / 0.2);
}
.hx .text-orange-950\/25 {
  color: rgb(67 20 7 / 0.25);
}
.hx .text-orange-950\/30 {
  color: rgb(67 20 7 / 0.3);
}
.hx .text-orange-950\/35 {
  color: rgb(67 20 7 / 0.35);
}
.hx .text-orange-950\/40 {
  color: rgb(67 20 7 / 0.4);
}
.hx .text-orange-950\/45 {
  color: rgb(67 20 7 / 0.45);
}
.hx .text-orange-950\/5 {
  color: rgb(67 20 7 / 0.05);
}
.hx .text-orange-950\/50 {
  color: rgb(67 20 7 / 0.5);
}
.hx .text-orange-950\/55 {
  color: rgb(67 20 7 / 0.55);
}
.hx .text-orange-950\/60 {
  color: rgb(67 20 7 / 0.6);
}
.hx .text-orange-950\/65 {
  color: rgb(67 20 7 / 0.65);
}
.hx .text-orange-950\/70 {
  color: rgb(67 20 7 / 0.7);
}
.hx .text-orange-950\/75 {
  color: rgb(67 20 7 / 0.75);
}
.hx .text-orange-950\/80 {
  color: rgb(67 20 7 / 0.8);
}
.hx .text-orange-950\/85 {
  color: rgb(67 20 7 / 0.85);
}
.hx .text-orange-950\/90 {
  color: rgb(67 20 7 / 0.9);
}
.hx .text-orange-950\/95 {
  color: rgb(67 20 7 / 0.95);
}
.hx .text-pink-100 {
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / var(--tw-text-opacity, 1));
}
.hx .text-pink-100\/0 {
  color: rgb(252 231 243 / 0);
}
.hx .text-pink-100\/10 {
  color: rgb(252 231 243 / 0.1);
}
.hx .text-pink-100\/100 {
  color: rgb(252 231 243 / 1);
}
.hx .text-pink-100\/15 {
  color: rgb(252 231 243 / 0.15);
}
.hx .text-pink-100\/20 {
  color: rgb(252 231 243 / 0.2);
}
.hx .text-pink-100\/25 {
  color: rgb(252 231 243 / 0.25);
}
.hx .text-pink-100\/30 {
  color: rgb(252 231 243 / 0.3);
}
.hx .text-pink-100\/35 {
  color: rgb(252 231 243 / 0.35);
}
.hx .text-pink-100\/40 {
  color: rgb(252 231 243 / 0.4);
}
.hx .text-pink-100\/45 {
  color: rgb(252 231 243 / 0.45);
}
.hx .text-pink-100\/5 {
  color: rgb(252 231 243 / 0.05);
}
.hx .text-pink-100\/50 {
  color: rgb(252 231 243 / 0.5);
}
.hx .text-pink-100\/55 {
  color: rgb(252 231 243 / 0.55);
}
.hx .text-pink-100\/60 {
  color: rgb(252 231 243 / 0.6);
}
.hx .text-pink-100\/65 {
  color: rgb(252 231 243 / 0.65);
}
.hx .text-pink-100\/70 {
  color: rgb(252 231 243 / 0.7);
}
.hx .text-pink-100\/75 {
  color: rgb(252 231 243 / 0.75);
}
.hx .text-pink-100\/80 {
  color: rgb(252 231 243 / 0.8);
}
.hx .text-pink-100\/85 {
  color: rgb(252 231 243 / 0.85);
}
.hx .text-pink-100\/90 {
  color: rgb(252 231 243 / 0.9);
}
.hx .text-pink-100\/95 {
  color: rgb(252 231 243 / 0.95);
}
.hx .text-pink-200 {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity, 1));
}
.hx .text-pink-200\/0 {
  color: rgb(251 207 232 / 0);
}
.hx .text-pink-200\/10 {
  color: rgb(251 207 232 / 0.1);
}
.hx .text-pink-200\/100 {
  color: rgb(251 207 232 / 1);
}
.hx .text-pink-200\/15 {
  color: rgb(251 207 232 / 0.15);
}
.hx .text-pink-200\/20 {
  color: rgb(251 207 232 / 0.2);
}
.hx .text-pink-200\/25 {
  color: rgb(251 207 232 / 0.25);
}
.hx .text-pink-200\/30 {
  color: rgb(251 207 232 / 0.3);
}
.hx .text-pink-200\/35 {
  color: rgb(251 207 232 / 0.35);
}
.hx .text-pink-200\/40 {
  color: rgb(251 207 232 / 0.4);
}
.hx .text-pink-200\/45 {
  color: rgb(251 207 232 / 0.45);
}
.hx .text-pink-200\/5 {
  color: rgb(251 207 232 / 0.05);
}
.hx .text-pink-200\/50 {
  color: rgb(251 207 232 / 0.5);
}
.hx .text-pink-200\/55 {
  color: rgb(251 207 232 / 0.55);
}
.hx .text-pink-200\/60 {
  color: rgb(251 207 232 / 0.6);
}
.hx .text-pink-200\/65 {
  color: rgb(251 207 232 / 0.65);
}
.hx .text-pink-200\/70 {
  color: rgb(251 207 232 / 0.7);
}
.hx .text-pink-200\/75 {
  color: rgb(251 207 232 / 0.75);
}
.hx .text-pink-200\/80 {
  color: rgb(251 207 232 / 0.8);
}
.hx .text-pink-200\/85 {
  color: rgb(251 207 232 / 0.85);
}
.hx .text-pink-200\/90 {
  color: rgb(251 207 232 / 0.9);
}
.hx .text-pink-200\/95 {
  color: rgb(251 207 232 / 0.95);
}
.hx .text-pink-300 {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.hx .text-pink-300\/0 {
  color: rgb(249 168 212 / 0);
}
.hx .text-pink-300\/10 {
  color: rgb(249 168 212 / 0.1);
}
.hx .text-pink-300\/100 {
  color: rgb(249 168 212 / 1);
}
.hx .text-pink-300\/15 {
  color: rgb(249 168 212 / 0.15);
}
.hx .text-pink-300\/20 {
  color: rgb(249 168 212 / 0.2);
}
.hx .text-pink-300\/25 {
  color: rgb(249 168 212 / 0.25);
}
.hx .text-pink-300\/30 {
  color: rgb(249 168 212 / 0.3);
}
.hx .text-pink-300\/35 {
  color: rgb(249 168 212 / 0.35);
}
.hx .text-pink-300\/40 {
  color: rgb(249 168 212 / 0.4);
}
.hx .text-pink-300\/45 {
  color: rgb(249 168 212 / 0.45);
}
.hx .text-pink-300\/5 {
  color: rgb(249 168 212 / 0.05);
}
.hx .text-pink-300\/50 {
  color: rgb(249 168 212 / 0.5);
}
.hx .text-pink-300\/55 {
  color: rgb(249 168 212 / 0.55);
}
.hx .text-pink-300\/60 {
  color: rgb(249 168 212 / 0.6);
}
.hx .text-pink-300\/65 {
  color: rgb(249 168 212 / 0.65);
}
.hx .text-pink-300\/70 {
  color: rgb(249 168 212 / 0.7);
}
.hx .text-pink-300\/75 {
  color: rgb(249 168 212 / 0.75);
}
.hx .text-pink-300\/80 {
  color: rgb(249 168 212 / 0.8);
}
.hx .text-pink-300\/85 {
  color: rgb(249 168 212 / 0.85);
}
.hx .text-pink-300\/90 {
  color: rgb(249 168 212 / 0.9);
}
.hx .text-pink-300\/95 {
  color: rgb(249 168 212 / 0.95);
}
.hx .text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.hx .text-pink-400\/0 {
  color: rgb(244 114 182 / 0);
}
.hx .text-pink-400\/10 {
  color: rgb(244 114 182 / 0.1);
}
.hx .text-pink-400\/100 {
  color: rgb(244 114 182 / 1);
}
.hx .text-pink-400\/15 {
  color: rgb(244 114 182 / 0.15);
}
.hx .text-pink-400\/20 {
  color: rgb(244 114 182 / 0.2);
}
.hx .text-pink-400\/25 {
  color: rgb(244 114 182 / 0.25);
}
.hx .text-pink-400\/30 {
  color: rgb(244 114 182 / 0.3);
}
.hx .text-pink-400\/35 {
  color: rgb(244 114 182 / 0.35);
}
.hx .text-pink-400\/40 {
  color: rgb(244 114 182 / 0.4);
}
.hx .text-pink-400\/45 {
  color: rgb(244 114 182 / 0.45);
}
.hx .text-pink-400\/5 {
  color: rgb(244 114 182 / 0.05);
}
.hx .text-pink-400\/50 {
  color: rgb(244 114 182 / 0.5);
}
.hx .text-pink-400\/55 {
  color: rgb(244 114 182 / 0.55);
}
.hx .text-pink-400\/60 {
  color: rgb(244 114 182 / 0.6);
}
.hx .text-pink-400\/65 {
  color: rgb(244 114 182 / 0.65);
}
.hx .text-pink-400\/70 {
  color: rgb(244 114 182 / 0.7);
}
.hx .text-pink-400\/75 {
  color: rgb(244 114 182 / 0.75);
}
.hx .text-pink-400\/80 {
  color: rgb(244 114 182 / 0.8);
}
.hx .text-pink-400\/85 {
  color: rgb(244 114 182 / 0.85);
}
.hx .text-pink-400\/90 {
  color: rgb(244 114 182 / 0.9);
}
.hx .text-pink-400\/95 {
  color: rgb(244 114 182 / 0.95);
}
.hx .text-pink-50 {
  --tw-text-opacity: 1;
  color: rgb(253 242 248 / var(--tw-text-opacity, 1));
}
.hx .text-pink-50\/0 {
  color: rgb(253 242 248 / 0);
}
.hx .text-pink-50\/10 {
  color: rgb(253 242 248 / 0.1);
}
.hx .text-pink-50\/100 {
  color: rgb(253 242 248 / 1);
}
.hx .text-pink-50\/15 {
  color: rgb(253 242 248 / 0.15);
}
.hx .text-pink-50\/20 {
  color: rgb(253 242 248 / 0.2);
}
.hx .text-pink-50\/25 {
  color: rgb(253 242 248 / 0.25);
}
.hx .text-pink-50\/30 {
  color: rgb(253 242 248 / 0.3);
}
.hx .text-pink-50\/35 {
  color: rgb(253 242 248 / 0.35);
}
.hx .text-pink-50\/40 {
  color: rgb(253 242 248 / 0.4);
}
.hx .text-pink-50\/45 {
  color: rgb(253 242 248 / 0.45);
}
.hx .text-pink-50\/5 {
  color: rgb(253 242 248 / 0.05);
}
.hx .text-pink-50\/50 {
  color: rgb(253 242 248 / 0.5);
}
.hx .text-pink-50\/55 {
  color: rgb(253 242 248 / 0.55);
}
.hx .text-pink-50\/60 {
  color: rgb(253 242 248 / 0.6);
}
.hx .text-pink-50\/65 {
  color: rgb(253 242 248 / 0.65);
}
.hx .text-pink-50\/70 {
  color: rgb(253 242 248 / 0.7);
}
.hx .text-pink-50\/75 {
  color: rgb(253 242 248 / 0.75);
}
.hx .text-pink-50\/80 {
  color: rgb(253 242 248 / 0.8);
}
.hx .text-pink-50\/85 {
  color: rgb(253 242 248 / 0.85);
}
.hx .text-pink-50\/90 {
  color: rgb(253 242 248 / 0.9);
}
.hx .text-pink-50\/95 {
  color: rgb(253 242 248 / 0.95);
}
.hx .text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.hx .text-pink-500\/0 {
  color: rgb(236 72 153 / 0);
}
.hx .text-pink-500\/10 {
  color: rgb(236 72 153 / 0.1);
}
.hx .text-pink-500\/100 {
  color: rgb(236 72 153 / 1);
}
.hx .text-pink-500\/15 {
  color: rgb(236 72 153 / 0.15);
}
.hx .text-pink-500\/20 {
  color: rgb(236 72 153 / 0.2);
}
.hx .text-pink-500\/25 {
  color: rgb(236 72 153 / 0.25);
}
.hx .text-pink-500\/30 {
  color: rgb(236 72 153 / 0.3);
}
.hx .text-pink-500\/35 {
  color: rgb(236 72 153 / 0.35);
}
.hx .text-pink-500\/40 {
  color: rgb(236 72 153 / 0.4);
}
.hx .text-pink-500\/45 {
  color: rgb(236 72 153 / 0.45);
}
.hx .text-pink-500\/5 {
  color: rgb(236 72 153 / 0.05);
}
.hx .text-pink-500\/50 {
  color: rgb(236 72 153 / 0.5);
}
.hx .text-pink-500\/55 {
  color: rgb(236 72 153 / 0.55);
}
.hx .text-pink-500\/60 {
  color: rgb(236 72 153 / 0.6);
}
.hx .text-pink-500\/65 {
  color: rgb(236 72 153 / 0.65);
}
.hx .text-pink-500\/70 {
  color: rgb(236 72 153 / 0.7);
}
.hx .text-pink-500\/75 {
  color: rgb(236 72 153 / 0.75);
}
.hx .text-pink-500\/80 {
  color: rgb(236 72 153 / 0.8);
}
.hx .text-pink-500\/85 {
  color: rgb(236 72 153 / 0.85);
}
.hx .text-pink-500\/90 {
  color: rgb(236 72 153 / 0.9);
}
.hx .text-pink-500\/95 {
  color: rgb(236 72 153 / 0.95);
}
.hx .text-pink-600 {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.hx .text-pink-600\/0 {
  color: rgb(219 39 119 / 0);
}
.hx .text-pink-600\/10 {
  color: rgb(219 39 119 / 0.1);
}
.hx .text-pink-600\/100 {
  color: rgb(219 39 119 / 1);
}
.hx .text-pink-600\/15 {
  color: rgb(219 39 119 / 0.15);
}
.hx .text-pink-600\/20 {
  color: rgb(219 39 119 / 0.2);
}
.hx .text-pink-600\/25 {
  color: rgb(219 39 119 / 0.25);
}
.hx .text-pink-600\/30 {
  color: rgb(219 39 119 / 0.3);
}
.hx .text-pink-600\/35 {
  color: rgb(219 39 119 / 0.35);
}
.hx .text-pink-600\/40 {
  color: rgb(219 39 119 / 0.4);
}
.hx .text-pink-600\/45 {
  color: rgb(219 39 119 / 0.45);
}
.hx .text-pink-600\/5 {
  color: rgb(219 39 119 / 0.05);
}
.hx .text-pink-600\/50 {
  color: rgb(219 39 119 / 0.5);
}
.hx .text-pink-600\/55 {
  color: rgb(219 39 119 / 0.55);
}
.hx .text-pink-600\/60 {
  color: rgb(219 39 119 / 0.6);
}
.hx .text-pink-600\/65 {
  color: rgb(219 39 119 / 0.65);
}
.hx .text-pink-600\/70 {
  color: rgb(219 39 119 / 0.7);
}
.hx .text-pink-600\/75 {
  color: rgb(219 39 119 / 0.75);
}
.hx .text-pink-600\/80 {
  color: rgb(219 39 119 / 0.8);
}
.hx .text-pink-600\/85 {
  color: rgb(219 39 119 / 0.85);
}
.hx .text-pink-600\/90 {
  color: rgb(219 39 119 / 0.9);
}
.hx .text-pink-600\/95 {
  color: rgb(219 39 119 / 0.95);
}
.hx .text-pink-700 {
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}
.hx .text-pink-700\/0 {
  color: rgb(190 24 93 / 0);
}
.hx .text-pink-700\/10 {
  color: rgb(190 24 93 / 0.1);
}
.hx .text-pink-700\/100 {
  color: rgb(190 24 93 / 1);
}
.hx .text-pink-700\/15 {
  color: rgb(190 24 93 / 0.15);
}
.hx .text-pink-700\/20 {
  color: rgb(190 24 93 / 0.2);
}
.hx .text-pink-700\/25 {
  color: rgb(190 24 93 / 0.25);
}
.hx .text-pink-700\/30 {
  color: rgb(190 24 93 / 0.3);
}
.hx .text-pink-700\/35 {
  color: rgb(190 24 93 / 0.35);
}
.hx .text-pink-700\/40 {
  color: rgb(190 24 93 / 0.4);
}
.hx .text-pink-700\/45 {
  color: rgb(190 24 93 / 0.45);
}
.hx .text-pink-700\/5 {
  color: rgb(190 24 93 / 0.05);
}
.hx .text-pink-700\/50 {
  color: rgb(190 24 93 / 0.5);
}
.hx .text-pink-700\/55 {
  color: rgb(190 24 93 / 0.55);
}
.hx .text-pink-700\/60 {
  color: rgb(190 24 93 / 0.6);
}
.hx .text-pink-700\/65 {
  color: rgb(190 24 93 / 0.65);
}
.hx .text-pink-700\/70 {
  color: rgb(190 24 93 / 0.7);
}
.hx .text-pink-700\/75 {
  color: rgb(190 24 93 / 0.75);
}
.hx .text-pink-700\/80 {
  color: rgb(190 24 93 / 0.8);
}
.hx .text-pink-700\/85 {
  color: rgb(190 24 93 / 0.85);
}
.hx .text-pink-700\/90 {
  color: rgb(190 24 93 / 0.9);
}
.hx .text-pink-700\/95 {
  color: rgb(190 24 93 / 0.95);
}
.hx .text-pink-800 {
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.hx .text-pink-800\/0 {
  color: rgb(157 23 77 / 0);
}
.hx .text-pink-800\/10 {
  color: rgb(157 23 77 / 0.1);
}
.hx .text-pink-800\/100 {
  color: rgb(157 23 77 / 1);
}
.hx .text-pink-800\/15 {
  color: rgb(157 23 77 / 0.15);
}
.hx .text-pink-800\/20 {
  color: rgb(157 23 77 / 0.2);
}
.hx .text-pink-800\/25 {
  color: rgb(157 23 77 / 0.25);
}
.hx .text-pink-800\/30 {
  color: rgb(157 23 77 / 0.3);
}
.hx .text-pink-800\/35 {
  color: rgb(157 23 77 / 0.35);
}
.hx .text-pink-800\/40 {
  color: rgb(157 23 77 / 0.4);
}
.hx .text-pink-800\/45 {
  color: rgb(157 23 77 / 0.45);
}
.hx .text-pink-800\/5 {
  color: rgb(157 23 77 / 0.05);
}
.hx .text-pink-800\/50 {
  color: rgb(157 23 77 / 0.5);
}
.hx .text-pink-800\/55 {
  color: rgb(157 23 77 / 0.55);
}
.hx .text-pink-800\/60 {
  color: rgb(157 23 77 / 0.6);
}
.hx .text-pink-800\/65 {
  color: rgb(157 23 77 / 0.65);
}
.hx .text-pink-800\/70 {
  color: rgb(157 23 77 / 0.7);
}
.hx .text-pink-800\/75 {
  color: rgb(157 23 77 / 0.75);
}
.hx .text-pink-800\/80 {
  color: rgb(157 23 77 / 0.8);
}
.hx .text-pink-800\/85 {
  color: rgb(157 23 77 / 0.85);
}
.hx .text-pink-800\/90 {
  color: rgb(157 23 77 / 0.9);
}
.hx .text-pink-800\/95 {
  color: rgb(157 23 77 / 0.95);
}
.hx .text-pink-900 {
  --tw-text-opacity: 1;
  color: rgb(131 24 67 / var(--tw-text-opacity, 1));
}
.hx .text-pink-900\/0 {
  color: rgb(131 24 67 / 0);
}
.hx .text-pink-900\/10 {
  color: rgb(131 24 67 / 0.1);
}
.hx .text-pink-900\/100 {
  color: rgb(131 24 67 / 1);
}
.hx .text-pink-900\/15 {
  color: rgb(131 24 67 / 0.15);
}
.hx .text-pink-900\/20 {
  color: rgb(131 24 67 / 0.2);
}
.hx .text-pink-900\/25 {
  color: rgb(131 24 67 / 0.25);
}
.hx .text-pink-900\/30 {
  color: rgb(131 24 67 / 0.3);
}
.hx .text-pink-900\/35 {
  color: rgb(131 24 67 / 0.35);
}
.hx .text-pink-900\/40 {
  color: rgb(131 24 67 / 0.4);
}
.hx .text-pink-900\/45 {
  color: rgb(131 24 67 / 0.45);
}
.hx .text-pink-900\/5 {
  color: rgb(131 24 67 / 0.05);
}
.hx .text-pink-900\/50 {
  color: rgb(131 24 67 / 0.5);
}
.hx .text-pink-900\/55 {
  color: rgb(131 24 67 / 0.55);
}
.hx .text-pink-900\/60 {
  color: rgb(131 24 67 / 0.6);
}
.hx .text-pink-900\/65 {
  color: rgb(131 24 67 / 0.65);
}
.hx .text-pink-900\/70 {
  color: rgb(131 24 67 / 0.7);
}
.hx .text-pink-900\/75 {
  color: rgb(131 24 67 / 0.75);
}
.hx .text-pink-900\/80 {
  color: rgb(131 24 67 / 0.8);
}
.hx .text-pink-900\/85 {
  color: rgb(131 24 67 / 0.85);
}
.hx .text-pink-900\/90 {
  color: rgb(131 24 67 / 0.9);
}
.hx .text-pink-900\/95 {
  color: rgb(131 24 67 / 0.95);
}
.hx .text-pink-950 {
  --tw-text-opacity: 1;
  color: rgb(80 7 36 / var(--tw-text-opacity, 1));
}
.hx .text-pink-950\/0 {
  color: rgb(80 7 36 / 0);
}
.hx .text-pink-950\/10 {
  color: rgb(80 7 36 / 0.1);
}
.hx .text-pink-950\/100 {
  color: rgb(80 7 36 / 1);
}
.hx .text-pink-950\/15 {
  color: rgb(80 7 36 / 0.15);
}
.hx .text-pink-950\/20 {
  color: rgb(80 7 36 / 0.2);
}
.hx .text-pink-950\/25 {
  color: rgb(80 7 36 / 0.25);
}
.hx .text-pink-950\/30 {
  color: rgb(80 7 36 / 0.3);
}
.hx .text-pink-950\/35 {
  color: rgb(80 7 36 / 0.35);
}
.hx .text-pink-950\/40 {
  color: rgb(80 7 36 / 0.4);
}
.hx .text-pink-950\/45 {
  color: rgb(80 7 36 / 0.45);
}
.hx .text-pink-950\/5 {
  color: rgb(80 7 36 / 0.05);
}
.hx .text-pink-950\/50 {
  color: rgb(80 7 36 / 0.5);
}
.hx .text-pink-950\/55 {
  color: rgb(80 7 36 / 0.55);
}
.hx .text-pink-950\/60 {
  color: rgb(80 7 36 / 0.6);
}
.hx .text-pink-950\/65 {
  color: rgb(80 7 36 / 0.65);
}
.hx .text-pink-950\/70 {
  color: rgb(80 7 36 / 0.7);
}
.hx .text-pink-950\/75 {
  color: rgb(80 7 36 / 0.75);
}
.hx .text-pink-950\/80 {
  color: rgb(80 7 36 / 0.8);
}
.hx .text-pink-950\/85 {
  color: rgb(80 7 36 / 0.85);
}
.hx .text-pink-950\/90 {
  color: rgb(80 7 36 / 0.9);
}
.hx .text-pink-950\/95 {
  color: rgb(80 7 36 / 0.95);
}
.hx .text-primary {
  --tw-text-opacity: 1;
  color: rgb(0 172 240 / var(--tw-text-opacity, 1));
}
.hx .text-primary-100 {
  --tw-text-opacity: 1;
  color: rgb(235 247 255 / var(--tw-text-opacity, 1));
}
.hx .text-primary-100\/0 {
  color: rgb(235 247 255 / 0);
}
.hx .text-primary-100\/10 {
  color: rgb(235 247 255 / 0.1);
}
.hx .text-primary-100\/100 {
  color: rgb(235 247 255 / 1);
}
.hx .text-primary-100\/15 {
  color: rgb(235 247 255 / 0.15);
}
.hx .text-primary-100\/20 {
  color: rgb(235 247 255 / 0.2);
}
.hx .text-primary-100\/25 {
  color: rgb(235 247 255 / 0.25);
}
.hx .text-primary-100\/30 {
  color: rgb(235 247 255 / 0.3);
}
.hx .text-primary-100\/35 {
  color: rgb(235 247 255 / 0.35);
}
.hx .text-primary-100\/40 {
  color: rgb(235 247 255 / 0.4);
}
.hx .text-primary-100\/45 {
  color: rgb(235 247 255 / 0.45);
}
.hx .text-primary-100\/5 {
  color: rgb(235 247 255 / 0.05);
}
.hx .text-primary-100\/50 {
  color: rgb(235 247 255 / 0.5);
}
.hx .text-primary-100\/55 {
  color: rgb(235 247 255 / 0.55);
}
.hx .text-primary-100\/60 {
  color: rgb(235 247 255 / 0.6);
}
.hx .text-primary-100\/65 {
  color: rgb(235 247 255 / 0.65);
}
.hx .text-primary-100\/70 {
  color: rgb(235 247 255 / 0.7);
}
.hx .text-primary-100\/75 {
  color: rgb(235 247 255 / 0.75);
}
.hx .text-primary-100\/80 {
  color: rgb(235 247 255 / 0.8);
}
.hx .text-primary-100\/85 {
  color: rgb(235 247 255 / 0.85);
}
.hx .text-primary-100\/90 {
  color: rgb(235 247 255 / 0.9);
}
.hx .text-primary-100\/95 {
  color: rgb(235 247 255 / 0.95);
}
.hx .text-primary-200 {
  --tw-text-opacity: 1;
  color: rgb(195 237 254 / var(--tw-text-opacity, 1));
}
.hx .text-primary-200\/0 {
  color: rgb(195 237 254 / 0);
}
.hx .text-primary-200\/10 {
  color: rgb(195 237 254 / 0.1);
}
.hx .text-primary-200\/100 {
  color: rgb(195 237 254 / 1);
}
.hx .text-primary-200\/15 {
  color: rgb(195 237 254 / 0.15);
}
.hx .text-primary-200\/20 {
  color: rgb(195 237 254 / 0.2);
}
.hx .text-primary-200\/25 {
  color: rgb(195 237 254 / 0.25);
}
.hx .text-primary-200\/30 {
  color: rgb(195 237 254 / 0.3);
}
.hx .text-primary-200\/35 {
  color: rgb(195 237 254 / 0.35);
}
.hx .text-primary-200\/40 {
  color: rgb(195 237 254 / 0.4);
}
.hx .text-primary-200\/45 {
  color: rgb(195 237 254 / 0.45);
}
.hx .text-primary-200\/5 {
  color: rgb(195 237 254 / 0.05);
}
.hx .text-primary-200\/50 {
  color: rgb(195 237 254 / 0.5);
}
.hx .text-primary-200\/55 {
  color: rgb(195 237 254 / 0.55);
}
.hx .text-primary-200\/60 {
  color: rgb(195 237 254 / 0.6);
}
.hx .text-primary-200\/65 {
  color: rgb(195 237 254 / 0.65);
}
.hx .text-primary-200\/70 {
  color: rgb(195 237 254 / 0.7);
}
.hx .text-primary-200\/75 {
  color: rgb(195 237 254 / 0.75);
}
.hx .text-primary-200\/80 {
  color: rgb(195 237 254 / 0.8);
}
.hx .text-primary-200\/85 {
  color: rgb(195 237 254 / 0.85);
}
.hx .text-primary-200\/90 {
  color: rgb(195 237 254 / 0.9);
}
.hx .text-primary-200\/95 {
  color: rgb(195 237 254 / 0.95);
}
.hx .text-primary-300 {
  --tw-text-opacity: 1;
  color: rgb(130 220 252 / var(--tw-text-opacity, 1));
}
.hx .text-primary-300\/0 {
  color: rgb(130 220 252 / 0);
}
.hx .text-primary-300\/10 {
  color: rgb(130 220 252 / 0.1);
}
.hx .text-primary-300\/100 {
  color: rgb(130 220 252 / 1);
}
.hx .text-primary-300\/15 {
  color: rgb(130 220 252 / 0.15);
}
.hx .text-primary-300\/20 {
  color: rgb(130 220 252 / 0.2);
}
.hx .text-primary-300\/25 {
  color: rgb(130 220 252 / 0.25);
}
.hx .text-primary-300\/30 {
  color: rgb(130 220 252 / 0.3);
}
.hx .text-primary-300\/35 {
  color: rgb(130 220 252 / 0.35);
}
.hx .text-primary-300\/40 {
  color: rgb(130 220 252 / 0.4);
}
.hx .text-primary-300\/45 {
  color: rgb(130 220 252 / 0.45);
}
.hx .text-primary-300\/5 {
  color: rgb(130 220 252 / 0.05);
}
.hx .text-primary-300\/50 {
  color: rgb(130 220 252 / 0.5);
}
.hx .text-primary-300\/55 {
  color: rgb(130 220 252 / 0.55);
}
.hx .text-primary-300\/60 {
  color: rgb(130 220 252 / 0.6);
}
.hx .text-primary-300\/65 {
  color: rgb(130 220 252 / 0.65);
}
.hx .text-primary-300\/70 {
  color: rgb(130 220 252 / 0.7);
}
.hx .text-primary-300\/75 {
  color: rgb(130 220 252 / 0.75);
}
.hx .text-primary-300\/80 {
  color: rgb(130 220 252 / 0.8);
}
.hx .text-primary-300\/85 {
  color: rgb(130 220 252 / 0.85);
}
.hx .text-primary-300\/90 {
  color: rgb(130 220 252 / 0.9);
}
.hx .text-primary-300\/95 {
  color: rgb(130 220 252 / 0.95);
}
.hx .text-primary-400 {
  --tw-text-opacity: 1;
  color: rgb(60 203 251 / var(--tw-text-opacity, 1));
}
.hx .text-primary-400\/0 {
  color: rgb(60 203 251 / 0);
}
.hx .text-primary-400\/10 {
  color: rgb(60 203 251 / 0.1);
}
.hx .text-primary-400\/100 {
  color: rgb(60 203 251 / 1);
}
.hx .text-primary-400\/15 {
  color: rgb(60 203 251 / 0.15);
}
.hx .text-primary-400\/20 {
  color: rgb(60 203 251 / 0.2);
}
.hx .text-primary-400\/25 {
  color: rgb(60 203 251 / 0.25);
}
.hx .text-primary-400\/30 {
  color: rgb(60 203 251 / 0.3);
}
.hx .text-primary-400\/35 {
  color: rgb(60 203 251 / 0.35);
}
.hx .text-primary-400\/40 {
  color: rgb(60 203 251 / 0.4);
}
.hx .text-primary-400\/45 {
  color: rgb(60 203 251 / 0.45);
}
.hx .text-primary-400\/5 {
  color: rgb(60 203 251 / 0.05);
}
.hx .text-primary-400\/50 {
  color: rgb(60 203 251 / 0.5);
}
.hx .text-primary-400\/55 {
  color: rgb(60 203 251 / 0.55);
}
.hx .text-primary-400\/60 {
  color: rgb(60 203 251 / 0.6);
}
.hx .text-primary-400\/65 {
  color: rgb(60 203 251 / 0.65);
}
.hx .text-primary-400\/70 {
  color: rgb(60 203 251 / 0.7);
}
.hx .text-primary-400\/75 {
  color: rgb(60 203 251 / 0.75);
}
.hx .text-primary-400\/80 {
  color: rgb(60 203 251 / 0.8);
}
.hx .text-primary-400\/85 {
  color: rgb(60 203 251 / 0.85);
}
.hx .text-primary-400\/90 {
  color: rgb(60 203 251 / 0.9);
}
.hx .text-primary-400\/95 {
  color: rgb(60 203 251 / 0.95);
}
.hx .text-primary-50 {
  --tw-text-opacity: 1;
  color: rgb(250 253 255 / var(--tw-text-opacity, 1));
}
.hx .text-primary-50\/0 {
  color: rgb(250 253 255 / 0);
}
.hx .text-primary-50\/10 {
  color: rgb(250 253 255 / 0.1);
}
.hx .text-primary-50\/100 {
  color: rgb(250 253 255 / 1);
}
.hx .text-primary-50\/15 {
  color: rgb(250 253 255 / 0.15);
}
.hx .text-primary-50\/20 {
  color: rgb(250 253 255 / 0.2);
}
.hx .text-primary-50\/25 {
  color: rgb(250 253 255 / 0.25);
}
.hx .text-primary-50\/30 {
  color: rgb(250 253 255 / 0.3);
}
.hx .text-primary-50\/35 {
  color: rgb(250 253 255 / 0.35);
}
.hx .text-primary-50\/40 {
  color: rgb(250 253 255 / 0.4);
}
.hx .text-primary-50\/45 {
  color: rgb(250 253 255 / 0.45);
}
.hx .text-primary-50\/5 {
  color: rgb(250 253 255 / 0.05);
}
.hx .text-primary-50\/50 {
  color: rgb(250 253 255 / 0.5);
}
.hx .text-primary-50\/55 {
  color: rgb(250 253 255 / 0.55);
}
.hx .text-primary-50\/60 {
  color: rgb(250 253 255 / 0.6);
}
.hx .text-primary-50\/65 {
  color: rgb(250 253 255 / 0.65);
}
.hx .text-primary-50\/70 {
  color: rgb(250 253 255 / 0.7);
}
.hx .text-primary-50\/75 {
  color: rgb(250 253 255 / 0.75);
}
.hx .text-primary-50\/80 {
  color: rgb(250 253 255 / 0.8);
}
.hx .text-primary-50\/85 {
  color: rgb(250 253 255 / 0.85);
}
.hx .text-primary-50\/90 {
  color: rgb(250 253 255 / 0.9);
}
.hx .text-primary-50\/95 {
  color: rgb(250 253 255 / 0.95);
}
.hx .text-primary-500 {
  --tw-text-opacity: 1;
  color: rgb(0 172 240 / var(--tw-text-opacity, 1));
}
.hx .text-primary-500\/0 {
  color: rgb(0 172 240 / 0);
}
.hx .text-primary-500\/10 {
  color: rgb(0 172 240 / 0.1);
}
.hx .text-primary-500\/100 {
  color: rgb(0 172 240 / 1);
}
.hx .text-primary-500\/15 {
  color: rgb(0 172 240 / 0.15);
}
.hx .text-primary-500\/20 {
  color: rgb(0 172 240 / 0.2);
}
.hx .text-primary-500\/25 {
  color: rgb(0 172 240 / 0.25);
}
.hx .text-primary-500\/30 {
  color: rgb(0 172 240 / 0.3);
}
.hx .text-primary-500\/35 {
  color: rgb(0 172 240 / 0.35);
}
.hx .text-primary-500\/40 {
  color: rgb(0 172 240 / 0.4);
}
.hx .text-primary-500\/45 {
  color: rgb(0 172 240 / 0.45);
}
.hx .text-primary-500\/5 {
  color: rgb(0 172 240 / 0.05);
}
.hx .text-primary-500\/50 {
  color: rgb(0 172 240 / 0.5);
}
.hx .text-primary-500\/55 {
  color: rgb(0 172 240 / 0.55);
}
.hx .text-primary-500\/60 {
  color: rgb(0 172 240 / 0.6);
}
.hx .text-primary-500\/65 {
  color: rgb(0 172 240 / 0.65);
}
.hx .text-primary-500\/70 {
  color: rgb(0 172 240 / 0.7);
}
.hx .text-primary-500\/75 {
  color: rgb(0 172 240 / 0.75);
}
.hx .text-primary-500\/80 {
  color: rgb(0 172 240 / 0.8);
}
.hx .text-primary-500\/85 {
  color: rgb(0 172 240 / 0.85);
}
.hx .text-primary-500\/90 {
  color: rgb(0 172 240 / 0.9);
}
.hx .text-primary-500\/95 {
  color: rgb(0 172 240 / 0.95);
}
.hx .text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(0 147 223 / var(--tw-text-opacity, 1));
}
.hx .text-primary-600\/0 {
  color: rgb(0 147 223 / 0);
}
.hx .text-primary-600\/10 {
  color: rgb(0 147 223 / 0.1);
}
.hx .text-primary-600\/100 {
  color: rgb(0 147 223 / 1);
}
.hx .text-primary-600\/15 {
  color: rgb(0 147 223 / 0.15);
}
.hx .text-primary-600\/20 {
  color: rgb(0 147 223 / 0.2);
}
.hx .text-primary-600\/25 {
  color: rgb(0 147 223 / 0.25);
}
.hx .text-primary-600\/30 {
  color: rgb(0 147 223 / 0.3);
}
.hx .text-primary-600\/35 {
  color: rgb(0 147 223 / 0.35);
}
.hx .text-primary-600\/40 {
  color: rgb(0 147 223 / 0.4);
}
.hx .text-primary-600\/45 {
  color: rgb(0 147 223 / 0.45);
}
.hx .text-primary-600\/5 {
  color: rgb(0 147 223 / 0.05);
}
.hx .text-primary-600\/50 {
  color: rgb(0 147 223 / 0.5);
}
.hx .text-primary-600\/55 {
  color: rgb(0 147 223 / 0.55);
}
.hx .text-primary-600\/60 {
  color: rgb(0 147 223 / 0.6);
}
.hx .text-primary-600\/65 {
  color: rgb(0 147 223 / 0.65);
}
.hx .text-primary-600\/70 {
  color: rgb(0 147 223 / 0.7);
}
.hx .text-primary-600\/75 {
  color: rgb(0 147 223 / 0.75);
}
.hx .text-primary-600\/80 {
  color: rgb(0 147 223 / 0.8);
}
.hx .text-primary-600\/85 {
  color: rgb(0 147 223 / 0.85);
}
.hx .text-primary-600\/90 {
  color: rgb(0 147 223 / 0.9);
}
.hx .text-primary-600\/95 {
  color: rgb(0 147 223 / 0.95);
}
.hx .text-primary-700 {
  --tw-text-opacity: 1;
  color: rgb(0 120 181 / var(--tw-text-opacity, 1));
}
.hx .text-primary-700\/0 {
  color: rgb(0 120 181 / 0);
}
.hx .text-primary-700\/10 {
  color: rgb(0 120 181 / 0.1);
}
.hx .text-primary-700\/100 {
  color: rgb(0 120 181 / 1);
}
.hx .text-primary-700\/15 {
  color: rgb(0 120 181 / 0.15);
}
.hx .text-primary-700\/20 {
  color: rgb(0 120 181 / 0.2);
}
.hx .text-primary-700\/25 {
  color: rgb(0 120 181 / 0.25);
}
.hx .text-primary-700\/30 {
  color: rgb(0 120 181 / 0.3);
}
.hx .text-primary-700\/35 {
  color: rgb(0 120 181 / 0.35);
}
.hx .text-primary-700\/40 {
  color: rgb(0 120 181 / 0.4);
}
.hx .text-primary-700\/45 {
  color: rgb(0 120 181 / 0.45);
}
.hx .text-primary-700\/5 {
  color: rgb(0 120 181 / 0.05);
}
.hx .text-primary-700\/50 {
  color: rgb(0 120 181 / 0.5);
}
.hx .text-primary-700\/55 {
  color: rgb(0 120 181 / 0.55);
}
.hx .text-primary-700\/60 {
  color: rgb(0 120 181 / 0.6);
}
.hx .text-primary-700\/65 {
  color: rgb(0 120 181 / 0.65);
}
.hx .text-primary-700\/70 {
  color: rgb(0 120 181 / 0.7);
}
.hx .text-primary-700\/75 {
  color: rgb(0 120 181 / 0.75);
}
.hx .text-primary-700\/80 {
  color: rgb(0 120 181 / 0.8);
}
.hx .text-primary-700\/85 {
  color: rgb(0 120 181 / 0.85);
}
.hx .text-primary-700\/90 {
  color: rgb(0 120 181 / 0.9);
}
.hx .text-primary-700\/95 {
  color: rgb(0 120 181 / 0.95);
}
.hx .text-primary-800 {
  --tw-text-opacity: 1;
  color: rgb(0 102 150 / var(--tw-text-opacity, 1));
}
.hx .text-primary-800\/0 {
  color: rgb(0 102 150 / 0);
}
.hx .text-primary-800\/10 {
  color: rgb(0 102 150 / 0.1);
}
.hx .text-primary-800\/100 {
  color: rgb(0 102 150 / 1);
}
.hx .text-primary-800\/15 {
  color: rgb(0 102 150 / 0.15);
}
.hx .text-primary-800\/20 {
  color: rgb(0 102 150 / 0.2);
}
.hx .text-primary-800\/25 {
  color: rgb(0 102 150 / 0.25);
}
.hx .text-primary-800\/30 {
  color: rgb(0 102 150 / 0.3);
}
.hx .text-primary-800\/35 {
  color: rgb(0 102 150 / 0.35);
}
.hx .text-primary-800\/40 {
  color: rgb(0 102 150 / 0.4);
}
.hx .text-primary-800\/45 {
  color: rgb(0 102 150 / 0.45);
}
.hx .text-primary-800\/5 {
  color: rgb(0 102 150 / 0.05);
}
.hx .text-primary-800\/50 {
  color: rgb(0 102 150 / 0.5);
}
.hx .text-primary-800\/55 {
  color: rgb(0 102 150 / 0.55);
}
.hx .text-primary-800\/60 {
  color: rgb(0 102 150 / 0.6);
}
.hx .text-primary-800\/65 {
  color: rgb(0 102 150 / 0.65);
}
.hx .text-primary-800\/70 {
  color: rgb(0 102 150 / 0.7);
}
.hx .text-primary-800\/75 {
  color: rgb(0 102 150 / 0.75);
}
.hx .text-primary-800\/80 {
  color: rgb(0 102 150 / 0.8);
}
.hx .text-primary-800\/85 {
  color: rgb(0 102 150 / 0.85);
}
.hx .text-primary-800\/90 {
  color: rgb(0 102 150 / 0.9);
}
.hx .text-primary-800\/95 {
  color: rgb(0 102 150 / 0.95);
}
.hx .text-primary-900 {
  --tw-text-opacity: 1;
  color: rgb(4 84 123 / var(--tw-text-opacity, 1));
}
.hx .text-primary-900\/0 {
  color: rgb(4 84 123 / 0);
}
.hx .text-primary-900\/10 {
  color: rgb(4 84 123 / 0.1);
}
.hx .text-primary-900\/100 {
  color: rgb(4 84 123 / 1);
}
.hx .text-primary-900\/15 {
  color: rgb(4 84 123 / 0.15);
}
.hx .text-primary-900\/20 {
  color: rgb(4 84 123 / 0.2);
}
.hx .text-primary-900\/25 {
  color: rgb(4 84 123 / 0.25);
}
.hx .text-primary-900\/30 {
  color: rgb(4 84 123 / 0.3);
}
.hx .text-primary-900\/35 {
  color: rgb(4 84 123 / 0.35);
}
.hx .text-primary-900\/40 {
  color: rgb(4 84 123 / 0.4);
}
.hx .text-primary-900\/45 {
  color: rgb(4 84 123 / 0.45);
}
.hx .text-primary-900\/5 {
  color: rgb(4 84 123 / 0.05);
}
.hx .text-primary-900\/50 {
  color: rgb(4 84 123 / 0.5);
}
.hx .text-primary-900\/55 {
  color: rgb(4 84 123 / 0.55);
}
.hx .text-primary-900\/60 {
  color: rgb(4 84 123 / 0.6);
}
.hx .text-primary-900\/65 {
  color: rgb(4 84 123 / 0.65);
}
.hx .text-primary-900\/70 {
  color: rgb(4 84 123 / 0.7);
}
.hx .text-primary-900\/75 {
  color: rgb(4 84 123 / 0.75);
}
.hx .text-primary-900\/80 {
  color: rgb(4 84 123 / 0.8);
}
.hx .text-primary-900\/85 {
  color: rgb(4 84 123 / 0.85);
}
.hx .text-primary-900\/90 {
  color: rgb(4 84 123 / 0.9);
}
.hx .text-primary-900\/95 {
  color: rgb(4 84 123 / 0.95);
}
.hx .text-primary-950 {
  --tw-text-opacity: 1;
  color: rgb(3 55 84 / var(--tw-text-opacity, 1));
}
.hx .text-primary-950\/0 {
  color: rgb(3 55 84 / 0);
}
.hx .text-primary-950\/10 {
  color: rgb(3 55 84 / 0.1);
}
.hx .text-primary-950\/100 {
  color: rgb(3 55 84 / 1);
}
.hx .text-primary-950\/15 {
  color: rgb(3 55 84 / 0.15);
}
.hx .text-primary-950\/20 {
  color: rgb(3 55 84 / 0.2);
}
.hx .text-primary-950\/25 {
  color: rgb(3 55 84 / 0.25);
}
.hx .text-primary-950\/30 {
  color: rgb(3 55 84 / 0.3);
}
.hx .text-primary-950\/35 {
  color: rgb(3 55 84 / 0.35);
}
.hx .text-primary-950\/40 {
  color: rgb(3 55 84 / 0.4);
}
.hx .text-primary-950\/45 {
  color: rgb(3 55 84 / 0.45);
}
.hx .text-primary-950\/5 {
  color: rgb(3 55 84 / 0.05);
}
.hx .text-primary-950\/50 {
  color: rgb(3 55 84 / 0.5);
}
.hx .text-primary-950\/55 {
  color: rgb(3 55 84 / 0.55);
}
.hx .text-primary-950\/60 {
  color: rgb(3 55 84 / 0.6);
}
.hx .text-primary-950\/65 {
  color: rgb(3 55 84 / 0.65);
}
.hx .text-primary-950\/70 {
  color: rgb(3 55 84 / 0.7);
}
.hx .text-primary-950\/75 {
  color: rgb(3 55 84 / 0.75);
}
.hx .text-primary-950\/80 {
  color: rgb(3 55 84 / 0.8);
}
.hx .text-primary-950\/85 {
  color: rgb(3 55 84 / 0.85);
}
.hx .text-primary-950\/90 {
  color: rgb(3 55 84 / 0.9);
}
.hx .text-primary-950\/95 {
  color: rgb(3 55 84 / 0.95);
}
.hx .text-primary-content {
  --tw-text-opacity: 1;
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity, 1)));
}
.hx .text-primary-content\/0 {
  color: var(--fallback-pc,oklch(var(--pc)/0));
}
.hx .text-primary-content\/10 {
  color: var(--fallback-pc,oklch(var(--pc)/0.1));
}
.hx .text-primary-content\/100 {
  color: var(--fallback-pc,oklch(var(--pc)/1));
}
.hx .text-primary-content\/15 {
  color: var(--fallback-pc,oklch(var(--pc)/0.15));
}
.hx .text-primary-content\/20 {
  color: var(--fallback-pc,oklch(var(--pc)/0.2));
}
.hx .text-primary-content\/25 {
  color: var(--fallback-pc,oklch(var(--pc)/0.25));
}
.hx .text-primary-content\/30 {
  color: var(--fallback-pc,oklch(var(--pc)/0.3));
}
.hx .text-primary-content\/35 {
  color: var(--fallback-pc,oklch(var(--pc)/0.35));
}
.hx .text-primary-content\/40 {
  color: var(--fallback-pc,oklch(var(--pc)/0.4));
}
.hx .text-primary-content\/45 {
  color: var(--fallback-pc,oklch(var(--pc)/0.45));
}
.hx .text-primary-content\/5 {
  color: var(--fallback-pc,oklch(var(--pc)/0.05));
}
.hx .text-primary-content\/50 {
  color: var(--fallback-pc,oklch(var(--pc)/0.5));
}
.hx .text-primary-content\/55 {
  color: var(--fallback-pc,oklch(var(--pc)/0.55));
}
.hx .text-primary-content\/60 {
  color: var(--fallback-pc,oklch(var(--pc)/0.6));
}
.hx .text-primary-content\/65 {
  color: var(--fallback-pc,oklch(var(--pc)/0.65));
}
.hx .text-primary-content\/70 {
  color: var(--fallback-pc,oklch(var(--pc)/0.7));
}
.hx .text-primary-content\/75 {
  color: var(--fallback-pc,oklch(var(--pc)/0.75));
}
.hx .text-primary-content\/80 {
  color: var(--fallback-pc,oklch(var(--pc)/0.8));
}
.hx .text-primary-content\/85 {
  color: var(--fallback-pc,oklch(var(--pc)/0.85));
}
.hx .text-primary-content\/90 {
  color: var(--fallback-pc,oklch(var(--pc)/0.9));
}
.hx .text-primary-content\/95 {
  color: var(--fallback-pc,oklch(var(--pc)/0.95));
}
.hx .text-primary\/0 {
  color: rgb(0 172 240 / 0);
}
.hx .text-primary\/10 {
  color: rgb(0 172 240 / 0.1);
}
.hx .text-primary\/100 {
  color: rgb(0 172 240 / 1);
}
.hx .text-primary\/15 {
  color: rgb(0 172 240 / 0.15);
}
.hx .text-primary\/20 {
  color: rgb(0 172 240 / 0.2);
}
.hx .text-primary\/25 {
  color: rgb(0 172 240 / 0.25);
}
.hx .text-primary\/30 {
  color: rgb(0 172 240 / 0.3);
}
.hx .text-primary\/35 {
  color: rgb(0 172 240 / 0.35);
}
.hx .text-primary\/40 {
  color: rgb(0 172 240 / 0.4);
}
.hx .text-primary\/45 {
  color: rgb(0 172 240 / 0.45);
}
.hx .text-primary\/5 {
  color: rgb(0 172 240 / 0.05);
}
.hx .text-primary\/50 {
  color: rgb(0 172 240 / 0.5);
}
.hx .text-primary\/55 {
  color: rgb(0 172 240 / 0.55);
}
.hx .text-primary\/60 {
  color: rgb(0 172 240 / 0.6);
}
.hx .text-primary\/65 {
  color: rgb(0 172 240 / 0.65);
}
.hx .text-primary\/70 {
  color: rgb(0 172 240 / 0.7);
}
.hx .text-primary\/75 {
  color: rgb(0 172 240 / 0.75);
}
.hx .text-primary\/80 {
  color: rgb(0 172 240 / 0.8);
}
.hx .text-primary\/85 {
  color: rgb(0 172 240 / 0.85);
}
.hx .text-primary\/90 {
  color: rgb(0 172 240 / 0.9);
}
.hx .text-primary\/95 {
  color: rgb(0 172 240 / 0.95);
}
.hx .text-purple-100 {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.hx .text-purple-100\/0 {
  color: rgb(243 232 255 / 0);
}
.hx .text-purple-100\/10 {
  color: rgb(243 232 255 / 0.1);
}
.hx .text-purple-100\/100 {
  color: rgb(243 232 255 / 1);
}
.hx .text-purple-100\/15 {
  color: rgb(243 232 255 / 0.15);
}
.hx .text-purple-100\/20 {
  color: rgb(243 232 255 / 0.2);
}
.hx .text-purple-100\/25 {
  color: rgb(243 232 255 / 0.25);
}
.hx .text-purple-100\/30 {
  color: rgb(243 232 255 / 0.3);
}
.hx .text-purple-100\/35 {
  color: rgb(243 232 255 / 0.35);
}
.hx .text-purple-100\/40 {
  color: rgb(243 232 255 / 0.4);
}
.hx .text-purple-100\/45 {
  color: rgb(243 232 255 / 0.45);
}
.hx .text-purple-100\/5 {
  color: rgb(243 232 255 / 0.05);
}
.hx .text-purple-100\/50 {
  color: rgb(243 232 255 / 0.5);
}
.hx .text-purple-100\/55 {
  color: rgb(243 232 255 / 0.55);
}
.hx .text-purple-100\/60 {
  color: rgb(243 232 255 / 0.6);
}
.hx .text-purple-100\/65 {
  color: rgb(243 232 255 / 0.65);
}
.hx .text-purple-100\/70 {
  color: rgb(243 232 255 / 0.7);
}
.hx .text-purple-100\/75 {
  color: rgb(243 232 255 / 0.75);
}
.hx .text-purple-100\/80 {
  color: rgb(243 232 255 / 0.8);
}
.hx .text-purple-100\/85 {
  color: rgb(243 232 255 / 0.85);
}
.hx .text-purple-100\/90 {
  color: rgb(243 232 255 / 0.9);
}
.hx .text-purple-100\/95 {
  color: rgb(243 232 255 / 0.95);
}
.hx .text-purple-200 {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.hx .text-purple-200\/0 {
  color: rgb(233 213 255 / 0);
}
.hx .text-purple-200\/10 {
  color: rgb(233 213 255 / 0.1);
}
.hx .text-purple-200\/100 {
  color: rgb(233 213 255 / 1);
}
.hx .text-purple-200\/15 {
  color: rgb(233 213 255 / 0.15);
}
.hx .text-purple-200\/20 {
  color: rgb(233 213 255 / 0.2);
}
.hx .text-purple-200\/25 {
  color: rgb(233 213 255 / 0.25);
}
.hx .text-purple-200\/30 {
  color: rgb(233 213 255 / 0.3);
}
.hx .text-purple-200\/35 {
  color: rgb(233 213 255 / 0.35);
}
.hx .text-purple-200\/40 {
  color: rgb(233 213 255 / 0.4);
}
.hx .text-purple-200\/45 {
  color: rgb(233 213 255 / 0.45);
}
.hx .text-purple-200\/5 {
  color: rgb(233 213 255 / 0.05);
}
.hx .text-purple-200\/50 {
  color: rgb(233 213 255 / 0.5);
}
.hx .text-purple-200\/55 {
  color: rgb(233 213 255 / 0.55);
}
.hx .text-purple-200\/60 {
  color: rgb(233 213 255 / 0.6);
}
.hx .text-purple-200\/65 {
  color: rgb(233 213 255 / 0.65);
}
.hx .text-purple-200\/70 {
  color: rgb(233 213 255 / 0.7);
}
.hx .text-purple-200\/75 {
  color: rgb(233 213 255 / 0.75);
}
.hx .text-purple-200\/80 {
  color: rgb(233 213 255 / 0.8);
}
.hx .text-purple-200\/85 {
  color: rgb(233 213 255 / 0.85);
}
.hx .text-purple-200\/90 {
  color: rgb(233 213 255 / 0.9);
}
.hx .text-purple-200\/95 {
  color: rgb(233 213 255 / 0.95);
}
.hx .text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.hx .text-purple-300\/0 {
  color: rgb(216 180 254 / 0);
}
.hx .text-purple-300\/10 {
  color: rgb(216 180 254 / 0.1);
}
.hx .text-purple-300\/100 {
  color: rgb(216 180 254 / 1);
}
.hx .text-purple-300\/15 {
  color: rgb(216 180 254 / 0.15);
}
.hx .text-purple-300\/20 {
  color: rgb(216 180 254 / 0.2);
}
.hx .text-purple-300\/25 {
  color: rgb(216 180 254 / 0.25);
}
.hx .text-purple-300\/30 {
  color: rgb(216 180 254 / 0.3);
}
.hx .text-purple-300\/35 {
  color: rgb(216 180 254 / 0.35);
}
.hx .text-purple-300\/40 {
  color: rgb(216 180 254 / 0.4);
}
.hx .text-purple-300\/45 {
  color: rgb(216 180 254 / 0.45);
}
.hx .text-purple-300\/5 {
  color: rgb(216 180 254 / 0.05);
}
.hx .text-purple-300\/50 {
  color: rgb(216 180 254 / 0.5);
}
.hx .text-purple-300\/55 {
  color: rgb(216 180 254 / 0.55);
}
.hx .text-purple-300\/60 {
  color: rgb(216 180 254 / 0.6);
}
.hx .text-purple-300\/65 {
  color: rgb(216 180 254 / 0.65);
}
.hx .text-purple-300\/70 {
  color: rgb(216 180 254 / 0.7);
}
.hx .text-purple-300\/75 {
  color: rgb(216 180 254 / 0.75);
}
.hx .text-purple-300\/80 {
  color: rgb(216 180 254 / 0.8);
}
.hx .text-purple-300\/85 {
  color: rgb(216 180 254 / 0.85);
}
.hx .text-purple-300\/90 {
  color: rgb(216 180 254 / 0.9);
}
.hx .text-purple-300\/95 {
  color: rgb(216 180 254 / 0.95);
}
.hx .text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.hx .text-purple-400\/0 {
  color: rgb(192 132 252 / 0);
}
.hx .text-purple-400\/10 {
  color: rgb(192 132 252 / 0.1);
}
.hx .text-purple-400\/100 {
  color: rgb(192 132 252 / 1);
}
.hx .text-purple-400\/15 {
  color: rgb(192 132 252 / 0.15);
}
.hx .text-purple-400\/20 {
  color: rgb(192 132 252 / 0.2);
}
.hx .text-purple-400\/25 {
  color: rgb(192 132 252 / 0.25);
}
.hx .text-purple-400\/30 {
  color: rgb(192 132 252 / 0.3);
}
.hx .text-purple-400\/35 {
  color: rgb(192 132 252 / 0.35);
}
.hx .text-purple-400\/40 {
  color: rgb(192 132 252 / 0.4);
}
.hx .text-purple-400\/45 {
  color: rgb(192 132 252 / 0.45);
}
.hx .text-purple-400\/5 {
  color: rgb(192 132 252 / 0.05);
}
.hx .text-purple-400\/50 {
  color: rgb(192 132 252 / 0.5);
}
.hx .text-purple-400\/55 {
  color: rgb(192 132 252 / 0.55);
}
.hx .text-purple-400\/60 {
  color: rgb(192 132 252 / 0.6);
}
.hx .text-purple-400\/65 {
  color: rgb(192 132 252 / 0.65);
}
.hx .text-purple-400\/70 {
  color: rgb(192 132 252 / 0.7);
}
.hx .text-purple-400\/75 {
  color: rgb(192 132 252 / 0.75);
}
.hx .text-purple-400\/80 {
  color: rgb(192 132 252 / 0.8);
}
.hx .text-purple-400\/85 {
  color: rgb(192 132 252 / 0.85);
}
.hx .text-purple-400\/90 {
  color: rgb(192 132 252 / 0.9);
}
.hx .text-purple-400\/95 {
  color: rgb(192 132 252 / 0.95);
}
.hx .text-purple-50 {
  --tw-text-opacity: 1;
  color: rgb(250 245 255 / var(--tw-text-opacity, 1));
}
.hx .text-purple-50\/0 {
  color: rgb(250 245 255 / 0);
}
.hx .text-purple-50\/10 {
  color: rgb(250 245 255 / 0.1);
}
.hx .text-purple-50\/100 {
  color: rgb(250 245 255 / 1);
}
.hx .text-purple-50\/15 {
  color: rgb(250 245 255 / 0.15);
}
.hx .text-purple-50\/20 {
  color: rgb(250 245 255 / 0.2);
}
.hx .text-purple-50\/25 {
  color: rgb(250 245 255 / 0.25);
}
.hx .text-purple-50\/30 {
  color: rgb(250 245 255 / 0.3);
}
.hx .text-purple-50\/35 {
  color: rgb(250 245 255 / 0.35);
}
.hx .text-purple-50\/40 {
  color: rgb(250 245 255 / 0.4);
}
.hx .text-purple-50\/45 {
  color: rgb(250 245 255 / 0.45);
}
.hx .text-purple-50\/5 {
  color: rgb(250 245 255 / 0.05);
}
.hx .text-purple-50\/50 {
  color: rgb(250 245 255 / 0.5);
}
.hx .text-purple-50\/55 {
  color: rgb(250 245 255 / 0.55);
}
.hx .text-purple-50\/60 {
  color: rgb(250 245 255 / 0.6);
}
.hx .text-purple-50\/65 {
  color: rgb(250 245 255 / 0.65);
}
.hx .text-purple-50\/70 {
  color: rgb(250 245 255 / 0.7);
}
.hx .text-purple-50\/75 {
  color: rgb(250 245 255 / 0.75);
}
.hx .text-purple-50\/80 {
  color: rgb(250 245 255 / 0.8);
}
.hx .text-purple-50\/85 {
  color: rgb(250 245 255 / 0.85);
}
.hx .text-purple-50\/90 {
  color: rgb(250 245 255 / 0.9);
}
.hx .text-purple-50\/95 {
  color: rgb(250 245 255 / 0.95);
}
.hx .text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.hx .text-purple-500\/0 {
  color: rgb(168 85 247 / 0);
}
.hx .text-purple-500\/10 {
  color: rgb(168 85 247 / 0.1);
}
.hx .text-purple-500\/100 {
  color: rgb(168 85 247 / 1);
}
.hx .text-purple-500\/15 {
  color: rgb(168 85 247 / 0.15);
}
.hx .text-purple-500\/20 {
  color: rgb(168 85 247 / 0.2);
}
.hx .text-purple-500\/25 {
  color: rgb(168 85 247 / 0.25);
}
.hx .text-purple-500\/30 {
  color: rgb(168 85 247 / 0.3);
}
.hx .text-purple-500\/35 {
  color: rgb(168 85 247 / 0.35);
}
.hx .text-purple-500\/40 {
  color: rgb(168 85 247 / 0.4);
}
.hx .text-purple-500\/45 {
  color: rgb(168 85 247 / 0.45);
}
.hx .text-purple-500\/5 {
  color: rgb(168 85 247 / 0.05);
}
.hx .text-purple-500\/50 {
  color: rgb(168 85 247 / 0.5);
}
.hx .text-purple-500\/55 {
  color: rgb(168 85 247 / 0.55);
}
.hx .text-purple-500\/60 {
  color: rgb(168 85 247 / 0.6);
}
.hx .text-purple-500\/65 {
  color: rgb(168 85 247 / 0.65);
}
.hx .text-purple-500\/70 {
  color: rgb(168 85 247 / 0.7);
}
.hx .text-purple-500\/75 {
  color: rgb(168 85 247 / 0.75);
}
.hx .text-purple-500\/80 {
  color: rgb(168 85 247 / 0.8);
}
.hx .text-purple-500\/85 {
  color: rgb(168 85 247 / 0.85);
}
.hx .text-purple-500\/90 {
  color: rgb(168 85 247 / 0.9);
}
.hx .text-purple-500\/95 {
  color: rgb(168 85 247 / 0.95);
}
.hx .text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.hx .text-purple-600\/0 {
  color: rgb(147 51 234 / 0);
}
.hx .text-purple-600\/10 {
  color: rgb(147 51 234 / 0.1);
}
.hx .text-purple-600\/100 {
  color: rgb(147 51 234 / 1);
}
.hx .text-purple-600\/15 {
  color: rgb(147 51 234 / 0.15);
}
.hx .text-purple-600\/20 {
  color: rgb(147 51 234 / 0.2);
}
.hx .text-purple-600\/25 {
  color: rgb(147 51 234 / 0.25);
}
.hx .text-purple-600\/30 {
  color: rgb(147 51 234 / 0.3);
}
.hx .text-purple-600\/35 {
  color: rgb(147 51 234 / 0.35);
}
.hx .text-purple-600\/40 {
  color: rgb(147 51 234 / 0.4);
}
.hx .text-purple-600\/45 {
  color: rgb(147 51 234 / 0.45);
}
.hx .text-purple-600\/5 {
  color: rgb(147 51 234 / 0.05);
}
.hx .text-purple-600\/50 {
  color: rgb(147 51 234 / 0.5);
}
.hx .text-purple-600\/55 {
  color: rgb(147 51 234 / 0.55);
}
.hx .text-purple-600\/60 {
  color: rgb(147 51 234 / 0.6);
}
.hx .text-purple-600\/65 {
  color: rgb(147 51 234 / 0.65);
}
.hx .text-purple-600\/70 {
  color: rgb(147 51 234 / 0.7);
}
.hx .text-purple-600\/75 {
  color: rgb(147 51 234 / 0.75);
}
.hx .text-purple-600\/80 {
  color: rgb(147 51 234 / 0.8);
}
.hx .text-purple-600\/85 {
  color: rgb(147 51 234 / 0.85);
}
.hx .text-purple-600\/90 {
  color: rgb(147 51 234 / 0.9);
}
.hx .text-purple-600\/95 {
  color: rgb(147 51 234 / 0.95);
}
.hx .text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.hx .text-purple-700\/0 {
  color: rgb(126 34 206 / 0);
}
.hx .text-purple-700\/10 {
  color: rgb(126 34 206 / 0.1);
}
.hx .text-purple-700\/100 {
  color: rgb(126 34 206 / 1);
}
.hx .text-purple-700\/15 {
  color: rgb(126 34 206 / 0.15);
}
.hx .text-purple-700\/20 {
  color: rgb(126 34 206 / 0.2);
}
.hx .text-purple-700\/25 {
  color: rgb(126 34 206 / 0.25);
}
.hx .text-purple-700\/30 {
  color: rgb(126 34 206 / 0.3);
}
.hx .text-purple-700\/35 {
  color: rgb(126 34 206 / 0.35);
}
.hx .text-purple-700\/40 {
  color: rgb(126 34 206 / 0.4);
}
.hx .text-purple-700\/45 {
  color: rgb(126 34 206 / 0.45);
}
.hx .text-purple-700\/5 {
  color: rgb(126 34 206 / 0.05);
}
.hx .text-purple-700\/50 {
  color: rgb(126 34 206 / 0.5);
}
.hx .text-purple-700\/55 {
  color: rgb(126 34 206 / 0.55);
}
.hx .text-purple-700\/60 {
  color: rgb(126 34 206 / 0.6);
}
.hx .text-purple-700\/65 {
  color: rgb(126 34 206 / 0.65);
}
.hx .text-purple-700\/70 {
  color: rgb(126 34 206 / 0.7);
}
.hx .text-purple-700\/75 {
  color: rgb(126 34 206 / 0.75);
}
.hx .text-purple-700\/80 {
  color: rgb(126 34 206 / 0.8);
}
.hx .text-purple-700\/85 {
  color: rgb(126 34 206 / 0.85);
}
.hx .text-purple-700\/90 {
  color: rgb(126 34 206 / 0.9);
}
.hx .text-purple-700\/95 {
  color: rgb(126 34 206 / 0.95);
}
.hx .text-purple-800 {
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.hx .text-purple-800\/0 {
  color: rgb(107 33 168 / 0);
}
.hx .text-purple-800\/10 {
  color: rgb(107 33 168 / 0.1);
}
.hx .text-purple-800\/100 {
  color: rgb(107 33 168 / 1);
}
.hx .text-purple-800\/15 {
  color: rgb(107 33 168 / 0.15);
}
.hx .text-purple-800\/20 {
  color: rgb(107 33 168 / 0.2);
}
.hx .text-purple-800\/25 {
  color: rgb(107 33 168 / 0.25);
}
.hx .text-purple-800\/30 {
  color: rgb(107 33 168 / 0.3);
}
.hx .text-purple-800\/35 {
  color: rgb(107 33 168 / 0.35);
}
.hx .text-purple-800\/40 {
  color: rgb(107 33 168 / 0.4);
}
.hx .text-purple-800\/45 {
  color: rgb(107 33 168 / 0.45);
}
.hx .text-purple-800\/5 {
  color: rgb(107 33 168 / 0.05);
}
.hx .text-purple-800\/50 {
  color: rgb(107 33 168 / 0.5);
}
.hx .text-purple-800\/55 {
  color: rgb(107 33 168 / 0.55);
}
.hx .text-purple-800\/60 {
  color: rgb(107 33 168 / 0.6);
}
.hx .text-purple-800\/65 {
  color: rgb(107 33 168 / 0.65);
}
.hx .text-purple-800\/70 {
  color: rgb(107 33 168 / 0.7);
}
.hx .text-purple-800\/75 {
  color: rgb(107 33 168 / 0.75);
}
.hx .text-purple-800\/80 {
  color: rgb(107 33 168 / 0.8);
}
.hx .text-purple-800\/85 {
  color: rgb(107 33 168 / 0.85);
}
.hx .text-purple-800\/90 {
  color: rgb(107 33 168 / 0.9);
}
.hx .text-purple-800\/95 {
  color: rgb(107 33 168 / 0.95);
}
.hx .text-purple-900 {
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.hx .text-purple-900\/0 {
  color: rgb(88 28 135 / 0);
}
.hx .text-purple-900\/10 {
  color: rgb(88 28 135 / 0.1);
}
.hx .text-purple-900\/100 {
  color: rgb(88 28 135 / 1);
}
.hx .text-purple-900\/15 {
  color: rgb(88 28 135 / 0.15);
}
.hx .text-purple-900\/20 {
  color: rgb(88 28 135 / 0.2);
}
.hx .text-purple-900\/25 {
  color: rgb(88 28 135 / 0.25);
}
.hx .text-purple-900\/30 {
  color: rgb(88 28 135 / 0.3);
}
.hx .text-purple-900\/35 {
  color: rgb(88 28 135 / 0.35);
}
.hx .text-purple-900\/40 {
  color: rgb(88 28 135 / 0.4);
}
.hx .text-purple-900\/45 {
  color: rgb(88 28 135 / 0.45);
}
.hx .text-purple-900\/5 {
  color: rgb(88 28 135 / 0.05);
}
.hx .text-purple-900\/50 {
  color: rgb(88 28 135 / 0.5);
}
.hx .text-purple-900\/55 {
  color: rgb(88 28 135 / 0.55);
}
.hx .text-purple-900\/60 {
  color: rgb(88 28 135 / 0.6);
}
.hx .text-purple-900\/65 {
  color: rgb(88 28 135 / 0.65);
}
.hx .text-purple-900\/70 {
  color: rgb(88 28 135 / 0.7);
}
.hx .text-purple-900\/75 {
  color: rgb(88 28 135 / 0.75);
}
.hx .text-purple-900\/80 {
  color: rgb(88 28 135 / 0.8);
}
.hx .text-purple-900\/85 {
  color: rgb(88 28 135 / 0.85);
}
.hx .text-purple-900\/90 {
  color: rgb(88 28 135 / 0.9);
}
.hx .text-purple-900\/95 {
  color: rgb(88 28 135 / 0.95);
}
.hx .text-purple-950 {
  --tw-text-opacity: 1;
  color: rgb(59 7 100 / var(--tw-text-opacity, 1));
}
.hx .text-purple-950\/0 {
  color: rgb(59 7 100 / 0);
}
.hx .text-purple-950\/10 {
  color: rgb(59 7 100 / 0.1);
}
.hx .text-purple-950\/100 {
  color: rgb(59 7 100 / 1);
}
.hx .text-purple-950\/15 {
  color: rgb(59 7 100 / 0.15);
}
.hx .text-purple-950\/20 {
  color: rgb(59 7 100 / 0.2);
}
.hx .text-purple-950\/25 {
  color: rgb(59 7 100 / 0.25);
}
.hx .text-purple-950\/30 {
  color: rgb(59 7 100 / 0.3);
}
.hx .text-purple-950\/35 {
  color: rgb(59 7 100 / 0.35);
}
.hx .text-purple-950\/40 {
  color: rgb(59 7 100 / 0.4);
}
.hx .text-purple-950\/45 {
  color: rgb(59 7 100 / 0.45);
}
.hx .text-purple-950\/5 {
  color: rgb(59 7 100 / 0.05);
}
.hx .text-purple-950\/50 {
  color: rgb(59 7 100 / 0.5);
}
.hx .text-purple-950\/55 {
  color: rgb(59 7 100 / 0.55);
}
.hx .text-purple-950\/60 {
  color: rgb(59 7 100 / 0.6);
}
.hx .text-purple-950\/65 {
  color: rgb(59 7 100 / 0.65);
}
.hx .text-purple-950\/70 {
  color: rgb(59 7 100 / 0.7);
}
.hx .text-purple-950\/75 {
  color: rgb(59 7 100 / 0.75);
}
.hx .text-purple-950\/80 {
  color: rgb(59 7 100 / 0.8);
}
.hx .text-purple-950\/85 {
  color: rgb(59 7 100 / 0.85);
}
.hx .text-purple-950\/90 {
  color: rgb(59 7 100 / 0.9);
}
.hx .text-purple-950\/95 {
  color: rgb(59 7 100 / 0.95);
}
.hx .text-red-100 {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}
.hx .text-red-100\/0 {
  color: rgb(254 226 226 / 0);
}
.hx .text-red-100\/10 {
  color: rgb(254 226 226 / 0.1);
}
.hx .text-red-100\/100 {
  color: rgb(254 226 226 / 1);
}
.hx .text-red-100\/15 {
  color: rgb(254 226 226 / 0.15);
}
.hx .text-red-100\/20 {
  color: rgb(254 226 226 / 0.2);
}
.hx .text-red-100\/25 {
  color: rgb(254 226 226 / 0.25);
}
.hx .text-red-100\/30 {
  color: rgb(254 226 226 / 0.3);
}
.hx .text-red-100\/35 {
  color: rgb(254 226 226 / 0.35);
}
.hx .text-red-100\/40 {
  color: rgb(254 226 226 / 0.4);
}
.hx .text-red-100\/45 {
  color: rgb(254 226 226 / 0.45);
}
.hx .text-red-100\/5 {
  color: rgb(254 226 226 / 0.05);
}
.hx .text-red-100\/50 {
  color: rgb(254 226 226 / 0.5);
}
.hx .text-red-100\/55 {
  color: rgb(254 226 226 / 0.55);
}
.hx .text-red-100\/60 {
  color: rgb(254 226 226 / 0.6);
}
.hx .text-red-100\/65 {
  color: rgb(254 226 226 / 0.65);
}
.hx .text-red-100\/70 {
  color: rgb(254 226 226 / 0.7);
}
.hx .text-red-100\/75 {
  color: rgb(254 226 226 / 0.75);
}
.hx .text-red-100\/80 {
  color: rgb(254 226 226 / 0.8);
}
.hx .text-red-100\/85 {
  color: rgb(254 226 226 / 0.85);
}
.hx .text-red-100\/90 {
  color: rgb(254 226 226 / 0.9);
}
.hx .text-red-100\/95 {
  color: rgb(254 226 226 / 0.95);
}
.hx .text-red-200 {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.hx .text-red-200\/0 {
  color: rgb(254 202 202 / 0);
}
.hx .text-red-200\/10 {
  color: rgb(254 202 202 / 0.1);
}
.hx .text-red-200\/100 {
  color: rgb(254 202 202 / 1);
}
.hx .text-red-200\/15 {
  color: rgb(254 202 202 / 0.15);
}
.hx .text-red-200\/20 {
  color: rgb(254 202 202 / 0.2);
}
.hx .text-red-200\/25 {
  color: rgb(254 202 202 / 0.25);
}
.hx .text-red-200\/30 {
  color: rgb(254 202 202 / 0.3);
}
.hx .text-red-200\/35 {
  color: rgb(254 202 202 / 0.35);
}
.hx .text-red-200\/40 {
  color: rgb(254 202 202 / 0.4);
}
.hx .text-red-200\/45 {
  color: rgb(254 202 202 / 0.45);
}
.hx .text-red-200\/5 {
  color: rgb(254 202 202 / 0.05);
}
.hx .text-red-200\/50 {
  color: rgb(254 202 202 / 0.5);
}
.hx .text-red-200\/55 {
  color: rgb(254 202 202 / 0.55);
}
.hx .text-red-200\/60 {
  color: rgb(254 202 202 / 0.6);
}
.hx .text-red-200\/65 {
  color: rgb(254 202 202 / 0.65);
}
.hx .text-red-200\/70 {
  color: rgb(254 202 202 / 0.7);
}
.hx .text-red-200\/75 {
  color: rgb(254 202 202 / 0.75);
}
.hx .text-red-200\/80 {
  color: rgb(254 202 202 / 0.8);
}
.hx .text-red-200\/85 {
  color: rgb(254 202 202 / 0.85);
}
.hx .text-red-200\/90 {
  color: rgb(254 202 202 / 0.9);
}
.hx .text-red-200\/95 {
  color: rgb(254 202 202 / 0.95);
}
.hx .text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.hx .text-red-300\/0 {
  color: rgb(252 165 165 / 0);
}
.hx .text-red-300\/10 {
  color: rgb(252 165 165 / 0.1);
}
.hx .text-red-300\/100 {
  color: rgb(252 165 165 / 1);
}
.hx .text-red-300\/15 {
  color: rgb(252 165 165 / 0.15);
}
.hx .text-red-300\/20 {
  color: rgb(252 165 165 / 0.2);
}
.hx .text-red-300\/25 {
  color: rgb(252 165 165 / 0.25);
}
.hx .text-red-300\/30 {
  color: rgb(252 165 165 / 0.3);
}
.hx .text-red-300\/35 {
  color: rgb(252 165 165 / 0.35);
}
.hx .text-red-300\/40 {
  color: rgb(252 165 165 / 0.4);
}
.hx .text-red-300\/45 {
  color: rgb(252 165 165 / 0.45);
}
.hx .text-red-300\/5 {
  color: rgb(252 165 165 / 0.05);
}
.hx .text-red-300\/50 {
  color: rgb(252 165 165 / 0.5);
}
.hx .text-red-300\/55 {
  color: rgb(252 165 165 / 0.55);
}
.hx .text-red-300\/60 {
  color: rgb(252 165 165 / 0.6);
}
.hx .text-red-300\/65 {
  color: rgb(252 165 165 / 0.65);
}
.hx .text-red-300\/70 {
  color: rgb(252 165 165 / 0.7);
}
.hx .text-red-300\/75 {
  color: rgb(252 165 165 / 0.75);
}
.hx .text-red-300\/80 {
  color: rgb(252 165 165 / 0.8);
}
.hx .text-red-300\/85 {
  color: rgb(252 165 165 / 0.85);
}
.hx .text-red-300\/90 {
  color: rgb(252 165 165 / 0.9);
}
.hx .text-red-300\/95 {
  color: rgb(252 165 165 / 0.95);
}
.hx .text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.hx .text-red-400\/0 {
  color: rgb(248 113 113 / 0);
}
.hx .text-red-400\/10 {
  color: rgb(248 113 113 / 0.1);
}
.hx .text-red-400\/100 {
  color: rgb(248 113 113 / 1);
}
.hx .text-red-400\/15 {
  color: rgb(248 113 113 / 0.15);
}
.hx .text-red-400\/20 {
  color: rgb(248 113 113 / 0.2);
}
.hx .text-red-400\/25 {
  color: rgb(248 113 113 / 0.25);
}
.hx .text-red-400\/30 {
  color: rgb(248 113 113 / 0.3);
}
.hx .text-red-400\/35 {
  color: rgb(248 113 113 / 0.35);
}
.hx .text-red-400\/40 {
  color: rgb(248 113 113 / 0.4);
}
.hx .text-red-400\/45 {
  color: rgb(248 113 113 / 0.45);
}
.hx .text-red-400\/5 {
  color: rgb(248 113 113 / 0.05);
}
.hx .text-red-400\/50 {
  color: rgb(248 113 113 / 0.5);
}
.hx .text-red-400\/55 {
  color: rgb(248 113 113 / 0.55);
}
.hx .text-red-400\/60 {
  color: rgb(248 113 113 / 0.6);
}
.hx .text-red-400\/65 {
  color: rgb(248 113 113 / 0.65);
}
.hx .text-red-400\/70 {
  color: rgb(248 113 113 / 0.7);
}
.hx .text-red-400\/75 {
  color: rgb(248 113 113 / 0.75);
}
.hx .text-red-400\/80 {
  color: rgb(248 113 113 / 0.8);
}
.hx .text-red-400\/85 {
  color: rgb(248 113 113 / 0.85);
}
.hx .text-red-400\/90 {
  color: rgb(248 113 113 / 0.9);
}
.hx .text-red-400\/95 {
  color: rgb(248 113 113 / 0.95);
}
.hx .text-red-50 {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.hx .text-red-50\/0 {
  color: rgb(254 242 242 / 0);
}
.hx .text-red-50\/10 {
  color: rgb(254 242 242 / 0.1);
}
.hx .text-red-50\/100 {
  color: rgb(254 242 242 / 1);
}
.hx .text-red-50\/15 {
  color: rgb(254 242 242 / 0.15);
}
.hx .text-red-50\/20 {
  color: rgb(254 242 242 / 0.2);
}
.hx .text-red-50\/25 {
  color: rgb(254 242 242 / 0.25);
}
.hx .text-red-50\/30 {
  color: rgb(254 242 242 / 0.3);
}
.hx .text-red-50\/35 {
  color: rgb(254 242 242 / 0.35);
}
.hx .text-red-50\/40 {
  color: rgb(254 242 242 / 0.4);
}
.hx .text-red-50\/45 {
  color: rgb(254 242 242 / 0.45);
}
.hx .text-red-50\/5 {
  color: rgb(254 242 242 / 0.05);
}
.hx .text-red-50\/50 {
  color: rgb(254 242 242 / 0.5);
}
.hx .text-red-50\/55 {
  color: rgb(254 242 242 / 0.55);
}
.hx .text-red-50\/60 {
  color: rgb(254 242 242 / 0.6);
}
.hx .text-red-50\/65 {
  color: rgb(254 242 242 / 0.65);
}
.hx .text-red-50\/70 {
  color: rgb(254 242 242 / 0.7);
}
.hx .text-red-50\/75 {
  color: rgb(254 242 242 / 0.75);
}
.hx .text-red-50\/80 {
  color: rgb(254 242 242 / 0.8);
}
.hx .text-red-50\/85 {
  color: rgb(254 242 242 / 0.85);
}
.hx .text-red-50\/90 {
  color: rgb(254 242 242 / 0.9);
}
.hx .text-red-50\/95 {
  color: rgb(254 242 242 / 0.95);
}
.hx .text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.hx .text-red-500\/0 {
  color: rgb(239 68 68 / 0);
}
.hx .text-red-500\/10 {
  color: rgb(239 68 68 / 0.1);
}
.hx .text-red-500\/100 {
  color: rgb(239 68 68 / 1);
}
.hx .text-red-500\/15 {
  color: rgb(239 68 68 / 0.15);
}
.hx .text-red-500\/20 {
  color: rgb(239 68 68 / 0.2);
}
.hx .text-red-500\/25 {
  color: rgb(239 68 68 / 0.25);
}
.hx .text-red-500\/30 {
  color: rgb(239 68 68 / 0.3);
}
.hx .text-red-500\/35 {
  color: rgb(239 68 68 / 0.35);
}
.hx .text-red-500\/40 {
  color: rgb(239 68 68 / 0.4);
}
.hx .text-red-500\/45 {
  color: rgb(239 68 68 / 0.45);
}
.hx .text-red-500\/5 {
  color: rgb(239 68 68 / 0.05);
}
.hx .text-red-500\/50 {
  color: rgb(239 68 68 / 0.5);
}
.hx .text-red-500\/55 {
  color: rgb(239 68 68 / 0.55);
}
.hx .text-red-500\/60 {
  color: rgb(239 68 68 / 0.6);
}
.hx .text-red-500\/65 {
  color: rgb(239 68 68 / 0.65);
}
.hx .text-red-500\/70 {
  color: rgb(239 68 68 / 0.7);
}
.hx .text-red-500\/75 {
  color: rgb(239 68 68 / 0.75);
}
.hx .text-red-500\/80 {
  color: rgb(239 68 68 / 0.8);
}
.hx .text-red-500\/85 {
  color: rgb(239 68 68 / 0.85);
}
.hx .text-red-500\/90 {
  color: rgb(239 68 68 / 0.9);
}
.hx .text-red-500\/95 {
  color: rgb(239 68 68 / 0.95);
}
.hx .text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.hx .text-red-600\/0 {
  color: rgb(220 38 38 / 0);
}
.hx .text-red-600\/10 {
  color: rgb(220 38 38 / 0.1);
}
.hx .text-red-600\/100 {
  color: rgb(220 38 38 / 1);
}
.hx .text-red-600\/15 {
  color: rgb(220 38 38 / 0.15);
}
.hx .text-red-600\/20 {
  color: rgb(220 38 38 / 0.2);
}
.hx .text-red-600\/25 {
  color: rgb(220 38 38 / 0.25);
}
.hx .text-red-600\/30 {
  color: rgb(220 38 38 / 0.3);
}
.hx .text-red-600\/35 {
  color: rgb(220 38 38 / 0.35);
}
.hx .text-red-600\/40 {
  color: rgb(220 38 38 / 0.4);
}
.hx .text-red-600\/45 {
  color: rgb(220 38 38 / 0.45);
}
.hx .text-red-600\/5 {
  color: rgb(220 38 38 / 0.05);
}
.hx .text-red-600\/50 {
  color: rgb(220 38 38 / 0.5);
}
.hx .text-red-600\/55 {
  color: rgb(220 38 38 / 0.55);
}
.hx .text-red-600\/60 {
  color: rgb(220 38 38 / 0.6);
}
.hx .text-red-600\/65 {
  color: rgb(220 38 38 / 0.65);
}
.hx .text-red-600\/70 {
  color: rgb(220 38 38 / 0.7);
}
.hx .text-red-600\/75 {
  color: rgb(220 38 38 / 0.75);
}
.hx .text-red-600\/80 {
  color: rgb(220 38 38 / 0.8);
}
.hx .text-red-600\/85 {
  color: rgb(220 38 38 / 0.85);
}
.hx .text-red-600\/90 {
  color: rgb(220 38 38 / 0.9);
}
.hx .text-red-600\/95 {
  color: rgb(220 38 38 / 0.95);
}
.hx .text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.hx .text-red-700\/0 {
  color: rgb(185 28 28 / 0);
}
.hx .text-red-700\/10 {
  color: rgb(185 28 28 / 0.1);
}
.hx .text-red-700\/100 {
  color: rgb(185 28 28 / 1);
}
.hx .text-red-700\/15 {
  color: rgb(185 28 28 / 0.15);
}
.hx .text-red-700\/20 {
  color: rgb(185 28 28 / 0.2);
}
.hx .text-red-700\/25 {
  color: rgb(185 28 28 / 0.25);
}
.hx .text-red-700\/30 {
  color: rgb(185 28 28 / 0.3);
}
.hx .text-red-700\/35 {
  color: rgb(185 28 28 / 0.35);
}
.hx .text-red-700\/40 {
  color: rgb(185 28 28 / 0.4);
}
.hx .text-red-700\/45 {
  color: rgb(185 28 28 / 0.45);
}
.hx .text-red-700\/5 {
  color: rgb(185 28 28 / 0.05);
}
.hx .text-red-700\/50 {
  color: rgb(185 28 28 / 0.5);
}
.hx .text-red-700\/55 {
  color: rgb(185 28 28 / 0.55);
}
.hx .text-red-700\/60 {
  color: rgb(185 28 28 / 0.6);
}
.hx .text-red-700\/65 {
  color: rgb(185 28 28 / 0.65);
}
.hx .text-red-700\/70 {
  color: rgb(185 28 28 / 0.7);
}
.hx .text-red-700\/75 {
  color: rgb(185 28 28 / 0.75);
}
.hx .text-red-700\/80 {
  color: rgb(185 28 28 / 0.8);
}
.hx .text-red-700\/85 {
  color: rgb(185 28 28 / 0.85);
}
.hx .text-red-700\/90 {
  color: rgb(185 28 28 / 0.9);
}
.hx .text-red-700\/95 {
  color: rgb(185 28 28 / 0.95);
}
.hx .text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.hx .text-red-800\/0 {
  color: rgb(153 27 27 / 0);
}
.hx .text-red-800\/10 {
  color: rgb(153 27 27 / 0.1);
}
.hx .text-red-800\/100 {
  color: rgb(153 27 27 / 1);
}
.hx .text-red-800\/15 {
  color: rgb(153 27 27 / 0.15);
}
.hx .text-red-800\/20 {
  color: rgb(153 27 27 / 0.2);
}
.hx .text-red-800\/25 {
  color: rgb(153 27 27 / 0.25);
}
.hx .text-red-800\/30 {
  color: rgb(153 27 27 / 0.3);
}
.hx .text-red-800\/35 {
  color: rgb(153 27 27 / 0.35);
}
.hx .text-red-800\/40 {
  color: rgb(153 27 27 / 0.4);
}
.hx .text-red-800\/45 {
  color: rgb(153 27 27 / 0.45);
}
.hx .text-red-800\/5 {
  color: rgb(153 27 27 / 0.05);
}
.hx .text-red-800\/50 {
  color: rgb(153 27 27 / 0.5);
}
.hx .text-red-800\/55 {
  color: rgb(153 27 27 / 0.55);
}
.hx .text-red-800\/60 {
  color: rgb(153 27 27 / 0.6);
}
.hx .text-red-800\/65 {
  color: rgb(153 27 27 / 0.65);
}
.hx .text-red-800\/70 {
  color: rgb(153 27 27 / 0.7);
}
.hx .text-red-800\/75 {
  color: rgb(153 27 27 / 0.75);
}
.hx .text-red-800\/80 {
  color: rgb(153 27 27 / 0.8);
}
.hx .text-red-800\/85 {
  color: rgb(153 27 27 / 0.85);
}
.hx .text-red-800\/90 {
  color: rgb(153 27 27 / 0.9);
}
.hx .text-red-800\/95 {
  color: rgb(153 27 27 / 0.95);
}
.hx .text-red-900 {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.hx .text-red-900\/0 {
  color: rgb(127 29 29 / 0);
}
.hx .text-red-900\/10 {
  color: rgb(127 29 29 / 0.1);
}
.hx .text-red-900\/100 {
  color: rgb(127 29 29 / 1);
}
.hx .text-red-900\/15 {
  color: rgb(127 29 29 / 0.15);
}
.hx .text-red-900\/20 {
  color: rgb(127 29 29 / 0.2);
}
.hx .text-red-900\/25 {
  color: rgb(127 29 29 / 0.25);
}
.hx .text-red-900\/30 {
  color: rgb(127 29 29 / 0.3);
}
.hx .text-red-900\/35 {
  color: rgb(127 29 29 / 0.35);
}
.hx .text-red-900\/40 {
  color: rgb(127 29 29 / 0.4);
}
.hx .text-red-900\/45 {
  color: rgb(127 29 29 / 0.45);
}
.hx .text-red-900\/5 {
  color: rgb(127 29 29 / 0.05);
}
.hx .text-red-900\/50 {
  color: rgb(127 29 29 / 0.5);
}
.hx .text-red-900\/55 {
  color: rgb(127 29 29 / 0.55);
}
.hx .text-red-900\/60 {
  color: rgb(127 29 29 / 0.6);
}
.hx .text-red-900\/65 {
  color: rgb(127 29 29 / 0.65);
}
.hx .text-red-900\/70 {
  color: rgb(127 29 29 / 0.7);
}
.hx .text-red-900\/75 {
  color: rgb(127 29 29 / 0.75);
}
.hx .text-red-900\/80 {
  color: rgb(127 29 29 / 0.8);
}
.hx .text-red-900\/85 {
  color: rgb(127 29 29 / 0.85);
}
.hx .text-red-900\/90 {
  color: rgb(127 29 29 / 0.9);
}
.hx .text-red-900\/95 {
  color: rgb(127 29 29 / 0.95);
}
.hx .text-red-950 {
  --tw-text-opacity: 1;
  color: rgb(69 10 10 / var(--tw-text-opacity, 1));
}
.hx .text-red-950\/0 {
  color: rgb(69 10 10 / 0);
}
.hx .text-red-950\/10 {
  color: rgb(69 10 10 / 0.1);
}
.hx .text-red-950\/100 {
  color: rgb(69 10 10 / 1);
}
.hx .text-red-950\/15 {
  color: rgb(69 10 10 / 0.15);
}
.hx .text-red-950\/20 {
  color: rgb(69 10 10 / 0.2);
}
.hx .text-red-950\/25 {
  color: rgb(69 10 10 / 0.25);
}
.hx .text-red-950\/30 {
  color: rgb(69 10 10 / 0.3);
}
.hx .text-red-950\/35 {
  color: rgb(69 10 10 / 0.35);
}
.hx .text-red-950\/40 {
  color: rgb(69 10 10 / 0.4);
}
.hx .text-red-950\/45 {
  color: rgb(69 10 10 / 0.45);
}
.hx .text-red-950\/5 {
  color: rgb(69 10 10 / 0.05);
}
.hx .text-red-950\/50 {
  color: rgb(69 10 10 / 0.5);
}
.hx .text-red-950\/55 {
  color: rgb(69 10 10 / 0.55);
}
.hx .text-red-950\/60 {
  color: rgb(69 10 10 / 0.6);
}
.hx .text-red-950\/65 {
  color: rgb(69 10 10 / 0.65);
}
.hx .text-red-950\/70 {
  color: rgb(69 10 10 / 0.7);
}
.hx .text-red-950\/75 {
  color: rgb(69 10 10 / 0.75);
}
.hx .text-red-950\/80 {
  color: rgb(69 10 10 / 0.8);
}
.hx .text-red-950\/85 {
  color: rgb(69 10 10 / 0.85);
}
.hx .text-red-950\/90 {
  color: rgb(69 10 10 / 0.9);
}
.hx .text-red-950\/95 {
  color: rgb(69 10 10 / 0.95);
}
.hx .text-rose-100 {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / var(--tw-text-opacity, 1));
}
.hx .text-rose-100\/0 {
  color: rgb(255 228 230 / 0);
}
.hx .text-rose-100\/10 {
  color: rgb(255 228 230 / 0.1);
}
.hx .text-rose-100\/100 {
  color: rgb(255 228 230 / 1);
}
.hx .text-rose-100\/15 {
  color: rgb(255 228 230 / 0.15);
}
.hx .text-rose-100\/20 {
  color: rgb(255 228 230 / 0.2);
}
.hx .text-rose-100\/25 {
  color: rgb(255 228 230 / 0.25);
}
.hx .text-rose-100\/30 {
  color: rgb(255 228 230 / 0.3);
}
.hx .text-rose-100\/35 {
  color: rgb(255 228 230 / 0.35);
}
.hx .text-rose-100\/40 {
  color: rgb(255 228 230 / 0.4);
}
.hx .text-rose-100\/45 {
  color: rgb(255 228 230 / 0.45);
}
.hx .text-rose-100\/5 {
  color: rgb(255 228 230 / 0.05);
}
.hx .text-rose-100\/50 {
  color: rgb(255 228 230 / 0.5);
}
.hx .text-rose-100\/55 {
  color: rgb(255 228 230 / 0.55);
}
.hx .text-rose-100\/60 {
  color: rgb(255 228 230 / 0.6);
}
.hx .text-rose-100\/65 {
  color: rgb(255 228 230 / 0.65);
}
.hx .text-rose-100\/70 {
  color: rgb(255 228 230 / 0.7);
}
.hx .text-rose-100\/75 {
  color: rgb(255 228 230 / 0.75);
}
.hx .text-rose-100\/80 {
  color: rgb(255 228 230 / 0.8);
}
.hx .text-rose-100\/85 {
  color: rgb(255 228 230 / 0.85);
}
.hx .text-rose-100\/90 {
  color: rgb(255 228 230 / 0.9);
}
.hx .text-rose-100\/95 {
  color: rgb(255 228 230 / 0.95);
}
.hx .text-rose-200 {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / var(--tw-text-opacity, 1));
}
.hx .text-rose-200\/0 {
  color: rgb(254 205 211 / 0);
}
.hx .text-rose-200\/10 {
  color: rgb(254 205 211 / 0.1);
}
.hx .text-rose-200\/100 {
  color: rgb(254 205 211 / 1);
}
.hx .text-rose-200\/15 {
  color: rgb(254 205 211 / 0.15);
}
.hx .text-rose-200\/20 {
  color: rgb(254 205 211 / 0.2);
}
.hx .text-rose-200\/25 {
  color: rgb(254 205 211 / 0.25);
}
.hx .text-rose-200\/30 {
  color: rgb(254 205 211 / 0.3);
}
.hx .text-rose-200\/35 {
  color: rgb(254 205 211 / 0.35);
}
.hx .text-rose-200\/40 {
  color: rgb(254 205 211 / 0.4);
}
.hx .text-rose-200\/45 {
  color: rgb(254 205 211 / 0.45);
}
.hx .text-rose-200\/5 {
  color: rgb(254 205 211 / 0.05);
}
.hx .text-rose-200\/50 {
  color: rgb(254 205 211 / 0.5);
}
.hx .text-rose-200\/55 {
  color: rgb(254 205 211 / 0.55);
}
.hx .text-rose-200\/60 {
  color: rgb(254 205 211 / 0.6);
}
.hx .text-rose-200\/65 {
  color: rgb(254 205 211 / 0.65);
}
.hx .text-rose-200\/70 {
  color: rgb(254 205 211 / 0.7);
}
.hx .text-rose-200\/75 {
  color: rgb(254 205 211 / 0.75);
}
.hx .text-rose-200\/80 {
  color: rgb(254 205 211 / 0.8);
}
.hx .text-rose-200\/85 {
  color: rgb(254 205 211 / 0.85);
}
.hx .text-rose-200\/90 {
  color: rgb(254 205 211 / 0.9);
}
.hx .text-rose-200\/95 {
  color: rgb(254 205 211 / 0.95);
}
.hx .text-rose-300 {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.hx .text-rose-300\/0 {
  color: rgb(253 164 175 / 0);
}
.hx .text-rose-300\/10 {
  color: rgb(253 164 175 / 0.1);
}
.hx .text-rose-300\/100 {
  color: rgb(253 164 175 / 1);
}
.hx .text-rose-300\/15 {
  color: rgb(253 164 175 / 0.15);
}
.hx .text-rose-300\/20 {
  color: rgb(253 164 175 / 0.2);
}
.hx .text-rose-300\/25 {
  color: rgb(253 164 175 / 0.25);
}
.hx .text-rose-300\/30 {
  color: rgb(253 164 175 / 0.3);
}
.hx .text-rose-300\/35 {
  color: rgb(253 164 175 / 0.35);
}
.hx .text-rose-300\/40 {
  color: rgb(253 164 175 / 0.4);
}
.hx .text-rose-300\/45 {
  color: rgb(253 164 175 / 0.45);
}
.hx .text-rose-300\/5 {
  color: rgb(253 164 175 / 0.05);
}
.hx .text-rose-300\/50 {
  color: rgb(253 164 175 / 0.5);
}
.hx .text-rose-300\/55 {
  color: rgb(253 164 175 / 0.55);
}
.hx .text-rose-300\/60 {
  color: rgb(253 164 175 / 0.6);
}
.hx .text-rose-300\/65 {
  color: rgb(253 164 175 / 0.65);
}
.hx .text-rose-300\/70 {
  color: rgb(253 164 175 / 0.7);
}
.hx .text-rose-300\/75 {
  color: rgb(253 164 175 / 0.75);
}
.hx .text-rose-300\/80 {
  color: rgb(253 164 175 / 0.8);
}
.hx .text-rose-300\/85 {
  color: rgb(253 164 175 / 0.85);
}
.hx .text-rose-300\/90 {
  color: rgb(253 164 175 / 0.9);
}
.hx .text-rose-300\/95 {
  color: rgb(253 164 175 / 0.95);
}
.hx .text-rose-400 {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}
.hx .text-rose-400\/0 {
  color: rgb(251 113 133 / 0);
}
.hx .text-rose-400\/10 {
  color: rgb(251 113 133 / 0.1);
}
.hx .text-rose-400\/100 {
  color: rgb(251 113 133 / 1);
}
.hx .text-rose-400\/15 {
  color: rgb(251 113 133 / 0.15);
}
.hx .text-rose-400\/20 {
  color: rgb(251 113 133 / 0.2);
}
.hx .text-rose-400\/25 {
  color: rgb(251 113 133 / 0.25);
}
.hx .text-rose-400\/30 {
  color: rgb(251 113 133 / 0.3);
}
.hx .text-rose-400\/35 {
  color: rgb(251 113 133 / 0.35);
}
.hx .text-rose-400\/40 {
  color: rgb(251 113 133 / 0.4);
}
.hx .text-rose-400\/45 {
  color: rgb(251 113 133 / 0.45);
}
.hx .text-rose-400\/5 {
  color: rgb(251 113 133 / 0.05);
}
.hx .text-rose-400\/50 {
  color: rgb(251 113 133 / 0.5);
}
.hx .text-rose-400\/55 {
  color: rgb(251 113 133 / 0.55);
}
.hx .text-rose-400\/60 {
  color: rgb(251 113 133 / 0.6);
}
.hx .text-rose-400\/65 {
  color: rgb(251 113 133 / 0.65);
}
.hx .text-rose-400\/70 {
  color: rgb(251 113 133 / 0.7);
}
.hx .text-rose-400\/75 {
  color: rgb(251 113 133 / 0.75);
}
.hx .text-rose-400\/80 {
  color: rgb(251 113 133 / 0.8);
}
.hx .text-rose-400\/85 {
  color: rgb(251 113 133 / 0.85);
}
.hx .text-rose-400\/90 {
  color: rgb(251 113 133 / 0.9);
}
.hx .text-rose-400\/95 {
  color: rgb(251 113 133 / 0.95);
}
.hx .text-rose-50 {
  --tw-text-opacity: 1;
  color: rgb(255 241 242 / var(--tw-text-opacity, 1));
}
.hx .text-rose-50\/0 {
  color: rgb(255 241 242 / 0);
}
.hx .text-rose-50\/10 {
  color: rgb(255 241 242 / 0.1);
}
.hx .text-rose-50\/100 {
  color: rgb(255 241 242 / 1);
}
.hx .text-rose-50\/15 {
  color: rgb(255 241 242 / 0.15);
}
.hx .text-rose-50\/20 {
  color: rgb(255 241 242 / 0.2);
}
.hx .text-rose-50\/25 {
  color: rgb(255 241 242 / 0.25);
}
.hx .text-rose-50\/30 {
  color: rgb(255 241 242 / 0.3);
}
.hx .text-rose-50\/35 {
  color: rgb(255 241 242 / 0.35);
}
.hx .text-rose-50\/40 {
  color: rgb(255 241 242 / 0.4);
}
.hx .text-rose-50\/45 {
  color: rgb(255 241 242 / 0.45);
}
.hx .text-rose-50\/5 {
  color: rgb(255 241 242 / 0.05);
}
.hx .text-rose-50\/50 {
  color: rgb(255 241 242 / 0.5);
}
.hx .text-rose-50\/55 {
  color: rgb(255 241 242 / 0.55);
}
.hx .text-rose-50\/60 {
  color: rgb(255 241 242 / 0.6);
}
.hx .text-rose-50\/65 {
  color: rgb(255 241 242 / 0.65);
}
.hx .text-rose-50\/70 {
  color: rgb(255 241 242 / 0.7);
}
.hx .text-rose-50\/75 {
  color: rgb(255 241 242 / 0.75);
}
.hx .text-rose-50\/80 {
  color: rgb(255 241 242 / 0.8);
}
.hx .text-rose-50\/85 {
  color: rgb(255 241 242 / 0.85);
}
.hx .text-rose-50\/90 {
  color: rgb(255 241 242 / 0.9);
}
.hx .text-rose-50\/95 {
  color: rgb(255 241 242 / 0.95);
}
.hx .text-rose-500 {
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.hx .text-rose-500\/0 {
  color: rgb(244 63 94 / 0);
}
.hx .text-rose-500\/10 {
  color: rgb(244 63 94 / 0.1);
}
.hx .text-rose-500\/100 {
  color: rgb(244 63 94 / 1);
}
.hx .text-rose-500\/15 {
  color: rgb(244 63 94 / 0.15);
}
.hx .text-rose-500\/20 {
  color: rgb(244 63 94 / 0.2);
}
.hx .text-rose-500\/25 {
  color: rgb(244 63 94 / 0.25);
}
.hx .text-rose-500\/30 {
  color: rgb(244 63 94 / 0.3);
}
.hx .text-rose-500\/35 {
  color: rgb(244 63 94 / 0.35);
}
.hx .text-rose-500\/40 {
  color: rgb(244 63 94 / 0.4);
}
.hx .text-rose-500\/45 {
  color: rgb(244 63 94 / 0.45);
}
.hx .text-rose-500\/5 {
  color: rgb(244 63 94 / 0.05);
}
.hx .text-rose-500\/50 {
  color: rgb(244 63 94 / 0.5);
}
.hx .text-rose-500\/55 {
  color: rgb(244 63 94 / 0.55);
}
.hx .text-rose-500\/60 {
  color: rgb(244 63 94 / 0.6);
}
.hx .text-rose-500\/65 {
  color: rgb(244 63 94 / 0.65);
}
.hx .text-rose-500\/70 {
  color: rgb(244 63 94 / 0.7);
}
.hx .text-rose-500\/75 {
  color: rgb(244 63 94 / 0.75);
}
.hx .text-rose-500\/80 {
  color: rgb(244 63 94 / 0.8);
}
.hx .text-rose-500\/85 {
  color: rgb(244 63 94 / 0.85);
}
.hx .text-rose-500\/90 {
  color: rgb(244 63 94 / 0.9);
}
.hx .text-rose-500\/95 {
  color: rgb(244 63 94 / 0.95);
}
.hx .text-rose-600 {
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}
.hx .text-rose-600\/0 {
  color: rgb(225 29 72 / 0);
}
.hx .text-rose-600\/10 {
  color: rgb(225 29 72 / 0.1);
}
.hx .text-rose-600\/100 {
  color: rgb(225 29 72 / 1);
}
.hx .text-rose-600\/15 {
  color: rgb(225 29 72 / 0.15);
}
.hx .text-rose-600\/20 {
  color: rgb(225 29 72 / 0.2);
}
.hx .text-rose-600\/25 {
  color: rgb(225 29 72 / 0.25);
}
.hx .text-rose-600\/30 {
  color: rgb(225 29 72 / 0.3);
}
.hx .text-rose-600\/35 {
  color: rgb(225 29 72 / 0.35);
}
.hx .text-rose-600\/40 {
  color: rgb(225 29 72 / 0.4);
}
.hx .text-rose-600\/45 {
  color: rgb(225 29 72 / 0.45);
}
.hx .text-rose-600\/5 {
  color: rgb(225 29 72 / 0.05);
}
.hx .text-rose-600\/50 {
  color: rgb(225 29 72 / 0.5);
}
.hx .text-rose-600\/55 {
  color: rgb(225 29 72 / 0.55);
}
.hx .text-rose-600\/60 {
  color: rgb(225 29 72 / 0.6);
}
.hx .text-rose-600\/65 {
  color: rgb(225 29 72 / 0.65);
}
.hx .text-rose-600\/70 {
  color: rgb(225 29 72 / 0.7);
}
.hx .text-rose-600\/75 {
  color: rgb(225 29 72 / 0.75);
}
.hx .text-rose-600\/80 {
  color: rgb(225 29 72 / 0.8);
}
.hx .text-rose-600\/85 {
  color: rgb(225 29 72 / 0.85);
}
.hx .text-rose-600\/90 {
  color: rgb(225 29 72 / 0.9);
}
.hx .text-rose-600\/95 {
  color: rgb(225 29 72 / 0.95);
}
.hx .text-rose-700 {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}
.hx .text-rose-700\/0 {
  color: rgb(190 18 60 / 0);
}
.hx .text-rose-700\/10 {
  color: rgb(190 18 60 / 0.1);
}
.hx .text-rose-700\/100 {
  color: rgb(190 18 60 / 1);
}
.hx .text-rose-700\/15 {
  color: rgb(190 18 60 / 0.15);
}
.hx .text-rose-700\/20 {
  color: rgb(190 18 60 / 0.2);
}
.hx .text-rose-700\/25 {
  color: rgb(190 18 60 / 0.25);
}
.hx .text-rose-700\/30 {
  color: rgb(190 18 60 / 0.3);
}
.hx .text-rose-700\/35 {
  color: rgb(190 18 60 / 0.35);
}
.hx .text-rose-700\/40 {
  color: rgb(190 18 60 / 0.4);
}
.hx .text-rose-700\/45 {
  color: rgb(190 18 60 / 0.45);
}
.hx .text-rose-700\/5 {
  color: rgb(190 18 60 / 0.05);
}
.hx .text-rose-700\/50 {
  color: rgb(190 18 60 / 0.5);
}
.hx .text-rose-700\/55 {
  color: rgb(190 18 60 / 0.55);
}
.hx .text-rose-700\/60 {
  color: rgb(190 18 60 / 0.6);
}
.hx .text-rose-700\/65 {
  color: rgb(190 18 60 / 0.65);
}
.hx .text-rose-700\/70 {
  color: rgb(190 18 60 / 0.7);
}
.hx .text-rose-700\/75 {
  color: rgb(190 18 60 / 0.75);
}
.hx .text-rose-700\/80 {
  color: rgb(190 18 60 / 0.8);
}
.hx .text-rose-700\/85 {
  color: rgb(190 18 60 / 0.85);
}
.hx .text-rose-700\/90 {
  color: rgb(190 18 60 / 0.9);
}
.hx .text-rose-700\/95 {
  color: rgb(190 18 60 / 0.95);
}
.hx .text-rose-800 {
  --tw-text-opacity: 1;
  color: rgb(159 18 57 / var(--tw-text-opacity, 1));
}
.hx .text-rose-800\/0 {
  color: rgb(159 18 57 / 0);
}
.hx .text-rose-800\/10 {
  color: rgb(159 18 57 / 0.1);
}
.hx .text-rose-800\/100 {
  color: rgb(159 18 57 / 1);
}
.hx .text-rose-800\/15 {
  color: rgb(159 18 57 / 0.15);
}
.hx .text-rose-800\/20 {
  color: rgb(159 18 57 / 0.2);
}
.hx .text-rose-800\/25 {
  color: rgb(159 18 57 / 0.25);
}
.hx .text-rose-800\/30 {
  color: rgb(159 18 57 / 0.3);
}
.hx .text-rose-800\/35 {
  color: rgb(159 18 57 / 0.35);
}
.hx .text-rose-800\/40 {
  color: rgb(159 18 57 / 0.4);
}
.hx .text-rose-800\/45 {
  color: rgb(159 18 57 / 0.45);
}
.hx .text-rose-800\/5 {
  color: rgb(159 18 57 / 0.05);
}
.hx .text-rose-800\/50 {
  color: rgb(159 18 57 / 0.5);
}
.hx .text-rose-800\/55 {
  color: rgb(159 18 57 / 0.55);
}
.hx .text-rose-800\/60 {
  color: rgb(159 18 57 / 0.6);
}
.hx .text-rose-800\/65 {
  color: rgb(159 18 57 / 0.65);
}
.hx .text-rose-800\/70 {
  color: rgb(159 18 57 / 0.7);
}
.hx .text-rose-800\/75 {
  color: rgb(159 18 57 / 0.75);
}
.hx .text-rose-800\/80 {
  color: rgb(159 18 57 / 0.8);
}
.hx .text-rose-800\/85 {
  color: rgb(159 18 57 / 0.85);
}
.hx .text-rose-800\/90 {
  color: rgb(159 18 57 / 0.9);
}
.hx .text-rose-800\/95 {
  color: rgb(159 18 57 / 0.95);
}
.hx .text-rose-900 {
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}
.hx .text-rose-900\/0 {
  color: rgb(136 19 55 / 0);
}
.hx .text-rose-900\/10 {
  color: rgb(136 19 55 / 0.1);
}
.hx .text-rose-900\/100 {
  color: rgb(136 19 55 / 1);
}
.hx .text-rose-900\/15 {
  color: rgb(136 19 55 / 0.15);
}
.hx .text-rose-900\/20 {
  color: rgb(136 19 55 / 0.2);
}
.hx .text-rose-900\/25 {
  color: rgb(136 19 55 / 0.25);
}
.hx .text-rose-900\/30 {
  color: rgb(136 19 55 / 0.3);
}
.hx .text-rose-900\/35 {
  color: rgb(136 19 55 / 0.35);
}
.hx .text-rose-900\/40 {
  color: rgb(136 19 55 / 0.4);
}
.hx .text-rose-900\/45 {
  color: rgb(136 19 55 / 0.45);
}
.hx .text-rose-900\/5 {
  color: rgb(136 19 55 / 0.05);
}
.hx .text-rose-900\/50 {
  color: rgb(136 19 55 / 0.5);
}
.hx .text-rose-900\/55 {
  color: rgb(136 19 55 / 0.55);
}
.hx .text-rose-900\/60 {
  color: rgb(136 19 55 / 0.6);
}
.hx .text-rose-900\/65 {
  color: rgb(136 19 55 / 0.65);
}
.hx .text-rose-900\/70 {
  color: rgb(136 19 55 / 0.7);
}
.hx .text-rose-900\/75 {
  color: rgb(136 19 55 / 0.75);
}
.hx .text-rose-900\/80 {
  color: rgb(136 19 55 / 0.8);
}
.hx .text-rose-900\/85 {
  color: rgb(136 19 55 / 0.85);
}
.hx .text-rose-900\/90 {
  color: rgb(136 19 55 / 0.9);
}
.hx .text-rose-900\/95 {
  color: rgb(136 19 55 / 0.95);
}
.hx .text-rose-950 {
  --tw-text-opacity: 1;
  color: rgb(76 5 25 / var(--tw-text-opacity, 1));
}
.hx .text-rose-950\/0 {
  color: rgb(76 5 25 / 0);
}
.hx .text-rose-950\/10 {
  color: rgb(76 5 25 / 0.1);
}
.hx .text-rose-950\/100 {
  color: rgb(76 5 25 / 1);
}
.hx .text-rose-950\/15 {
  color: rgb(76 5 25 / 0.15);
}
.hx .text-rose-950\/20 {
  color: rgb(76 5 25 / 0.2);
}
.hx .text-rose-950\/25 {
  color: rgb(76 5 25 / 0.25);
}
.hx .text-rose-950\/30 {
  color: rgb(76 5 25 / 0.3);
}
.hx .text-rose-950\/35 {
  color: rgb(76 5 25 / 0.35);
}
.hx .text-rose-950\/40 {
  color: rgb(76 5 25 / 0.4);
}
.hx .text-rose-950\/45 {
  color: rgb(76 5 25 / 0.45);
}
.hx .text-rose-950\/5 {
  color: rgb(76 5 25 / 0.05);
}
.hx .text-rose-950\/50 {
  color: rgb(76 5 25 / 0.5);
}
.hx .text-rose-950\/55 {
  color: rgb(76 5 25 / 0.55);
}
.hx .text-rose-950\/60 {
  color: rgb(76 5 25 / 0.6);
}
.hx .text-rose-950\/65 {
  color: rgb(76 5 25 / 0.65);
}
.hx .text-rose-950\/70 {
  color: rgb(76 5 25 / 0.7);
}
.hx .text-rose-950\/75 {
  color: rgb(76 5 25 / 0.75);
}
.hx .text-rose-950\/80 {
  color: rgb(76 5 25 / 0.8);
}
.hx .text-rose-950\/85 {
  color: rgb(76 5 25 / 0.85);
}
.hx .text-rose-950\/90 {
  color: rgb(76 5 25 / 0.9);
}
.hx .text-rose-950\/95 {
  color: rgb(76 5 25 / 0.95);
}
.hx .text-secondary {
  --tw-text-opacity: 1;
  color: rgb(32 48 121 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-100 {
  --tw-text-opacity: 1;
  color: rgb(209 225 245 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-100\/0 {
  color: rgb(209 225 245 / 0);
}
.hx .text-secondary-100\/10 {
  color: rgb(209 225 245 / 0.1);
}
.hx .text-secondary-100\/100 {
  color: rgb(209 225 245 / 1);
}
.hx .text-secondary-100\/15 {
  color: rgb(209 225 245 / 0.15);
}
.hx .text-secondary-100\/20 {
  color: rgb(209 225 245 / 0.2);
}
.hx .text-secondary-100\/25 {
  color: rgb(209 225 245 / 0.25);
}
.hx .text-secondary-100\/30 {
  color: rgb(209 225 245 / 0.3);
}
.hx .text-secondary-100\/35 {
  color: rgb(209 225 245 / 0.35);
}
.hx .text-secondary-100\/40 {
  color: rgb(209 225 245 / 0.4);
}
.hx .text-secondary-100\/45 {
  color: rgb(209 225 245 / 0.45);
}
.hx .text-secondary-100\/5 {
  color: rgb(209 225 245 / 0.05);
}
.hx .text-secondary-100\/50 {
  color: rgb(209 225 245 / 0.5);
}
.hx .text-secondary-100\/55 {
  color: rgb(209 225 245 / 0.55);
}
.hx .text-secondary-100\/60 {
  color: rgb(209 225 245 / 0.6);
}
.hx .text-secondary-100\/65 {
  color: rgb(209 225 245 / 0.65);
}
.hx .text-secondary-100\/70 {
  color: rgb(209 225 245 / 0.7);
}
.hx .text-secondary-100\/75 {
  color: rgb(209 225 245 / 0.75);
}
.hx .text-secondary-100\/80 {
  color: rgb(209 225 245 / 0.8);
}
.hx .text-secondary-100\/85 {
  color: rgb(209 225 245 / 0.85);
}
.hx .text-secondary-100\/90 {
  color: rgb(209 225 245 / 0.9);
}
.hx .text-secondary-100\/95 {
  color: rgb(209 225 245 / 0.95);
}
.hx .text-secondary-200 {
  --tw-text-opacity: 1;
  color: rgb(188 210 241 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-200\/0 {
  color: rgb(188 210 241 / 0);
}
.hx .text-secondary-200\/10 {
  color: rgb(188 210 241 / 0.1);
}
.hx .text-secondary-200\/100 {
  color: rgb(188 210 241 / 1);
}
.hx .text-secondary-200\/15 {
  color: rgb(188 210 241 / 0.15);
}
.hx .text-secondary-200\/20 {
  color: rgb(188 210 241 / 0.2);
}
.hx .text-secondary-200\/25 {
  color: rgb(188 210 241 / 0.25);
}
.hx .text-secondary-200\/30 {
  color: rgb(188 210 241 / 0.3);
}
.hx .text-secondary-200\/35 {
  color: rgb(188 210 241 / 0.35);
}
.hx .text-secondary-200\/40 {
  color: rgb(188 210 241 / 0.4);
}
.hx .text-secondary-200\/45 {
  color: rgb(188 210 241 / 0.45);
}
.hx .text-secondary-200\/5 {
  color: rgb(188 210 241 / 0.05);
}
.hx .text-secondary-200\/50 {
  color: rgb(188 210 241 / 0.5);
}
.hx .text-secondary-200\/55 {
  color: rgb(188 210 241 / 0.55);
}
.hx .text-secondary-200\/60 {
  color: rgb(188 210 241 / 0.6);
}
.hx .text-secondary-200\/65 {
  color: rgb(188 210 241 / 0.65);
}
.hx .text-secondary-200\/70 {
  color: rgb(188 210 241 / 0.7);
}
.hx .text-secondary-200\/75 {
  color: rgb(188 210 241 / 0.75);
}
.hx .text-secondary-200\/80 {
  color: rgb(188 210 241 / 0.8);
}
.hx .text-secondary-200\/85 {
  color: rgb(188 210 241 / 0.85);
}
.hx .text-secondary-200\/90 {
  color: rgb(188 210 241 / 0.9);
}
.hx .text-secondary-200\/95 {
  color: rgb(188 210 241 / 0.95);
}
.hx .text-secondary-300 {
  --tw-text-opacity: 1;
  color: rgb(154 185 234 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-300\/0 {
  color: rgb(154 185 234 / 0);
}
.hx .text-secondary-300\/10 {
  color: rgb(154 185 234 / 0.1);
}
.hx .text-secondary-300\/100 {
  color: rgb(154 185 234 / 1);
}
.hx .text-secondary-300\/15 {
  color: rgb(154 185 234 / 0.15);
}
.hx .text-secondary-300\/20 {
  color: rgb(154 185 234 / 0.2);
}
.hx .text-secondary-300\/25 {
  color: rgb(154 185 234 / 0.25);
}
.hx .text-secondary-300\/30 {
  color: rgb(154 185 234 / 0.3);
}
.hx .text-secondary-300\/35 {
  color: rgb(154 185 234 / 0.35);
}
.hx .text-secondary-300\/40 {
  color: rgb(154 185 234 / 0.4);
}
.hx .text-secondary-300\/45 {
  color: rgb(154 185 234 / 0.45);
}
.hx .text-secondary-300\/5 {
  color: rgb(154 185 234 / 0.05);
}
.hx .text-secondary-300\/50 {
  color: rgb(154 185 234 / 0.5);
}
.hx .text-secondary-300\/55 {
  color: rgb(154 185 234 / 0.55);
}
.hx .text-secondary-300\/60 {
  color: rgb(154 185 234 / 0.6);
}
.hx .text-secondary-300\/65 {
  color: rgb(154 185 234 / 0.65);
}
.hx .text-secondary-300\/70 {
  color: rgb(154 185 234 / 0.7);
}
.hx .text-secondary-300\/75 {
  color: rgb(154 185 234 / 0.75);
}
.hx .text-secondary-300\/80 {
  color: rgb(154 185 234 / 0.8);
}
.hx .text-secondary-300\/85 {
  color: rgb(154 185 234 / 0.85);
}
.hx .text-secondary-300\/90 {
  color: rgb(154 185 234 / 0.9);
}
.hx .text-secondary-300\/95 {
  color: rgb(154 185 234 / 0.95);
}
.hx .text-secondary-400 {
  --tw-text-opacity: 1;
  color: rgb(125 157 227 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-400\/0 {
  color: rgb(125 157 227 / 0);
}
.hx .text-secondary-400\/10 {
  color: rgb(125 157 227 / 0.1);
}
.hx .text-secondary-400\/100 {
  color: rgb(125 157 227 / 1);
}
.hx .text-secondary-400\/15 {
  color: rgb(125 157 227 / 0.15);
}
.hx .text-secondary-400\/20 {
  color: rgb(125 157 227 / 0.2);
}
.hx .text-secondary-400\/25 {
  color: rgb(125 157 227 / 0.25);
}
.hx .text-secondary-400\/30 {
  color: rgb(125 157 227 / 0.3);
}
.hx .text-secondary-400\/35 {
  color: rgb(125 157 227 / 0.35);
}
.hx .text-secondary-400\/40 {
  color: rgb(125 157 227 / 0.4);
}
.hx .text-secondary-400\/45 {
  color: rgb(125 157 227 / 0.45);
}
.hx .text-secondary-400\/5 {
  color: rgb(125 157 227 / 0.05);
}
.hx .text-secondary-400\/50 {
  color: rgb(125 157 227 / 0.5);
}
.hx .text-secondary-400\/55 {
  color: rgb(125 157 227 / 0.55);
}
.hx .text-secondary-400\/60 {
  color: rgb(125 157 227 / 0.6);
}
.hx .text-secondary-400\/65 {
  color: rgb(125 157 227 / 0.65);
}
.hx .text-secondary-400\/70 {
  color: rgb(125 157 227 / 0.7);
}
.hx .text-secondary-400\/75 {
  color: rgb(125 157 227 / 0.75);
}
.hx .text-secondary-400\/80 {
  color: rgb(125 157 227 / 0.8);
}
.hx .text-secondary-400\/85 {
  color: rgb(125 157 227 / 0.85);
}
.hx .text-secondary-400\/90 {
  color: rgb(125 157 227 / 0.9);
}
.hx .text-secondary-400\/95 {
  color: rgb(125 157 227 / 0.95);
}
.hx .text-secondary-50 {
  --tw-text-opacity: 1;
  color: rgb(221 234 248 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-50\/0 {
  color: rgb(221 234 248 / 0);
}
.hx .text-secondary-50\/10 {
  color: rgb(221 234 248 / 0.1);
}
.hx .text-secondary-50\/100 {
  color: rgb(221 234 248 / 1);
}
.hx .text-secondary-50\/15 {
  color: rgb(221 234 248 / 0.15);
}
.hx .text-secondary-50\/20 {
  color: rgb(221 234 248 / 0.2);
}
.hx .text-secondary-50\/25 {
  color: rgb(221 234 248 / 0.25);
}
.hx .text-secondary-50\/30 {
  color: rgb(221 234 248 / 0.3);
}
.hx .text-secondary-50\/35 {
  color: rgb(221 234 248 / 0.35);
}
.hx .text-secondary-50\/40 {
  color: rgb(221 234 248 / 0.4);
}
.hx .text-secondary-50\/45 {
  color: rgb(221 234 248 / 0.45);
}
.hx .text-secondary-50\/5 {
  color: rgb(221 234 248 / 0.05);
}
.hx .text-secondary-50\/50 {
  color: rgb(221 234 248 / 0.5);
}
.hx .text-secondary-50\/55 {
  color: rgb(221 234 248 / 0.55);
}
.hx .text-secondary-50\/60 {
  color: rgb(221 234 248 / 0.6);
}
.hx .text-secondary-50\/65 {
  color: rgb(221 234 248 / 0.65);
}
.hx .text-secondary-50\/70 {
  color: rgb(221 234 248 / 0.7);
}
.hx .text-secondary-50\/75 {
  color: rgb(221 234 248 / 0.75);
}
.hx .text-secondary-50\/80 {
  color: rgb(221 234 248 / 0.8);
}
.hx .text-secondary-50\/85 {
  color: rgb(221 234 248 / 0.85);
}
.hx .text-secondary-50\/90 {
  color: rgb(221 234 248 / 0.9);
}
.hx .text-secondary-50\/95 {
  color: rgb(221 234 248 / 0.95);
}
.hx .text-secondary-500 {
  --tw-text-opacity: 1;
  color: rgb(95 125 221 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-500\/0 {
  color: rgb(95 125 221 / 0);
}
.hx .text-secondary-500\/10 {
  color: rgb(95 125 221 / 0.1);
}
.hx .text-secondary-500\/100 {
  color: rgb(95 125 221 / 1);
}
.hx .text-secondary-500\/15 {
  color: rgb(95 125 221 / 0.15);
}
.hx .text-secondary-500\/20 {
  color: rgb(95 125 221 / 0.2);
}
.hx .text-secondary-500\/25 {
  color: rgb(95 125 221 / 0.25);
}
.hx .text-secondary-500\/30 {
  color: rgb(95 125 221 / 0.3);
}
.hx .text-secondary-500\/35 {
  color: rgb(95 125 221 / 0.35);
}
.hx .text-secondary-500\/40 {
  color: rgb(95 125 221 / 0.4);
}
.hx .text-secondary-500\/45 {
  color: rgb(95 125 221 / 0.45);
}
.hx .text-secondary-500\/5 {
  color: rgb(95 125 221 / 0.05);
}
.hx .text-secondary-500\/50 {
  color: rgb(95 125 221 / 0.5);
}
.hx .text-secondary-500\/55 {
  color: rgb(95 125 221 / 0.55);
}
.hx .text-secondary-500\/60 {
  color: rgb(95 125 221 / 0.6);
}
.hx .text-secondary-500\/65 {
  color: rgb(95 125 221 / 0.65);
}
.hx .text-secondary-500\/70 {
  color: rgb(95 125 221 / 0.7);
}
.hx .text-secondary-500\/75 {
  color: rgb(95 125 221 / 0.75);
}
.hx .text-secondary-500\/80 {
  color: rgb(95 125 221 / 0.8);
}
.hx .text-secondary-500\/85 {
  color: rgb(95 125 221 / 0.85);
}
.hx .text-secondary-500\/90 {
  color: rgb(95 125 221 / 0.9);
}
.hx .text-secondary-500\/95 {
  color: rgb(95 125 221 / 0.95);
}
.hx .text-secondary-600 {
  --tw-text-opacity: 1;
  color: rgb(75 97 206 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-600\/0 {
  color: rgb(75 97 206 / 0);
}
.hx .text-secondary-600\/10 {
  color: rgb(75 97 206 / 0.1);
}
.hx .text-secondary-600\/100 {
  color: rgb(75 97 206 / 1);
}
.hx .text-secondary-600\/15 {
  color: rgb(75 97 206 / 0.15);
}
.hx .text-secondary-600\/20 {
  color: rgb(75 97 206 / 0.2);
}
.hx .text-secondary-600\/25 {
  color: rgb(75 97 206 / 0.25);
}
.hx .text-secondary-600\/30 {
  color: rgb(75 97 206 / 0.3);
}
.hx .text-secondary-600\/35 {
  color: rgb(75 97 206 / 0.35);
}
.hx .text-secondary-600\/40 {
  color: rgb(75 97 206 / 0.4);
}
.hx .text-secondary-600\/45 {
  color: rgb(75 97 206 / 0.45);
}
.hx .text-secondary-600\/5 {
  color: rgb(75 97 206 / 0.05);
}
.hx .text-secondary-600\/50 {
  color: rgb(75 97 206 / 0.5);
}
.hx .text-secondary-600\/55 {
  color: rgb(75 97 206 / 0.55);
}
.hx .text-secondary-600\/60 {
  color: rgb(75 97 206 / 0.6);
}
.hx .text-secondary-600\/65 {
  color: rgb(75 97 206 / 0.65);
}
.hx .text-secondary-600\/70 {
  color: rgb(75 97 206 / 0.7);
}
.hx .text-secondary-600\/75 {
  color: rgb(75 97 206 / 0.75);
}
.hx .text-secondary-600\/80 {
  color: rgb(75 97 206 / 0.8);
}
.hx .text-secondary-600\/85 {
  color: rgb(75 97 206 / 0.85);
}
.hx .text-secondary-600\/90 {
  color: rgb(75 97 206 / 0.9);
}
.hx .text-secondary-600\/95 {
  color: rgb(75 97 206 / 0.95);
}
.hx .text-secondary-700 {
  --tw-text-opacity: 1;
  color: rgb(77 88 163 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-700\/0 {
  color: rgb(77 88 163 / 0);
}
.hx .text-secondary-700\/10 {
  color: rgb(77 88 163 / 0.1);
}
.hx .text-secondary-700\/100 {
  color: rgb(77 88 163 / 1);
}
.hx .text-secondary-700\/15 {
  color: rgb(77 88 163 / 0.15);
}
.hx .text-secondary-700\/20 {
  color: rgb(77 88 163 / 0.2);
}
.hx .text-secondary-700\/25 {
  color: rgb(77 88 163 / 0.25);
}
.hx .text-secondary-700\/30 {
  color: rgb(77 88 163 / 0.3);
}
.hx .text-secondary-700\/35 {
  color: rgb(77 88 163 / 0.35);
}
.hx .text-secondary-700\/40 {
  color: rgb(77 88 163 / 0.4);
}
.hx .text-secondary-700\/45 {
  color: rgb(77 88 163 / 0.45);
}
.hx .text-secondary-700\/5 {
  color: rgb(77 88 163 / 0.05);
}
.hx .text-secondary-700\/50 {
  color: rgb(77 88 163 / 0.5);
}
.hx .text-secondary-700\/55 {
  color: rgb(77 88 163 / 0.55);
}
.hx .text-secondary-700\/60 {
  color: rgb(77 88 163 / 0.6);
}
.hx .text-secondary-700\/65 {
  color: rgb(77 88 163 / 0.65);
}
.hx .text-secondary-700\/70 {
  color: rgb(77 88 163 / 0.7);
}
.hx .text-secondary-700\/75 {
  color: rgb(77 88 163 / 0.75);
}
.hx .text-secondary-700\/80 {
  color: rgb(77 88 163 / 0.8);
}
.hx .text-secondary-700\/85 {
  color: rgb(77 88 163 / 0.85);
}
.hx .text-secondary-700\/90 {
  color: rgb(77 88 163 / 0.9);
}
.hx .text-secondary-700\/95 {
  color: rgb(77 88 163 / 0.95);
}
.hx .text-secondary-800 {
  --tw-text-opacity: 1;
  color: rgb(64 73 125 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-800\/0 {
  color: rgb(64 73 125 / 0);
}
.hx .text-secondary-800\/10 {
  color: rgb(64 73 125 / 0.1);
}
.hx .text-secondary-800\/100 {
  color: rgb(64 73 125 / 1);
}
.hx .text-secondary-800\/15 {
  color: rgb(64 73 125 / 0.15);
}
.hx .text-secondary-800\/20 {
  color: rgb(64 73 125 / 0.2);
}
.hx .text-secondary-800\/25 {
  color: rgb(64 73 125 / 0.25);
}
.hx .text-secondary-800\/30 {
  color: rgb(64 73 125 / 0.3);
}
.hx .text-secondary-800\/35 {
  color: rgb(64 73 125 / 0.35);
}
.hx .text-secondary-800\/40 {
  color: rgb(64 73 125 / 0.4);
}
.hx .text-secondary-800\/45 {
  color: rgb(64 73 125 / 0.45);
}
.hx .text-secondary-800\/5 {
  color: rgb(64 73 125 / 0.05);
}
.hx .text-secondary-800\/50 {
  color: rgb(64 73 125 / 0.5);
}
.hx .text-secondary-800\/55 {
  color: rgb(64 73 125 / 0.55);
}
.hx .text-secondary-800\/60 {
  color: rgb(64 73 125 / 0.6);
}
.hx .text-secondary-800\/65 {
  color: rgb(64 73 125 / 0.65);
}
.hx .text-secondary-800\/70 {
  color: rgb(64 73 125 / 0.7);
}
.hx .text-secondary-800\/75 {
  color: rgb(64 73 125 / 0.75);
}
.hx .text-secondary-800\/80 {
  color: rgb(64 73 125 / 0.8);
}
.hx .text-secondary-800\/85 {
  color: rgb(64 73 125 / 0.85);
}
.hx .text-secondary-800\/90 {
  color: rgb(64 73 125 / 0.9);
}
.hx .text-secondary-800\/95 {
  color: rgb(64 73 125 / 0.95);
}
.hx .text-secondary-900 {
  --tw-text-opacity: 1;
  color: rgb(32 48 121 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-900\/0 {
  color: rgb(32 48 121 / 0);
}
.hx .text-secondary-900\/10 {
  color: rgb(32 48 121 / 0.1);
}
.hx .text-secondary-900\/100 {
  color: rgb(32 48 121 / 1);
}
.hx .text-secondary-900\/15 {
  color: rgb(32 48 121 / 0.15);
}
.hx .text-secondary-900\/20 {
  color: rgb(32 48 121 / 0.2);
}
.hx .text-secondary-900\/25 {
  color: rgb(32 48 121 / 0.25);
}
.hx .text-secondary-900\/30 {
  color: rgb(32 48 121 / 0.3);
}
.hx .text-secondary-900\/35 {
  color: rgb(32 48 121 / 0.35);
}
.hx .text-secondary-900\/40 {
  color: rgb(32 48 121 / 0.4);
}
.hx .text-secondary-900\/45 {
  color: rgb(32 48 121 / 0.45);
}
.hx .text-secondary-900\/5 {
  color: rgb(32 48 121 / 0.05);
}
.hx .text-secondary-900\/50 {
  color: rgb(32 48 121 / 0.5);
}
.hx .text-secondary-900\/55 {
  color: rgb(32 48 121 / 0.55);
}
.hx .text-secondary-900\/60 {
  color: rgb(32 48 121 / 0.6);
}
.hx .text-secondary-900\/65 {
  color: rgb(32 48 121 / 0.65);
}
.hx .text-secondary-900\/70 {
  color: rgb(32 48 121 / 0.7);
}
.hx .text-secondary-900\/75 {
  color: rgb(32 48 121 / 0.75);
}
.hx .text-secondary-900\/80 {
  color: rgb(32 48 121 / 0.8);
}
.hx .text-secondary-900\/85 {
  color: rgb(32 48 121 / 0.85);
}
.hx .text-secondary-900\/90 {
  color: rgb(32 48 121 / 0.9);
}
.hx .text-secondary-900\/95 {
  color: rgb(32 48 121 / 0.95);
}
.hx .text-secondary-950 {
  --tw-text-opacity: 1;
  color: rgb(23 32 79 / var(--tw-text-opacity, 1));
}
.hx .text-secondary-950\/0 {
  color: rgb(23 32 79 / 0);
}
.hx .text-secondary-950\/10 {
  color: rgb(23 32 79 / 0.1);
}
.hx .text-secondary-950\/100 {
  color: rgb(23 32 79 / 1);
}
.hx .text-secondary-950\/15 {
  color: rgb(23 32 79 / 0.15);
}
.hx .text-secondary-950\/20 {
  color: rgb(23 32 79 / 0.2);
}
.hx .text-secondary-950\/25 {
  color: rgb(23 32 79 / 0.25);
}
.hx .text-secondary-950\/30 {
  color: rgb(23 32 79 / 0.3);
}
.hx .text-secondary-950\/35 {
  color: rgb(23 32 79 / 0.35);
}
.hx .text-secondary-950\/40 {
  color: rgb(23 32 79 / 0.4);
}
.hx .text-secondary-950\/45 {
  color: rgb(23 32 79 / 0.45);
}
.hx .text-secondary-950\/5 {
  color: rgb(23 32 79 / 0.05);
}
.hx .text-secondary-950\/50 {
  color: rgb(23 32 79 / 0.5);
}
.hx .text-secondary-950\/55 {
  color: rgb(23 32 79 / 0.55);
}
.hx .text-secondary-950\/60 {
  color: rgb(23 32 79 / 0.6);
}
.hx .text-secondary-950\/65 {
  color: rgb(23 32 79 / 0.65);
}
.hx .text-secondary-950\/70 {
  color: rgb(23 32 79 / 0.7);
}
.hx .text-secondary-950\/75 {
  color: rgb(23 32 79 / 0.75);
}
.hx .text-secondary-950\/80 {
  color: rgb(23 32 79 / 0.8);
}
.hx .text-secondary-950\/85 {
  color: rgb(23 32 79 / 0.85);
}
.hx .text-secondary-950\/90 {
  color: rgb(23 32 79 / 0.9);
}
.hx .text-secondary-950\/95 {
  color: rgb(23 32 79 / 0.95);
}
.hx .text-secondary-content {
  --tw-text-opacity: 1;
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity, 1)));
}
.hx .text-secondary-content\/0 {
  color: var(--fallback-sc,oklch(var(--sc)/0));
}
.hx .text-secondary-content\/10 {
  color: var(--fallback-sc,oklch(var(--sc)/0.1));
}
.hx .text-secondary-content\/100 {
  color: var(--fallback-sc,oklch(var(--sc)/1));
}
.hx .text-secondary-content\/15 {
  color: var(--fallback-sc,oklch(var(--sc)/0.15));
}
.hx .text-secondary-content\/20 {
  color: var(--fallback-sc,oklch(var(--sc)/0.2));
}
.hx .text-secondary-content\/25 {
  color: var(--fallback-sc,oklch(var(--sc)/0.25));
}
.hx .text-secondary-content\/30 {
  color: var(--fallback-sc,oklch(var(--sc)/0.3));
}
.hx .text-secondary-content\/35 {
  color: var(--fallback-sc,oklch(var(--sc)/0.35));
}
.hx .text-secondary-content\/40 {
  color: var(--fallback-sc,oklch(var(--sc)/0.4));
}
.hx .text-secondary-content\/45 {
  color: var(--fallback-sc,oklch(var(--sc)/0.45));
}
.hx .text-secondary-content\/5 {
  color: var(--fallback-sc,oklch(var(--sc)/0.05));
}
.hx .text-secondary-content\/50 {
  color: var(--fallback-sc,oklch(var(--sc)/0.5));
}
.hx .text-secondary-content\/55 {
  color: var(--fallback-sc,oklch(var(--sc)/0.55));
}
.hx .text-secondary-content\/60 {
  color: var(--fallback-sc,oklch(var(--sc)/0.6));
}
.hx .text-secondary-content\/65 {
  color: var(--fallback-sc,oklch(var(--sc)/0.65));
}
.hx .text-secondary-content\/70 {
  color: var(--fallback-sc,oklch(var(--sc)/0.7));
}
.hx .text-secondary-content\/75 {
  color: var(--fallback-sc,oklch(var(--sc)/0.75));
}
.hx .text-secondary-content\/80 {
  color: var(--fallback-sc,oklch(var(--sc)/0.8));
}
.hx .text-secondary-content\/85 {
  color: var(--fallback-sc,oklch(var(--sc)/0.85));
}
.hx .text-secondary-content\/90 {
  color: var(--fallback-sc,oklch(var(--sc)/0.9));
}
.hx .text-secondary-content\/95 {
  color: var(--fallback-sc,oklch(var(--sc)/0.95));
}
.hx .text-secondary\/0 {
  color: rgb(32 48 121 / 0);
}
.hx .text-secondary\/10 {
  color: rgb(32 48 121 / 0.1);
}
.hx .text-secondary\/100 {
  color: rgb(32 48 121 / 1);
}
.hx .text-secondary\/15 {
  color: rgb(32 48 121 / 0.15);
}
.hx .text-secondary\/20 {
  color: rgb(32 48 121 / 0.2);
}
.hx .text-secondary\/25 {
  color: rgb(32 48 121 / 0.25);
}
.hx .text-secondary\/30 {
  color: rgb(32 48 121 / 0.3);
}
.hx .text-secondary\/35 {
  color: rgb(32 48 121 / 0.35);
}
.hx .text-secondary\/40 {
  color: rgb(32 48 121 / 0.4);
}
.hx .text-secondary\/45 {
  color: rgb(32 48 121 / 0.45);
}
.hx .text-secondary\/5 {
  color: rgb(32 48 121 / 0.05);
}
.hx .text-secondary\/50 {
  color: rgb(32 48 121 / 0.5);
}
.hx .text-secondary\/55 {
  color: rgb(32 48 121 / 0.55);
}
.hx .text-secondary\/60 {
  color: rgb(32 48 121 / 0.6);
}
.hx .text-secondary\/65 {
  color: rgb(32 48 121 / 0.65);
}
.hx .text-secondary\/70 {
  color: rgb(32 48 121 / 0.7);
}
.hx .text-secondary\/75 {
  color: rgb(32 48 121 / 0.75);
}
.hx .text-secondary\/80 {
  color: rgb(32 48 121 / 0.8);
}
.hx .text-secondary\/85 {
  color: rgb(32 48 121 / 0.85);
}
.hx .text-secondary\/90 {
  color: rgb(32 48 121 / 0.9);
}
.hx .text-secondary\/95 {
  color: rgb(32 48 121 / 0.95);
}
.hx .text-sky-100 {
  --tw-text-opacity: 1;
  color: rgb(224 242 254 / var(--tw-text-opacity, 1));
}
.hx .text-sky-100\/0 {
  color: rgb(224 242 254 / 0);
}
.hx .text-sky-100\/10 {
  color: rgb(224 242 254 / 0.1);
}
.hx .text-sky-100\/100 {
  color: rgb(224 242 254 / 1);
}
.hx .text-sky-100\/15 {
  color: rgb(224 242 254 / 0.15);
}
.hx .text-sky-100\/20 {
  color: rgb(224 242 254 / 0.2);
}
.hx .text-sky-100\/25 {
  color: rgb(224 242 254 / 0.25);
}
.hx .text-sky-100\/30 {
  color: rgb(224 242 254 / 0.3);
}
.hx .text-sky-100\/35 {
  color: rgb(224 242 254 / 0.35);
}
.hx .text-sky-100\/40 {
  color: rgb(224 242 254 / 0.4);
}
.hx .text-sky-100\/45 {
  color: rgb(224 242 254 / 0.45);
}
.hx .text-sky-100\/5 {
  color: rgb(224 242 254 / 0.05);
}
.hx .text-sky-100\/50 {
  color: rgb(224 242 254 / 0.5);
}
.hx .text-sky-100\/55 {
  color: rgb(224 242 254 / 0.55);
}
.hx .text-sky-100\/60 {
  color: rgb(224 242 254 / 0.6);
}
.hx .text-sky-100\/65 {
  color: rgb(224 242 254 / 0.65);
}
.hx .text-sky-100\/70 {
  color: rgb(224 242 254 / 0.7);
}
.hx .text-sky-100\/75 {
  color: rgb(224 242 254 / 0.75);
}
.hx .text-sky-100\/80 {
  color: rgb(224 242 254 / 0.8);
}
.hx .text-sky-100\/85 {
  color: rgb(224 242 254 / 0.85);
}
.hx .text-sky-100\/90 {
  color: rgb(224 242 254 / 0.9);
}
.hx .text-sky-100\/95 {
  color: rgb(224 242 254 / 0.95);
}
.hx .text-sky-200 {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}
.hx .text-sky-200\/0 {
  color: rgb(186 230 253 / 0);
}
.hx .text-sky-200\/10 {
  color: rgb(186 230 253 / 0.1);
}
.hx .text-sky-200\/100 {
  color: rgb(186 230 253 / 1);
}
.hx .text-sky-200\/15 {
  color: rgb(186 230 253 / 0.15);
}
.hx .text-sky-200\/20 {
  color: rgb(186 230 253 / 0.2);
}
.hx .text-sky-200\/25 {
  color: rgb(186 230 253 / 0.25);
}
.hx .text-sky-200\/30 {
  color: rgb(186 230 253 / 0.3);
}
.hx .text-sky-200\/35 {
  color: rgb(186 230 253 / 0.35);
}
.hx .text-sky-200\/40 {
  color: rgb(186 230 253 / 0.4);
}
.hx .text-sky-200\/45 {
  color: rgb(186 230 253 / 0.45);
}
.hx .text-sky-200\/5 {
  color: rgb(186 230 253 / 0.05);
}
.hx .text-sky-200\/50 {
  color: rgb(186 230 253 / 0.5);
}
.hx .text-sky-200\/55 {
  color: rgb(186 230 253 / 0.55);
}
.hx .text-sky-200\/60 {
  color: rgb(186 230 253 / 0.6);
}
.hx .text-sky-200\/65 {
  color: rgb(186 230 253 / 0.65);
}
.hx .text-sky-200\/70 {
  color: rgb(186 230 253 / 0.7);
}
.hx .text-sky-200\/75 {
  color: rgb(186 230 253 / 0.75);
}
.hx .text-sky-200\/80 {
  color: rgb(186 230 253 / 0.8);
}
.hx .text-sky-200\/85 {
  color: rgb(186 230 253 / 0.85);
}
.hx .text-sky-200\/90 {
  color: rgb(186 230 253 / 0.9);
}
.hx .text-sky-200\/95 {
  color: rgb(186 230 253 / 0.95);
}
.hx .text-sky-300 {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}
.hx .text-sky-300\/0 {
  color: rgb(125 211 252 / 0);
}
.hx .text-sky-300\/10 {
  color: rgb(125 211 252 / 0.1);
}
.hx .text-sky-300\/100 {
  color: rgb(125 211 252 / 1);
}
.hx .text-sky-300\/15 {
  color: rgb(125 211 252 / 0.15);
}
.hx .text-sky-300\/20 {
  color: rgb(125 211 252 / 0.2);
}
.hx .text-sky-300\/25 {
  color: rgb(125 211 252 / 0.25);
}
.hx .text-sky-300\/30 {
  color: rgb(125 211 252 / 0.3);
}
.hx .text-sky-300\/35 {
  color: rgb(125 211 252 / 0.35);
}
.hx .text-sky-300\/40 {
  color: rgb(125 211 252 / 0.4);
}
.hx .text-sky-300\/45 {
  color: rgb(125 211 252 / 0.45);
}
.hx .text-sky-300\/5 {
  color: rgb(125 211 252 / 0.05);
}
.hx .text-sky-300\/50 {
  color: rgb(125 211 252 / 0.5);
}
.hx .text-sky-300\/55 {
  color: rgb(125 211 252 / 0.55);
}
.hx .text-sky-300\/60 {
  color: rgb(125 211 252 / 0.6);
}
.hx .text-sky-300\/65 {
  color: rgb(125 211 252 / 0.65);
}
.hx .text-sky-300\/70 {
  color: rgb(125 211 252 / 0.7);
}
.hx .text-sky-300\/75 {
  color: rgb(125 211 252 / 0.75);
}
.hx .text-sky-300\/80 {
  color: rgb(125 211 252 / 0.8);
}
.hx .text-sky-300\/85 {
  color: rgb(125 211 252 / 0.85);
}
.hx .text-sky-300\/90 {
  color: rgb(125 211 252 / 0.9);
}
.hx .text-sky-300\/95 {
  color: rgb(125 211 252 / 0.95);
}
.hx .text-sky-400 {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.hx .text-sky-400\/0 {
  color: rgb(56 189 248 / 0);
}
.hx .text-sky-400\/10 {
  color: rgb(56 189 248 / 0.1);
}
.hx .text-sky-400\/100 {
  color: rgb(56 189 248 / 1);
}
.hx .text-sky-400\/15 {
  color: rgb(56 189 248 / 0.15);
}
.hx .text-sky-400\/20 {
  color: rgb(56 189 248 / 0.2);
}
.hx .text-sky-400\/25 {
  color: rgb(56 189 248 / 0.25);
}
.hx .text-sky-400\/30 {
  color: rgb(56 189 248 / 0.3);
}
.hx .text-sky-400\/35 {
  color: rgb(56 189 248 / 0.35);
}
.hx .text-sky-400\/40 {
  color: rgb(56 189 248 / 0.4);
}
.hx .text-sky-400\/45 {
  color: rgb(56 189 248 / 0.45);
}
.hx .text-sky-400\/5 {
  color: rgb(56 189 248 / 0.05);
}
.hx .text-sky-400\/50 {
  color: rgb(56 189 248 / 0.5);
}
.hx .text-sky-400\/55 {
  color: rgb(56 189 248 / 0.55);
}
.hx .text-sky-400\/60 {
  color: rgb(56 189 248 / 0.6);
}
.hx .text-sky-400\/65 {
  color: rgb(56 189 248 / 0.65);
}
.hx .text-sky-400\/70 {
  color: rgb(56 189 248 / 0.7);
}
.hx .text-sky-400\/75 {
  color: rgb(56 189 248 / 0.75);
}
.hx .text-sky-400\/80 {
  color: rgb(56 189 248 / 0.8);
}
.hx .text-sky-400\/85 {
  color: rgb(56 189 248 / 0.85);
}
.hx .text-sky-400\/90 {
  color: rgb(56 189 248 / 0.9);
}
.hx .text-sky-400\/95 {
  color: rgb(56 189 248 / 0.95);
}
.hx .text-sky-50 {
  --tw-text-opacity: 1;
  color: rgb(240 249 255 / var(--tw-text-opacity, 1));
}
.hx .text-sky-50\/0 {
  color: rgb(240 249 255 / 0);
}
.hx .text-sky-50\/10 {
  color: rgb(240 249 255 / 0.1);
}
.hx .text-sky-50\/100 {
  color: rgb(240 249 255 / 1);
}
.hx .text-sky-50\/15 {
  color: rgb(240 249 255 / 0.15);
}
.hx .text-sky-50\/20 {
  color: rgb(240 249 255 / 0.2);
}
.hx .text-sky-50\/25 {
  color: rgb(240 249 255 / 0.25);
}
.hx .text-sky-50\/30 {
  color: rgb(240 249 255 / 0.3);
}
.hx .text-sky-50\/35 {
  color: rgb(240 249 255 / 0.35);
}
.hx .text-sky-50\/40 {
  color: rgb(240 249 255 / 0.4);
}
.hx .text-sky-50\/45 {
  color: rgb(240 249 255 / 0.45);
}
.hx .text-sky-50\/5 {
  color: rgb(240 249 255 / 0.05);
}
.hx .text-sky-50\/50 {
  color: rgb(240 249 255 / 0.5);
}
.hx .text-sky-50\/55 {
  color: rgb(240 249 255 / 0.55);
}
.hx .text-sky-50\/60 {
  color: rgb(240 249 255 / 0.6);
}
.hx .text-sky-50\/65 {
  color: rgb(240 249 255 / 0.65);
}
.hx .text-sky-50\/70 {
  color: rgb(240 249 255 / 0.7);
}
.hx .text-sky-50\/75 {
  color: rgb(240 249 255 / 0.75);
}
.hx .text-sky-50\/80 {
  color: rgb(240 249 255 / 0.8);
}
.hx .text-sky-50\/85 {
  color: rgb(240 249 255 / 0.85);
}
.hx .text-sky-50\/90 {
  color: rgb(240 249 255 / 0.9);
}
.hx .text-sky-50\/95 {
  color: rgb(240 249 255 / 0.95);
}
.hx .text-sky-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.hx .text-sky-500\/0 {
  color: rgb(14 165 233 / 0);
}
.hx .text-sky-500\/10 {
  color: rgb(14 165 233 / 0.1);
}
.hx .text-sky-500\/100 {
  color: rgb(14 165 233 / 1);
}
.hx .text-sky-500\/15 {
  color: rgb(14 165 233 / 0.15);
}
.hx .text-sky-500\/20 {
  color: rgb(14 165 233 / 0.2);
}
.hx .text-sky-500\/25 {
  color: rgb(14 165 233 / 0.25);
}
.hx .text-sky-500\/30 {
  color: rgb(14 165 233 / 0.3);
}
.hx .text-sky-500\/35 {
  color: rgb(14 165 233 / 0.35);
}
.hx .text-sky-500\/40 {
  color: rgb(14 165 233 / 0.4);
}
.hx .text-sky-500\/45 {
  color: rgb(14 165 233 / 0.45);
}
.hx .text-sky-500\/5 {
  color: rgb(14 165 233 / 0.05);
}
.hx .text-sky-500\/50 {
  color: rgb(14 165 233 / 0.5);
}
.hx .text-sky-500\/55 {
  color: rgb(14 165 233 / 0.55);
}
.hx .text-sky-500\/60 {
  color: rgb(14 165 233 / 0.6);
}
.hx .text-sky-500\/65 {
  color: rgb(14 165 233 / 0.65);
}
.hx .text-sky-500\/70 {
  color: rgb(14 165 233 / 0.7);
}
.hx .text-sky-500\/75 {
  color: rgb(14 165 233 / 0.75);
}
.hx .text-sky-500\/80 {
  color: rgb(14 165 233 / 0.8);
}
.hx .text-sky-500\/85 {
  color: rgb(14 165 233 / 0.85);
}
.hx .text-sky-500\/90 {
  color: rgb(14 165 233 / 0.9);
}
.hx .text-sky-500\/95 {
  color: rgb(14 165 233 / 0.95);
}
.hx .text-sky-600 {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.hx .text-sky-600\/0 {
  color: rgb(2 132 199 / 0);
}
.hx .text-sky-600\/10 {
  color: rgb(2 132 199 / 0.1);
}
.hx .text-sky-600\/100 {
  color: rgb(2 132 199 / 1);
}
.hx .text-sky-600\/15 {
  color: rgb(2 132 199 / 0.15);
}
.hx .text-sky-600\/20 {
  color: rgb(2 132 199 / 0.2);
}
.hx .text-sky-600\/25 {
  color: rgb(2 132 199 / 0.25);
}
.hx .text-sky-600\/30 {
  color: rgb(2 132 199 / 0.3);
}
.hx .text-sky-600\/35 {
  color: rgb(2 132 199 / 0.35);
}
.hx .text-sky-600\/40 {
  color: rgb(2 132 199 / 0.4);
}
.hx .text-sky-600\/45 {
  color: rgb(2 132 199 / 0.45);
}
.hx .text-sky-600\/5 {
  color: rgb(2 132 199 / 0.05);
}
.hx .text-sky-600\/50 {
  color: rgb(2 132 199 / 0.5);
}
.hx .text-sky-600\/55 {
  color: rgb(2 132 199 / 0.55);
}
.hx .text-sky-600\/60 {
  color: rgb(2 132 199 / 0.6);
}
.hx .text-sky-600\/65 {
  color: rgb(2 132 199 / 0.65);
}
.hx .text-sky-600\/70 {
  color: rgb(2 132 199 / 0.7);
}
.hx .text-sky-600\/75 {
  color: rgb(2 132 199 / 0.75);
}
.hx .text-sky-600\/80 {
  color: rgb(2 132 199 / 0.8);
}
.hx .text-sky-600\/85 {
  color: rgb(2 132 199 / 0.85);
}
.hx .text-sky-600\/90 {
  color: rgb(2 132 199 / 0.9);
}
.hx .text-sky-600\/95 {
  color: rgb(2 132 199 / 0.95);
}
.hx .text-sky-700 {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.hx .text-sky-700\/0 {
  color: rgb(3 105 161 / 0);
}
.hx .text-sky-700\/10 {
  color: rgb(3 105 161 / 0.1);
}
.hx .text-sky-700\/100 {
  color: rgb(3 105 161 / 1);
}
.hx .text-sky-700\/15 {
  color: rgb(3 105 161 / 0.15);
}
.hx .text-sky-700\/20 {
  color: rgb(3 105 161 / 0.2);
}
.hx .text-sky-700\/25 {
  color: rgb(3 105 161 / 0.25);
}
.hx .text-sky-700\/30 {
  color: rgb(3 105 161 / 0.3);
}
.hx .text-sky-700\/35 {
  color: rgb(3 105 161 / 0.35);
}
.hx .text-sky-700\/40 {
  color: rgb(3 105 161 / 0.4);
}
.hx .text-sky-700\/45 {
  color: rgb(3 105 161 / 0.45);
}
.hx .text-sky-700\/5 {
  color: rgb(3 105 161 / 0.05);
}
.hx .text-sky-700\/50 {
  color: rgb(3 105 161 / 0.5);
}
.hx .text-sky-700\/55 {
  color: rgb(3 105 161 / 0.55);
}
.hx .text-sky-700\/60 {
  color: rgb(3 105 161 / 0.6);
}
.hx .text-sky-700\/65 {
  color: rgb(3 105 161 / 0.65);
}
.hx .text-sky-700\/70 {
  color: rgb(3 105 161 / 0.7);
}
.hx .text-sky-700\/75 {
  color: rgb(3 105 161 / 0.75);
}
.hx .text-sky-700\/80 {
  color: rgb(3 105 161 / 0.8);
}
.hx .text-sky-700\/85 {
  color: rgb(3 105 161 / 0.85);
}
.hx .text-sky-700\/90 {
  color: rgb(3 105 161 / 0.9);
}
.hx .text-sky-700\/95 {
  color: rgb(3 105 161 / 0.95);
}
.hx .text-sky-800 {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.hx .text-sky-800\/0 {
  color: rgb(7 89 133 / 0);
}
.hx .text-sky-800\/10 {
  color: rgb(7 89 133 / 0.1);
}
.hx .text-sky-800\/100 {
  color: rgb(7 89 133 / 1);
}
.hx .text-sky-800\/15 {
  color: rgb(7 89 133 / 0.15);
}
.hx .text-sky-800\/20 {
  color: rgb(7 89 133 / 0.2);
}
.hx .text-sky-800\/25 {
  color: rgb(7 89 133 / 0.25);
}
.hx .text-sky-800\/30 {
  color: rgb(7 89 133 / 0.3);
}
.hx .text-sky-800\/35 {
  color: rgb(7 89 133 / 0.35);
}
.hx .text-sky-800\/40 {
  color: rgb(7 89 133 / 0.4);
}
.hx .text-sky-800\/45 {
  color: rgb(7 89 133 / 0.45);
}
.hx .text-sky-800\/5 {
  color: rgb(7 89 133 / 0.05);
}
.hx .text-sky-800\/50 {
  color: rgb(7 89 133 / 0.5);
}
.hx .text-sky-800\/55 {
  color: rgb(7 89 133 / 0.55);
}
.hx .text-sky-800\/60 {
  color: rgb(7 89 133 / 0.6);
}
.hx .text-sky-800\/65 {
  color: rgb(7 89 133 / 0.65);
}
.hx .text-sky-800\/70 {
  color: rgb(7 89 133 / 0.7);
}
.hx .text-sky-800\/75 {
  color: rgb(7 89 133 / 0.75);
}
.hx .text-sky-800\/80 {
  color: rgb(7 89 133 / 0.8);
}
.hx .text-sky-800\/85 {
  color: rgb(7 89 133 / 0.85);
}
.hx .text-sky-800\/90 {
  color: rgb(7 89 133 / 0.9);
}
.hx .text-sky-800\/95 {
  color: rgb(7 89 133 / 0.95);
}
.hx .text-sky-900 {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}
.hx .text-sky-900\/0 {
  color: rgb(12 74 110 / 0);
}
.hx .text-sky-900\/10 {
  color: rgb(12 74 110 / 0.1);
}
.hx .text-sky-900\/100 {
  color: rgb(12 74 110 / 1);
}
.hx .text-sky-900\/15 {
  color: rgb(12 74 110 / 0.15);
}
.hx .text-sky-900\/20 {
  color: rgb(12 74 110 / 0.2);
}
.hx .text-sky-900\/25 {
  color: rgb(12 74 110 / 0.25);
}
.hx .text-sky-900\/30 {
  color: rgb(12 74 110 / 0.3);
}
.hx .text-sky-900\/35 {
  color: rgb(12 74 110 / 0.35);
}
.hx .text-sky-900\/40 {
  color: rgb(12 74 110 / 0.4);
}
.hx .text-sky-900\/45 {
  color: rgb(12 74 110 / 0.45);
}
.hx .text-sky-900\/5 {
  color: rgb(12 74 110 / 0.05);
}
.hx .text-sky-900\/50 {
  color: rgb(12 74 110 / 0.5);
}
.hx .text-sky-900\/55 {
  color: rgb(12 74 110 / 0.55);
}
.hx .text-sky-900\/60 {
  color: rgb(12 74 110 / 0.6);
}
.hx .text-sky-900\/65 {
  color: rgb(12 74 110 / 0.65);
}
.hx .text-sky-900\/70 {
  color: rgb(12 74 110 / 0.7);
}
.hx .text-sky-900\/75 {
  color: rgb(12 74 110 / 0.75);
}
.hx .text-sky-900\/80 {
  color: rgb(12 74 110 / 0.8);
}
.hx .text-sky-900\/85 {
  color: rgb(12 74 110 / 0.85);
}
.hx .text-sky-900\/90 {
  color: rgb(12 74 110 / 0.9);
}
.hx .text-sky-900\/95 {
  color: rgb(12 74 110 / 0.95);
}
.hx .text-sky-950 {
  --tw-text-opacity: 1;
  color: rgb(8 47 73 / var(--tw-text-opacity, 1));
}
.hx .text-sky-950\/0 {
  color: rgb(8 47 73 / 0);
}
.hx .text-sky-950\/10 {
  color: rgb(8 47 73 / 0.1);
}
.hx .text-sky-950\/100 {
  color: rgb(8 47 73 / 1);
}
.hx .text-sky-950\/15 {
  color: rgb(8 47 73 / 0.15);
}
.hx .text-sky-950\/20 {
  color: rgb(8 47 73 / 0.2);
}
.hx .text-sky-950\/25 {
  color: rgb(8 47 73 / 0.25);
}
.hx .text-sky-950\/30 {
  color: rgb(8 47 73 / 0.3);
}
.hx .text-sky-950\/35 {
  color: rgb(8 47 73 / 0.35);
}
.hx .text-sky-950\/40 {
  color: rgb(8 47 73 / 0.4);
}
.hx .text-sky-950\/45 {
  color: rgb(8 47 73 / 0.45);
}
.hx .text-sky-950\/5 {
  color: rgb(8 47 73 / 0.05);
}
.hx .text-sky-950\/50 {
  color: rgb(8 47 73 / 0.5);
}
.hx .text-sky-950\/55 {
  color: rgb(8 47 73 / 0.55);
}
.hx .text-sky-950\/60 {
  color: rgb(8 47 73 / 0.6);
}
.hx .text-sky-950\/65 {
  color: rgb(8 47 73 / 0.65);
}
.hx .text-sky-950\/70 {
  color: rgb(8 47 73 / 0.7);
}
.hx .text-sky-950\/75 {
  color: rgb(8 47 73 / 0.75);
}
.hx .text-sky-950\/80 {
  color: rgb(8 47 73 / 0.8);
}
.hx .text-sky-950\/85 {
  color: rgb(8 47 73 / 0.85);
}
.hx .text-sky-950\/90 {
  color: rgb(8 47 73 / 0.9);
}
.hx .text-sky-950\/95 {
  color: rgb(8 47 73 / 0.95);
}
.hx .text-slate-100 {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.hx .text-slate-100\/0 {
  color: rgb(241 245 249 / 0);
}
.hx .text-slate-100\/10 {
  color: rgb(241 245 249 / 0.1);
}
.hx .text-slate-100\/100 {
  color: rgb(241 245 249 / 1);
}
.hx .text-slate-100\/15 {
  color: rgb(241 245 249 / 0.15);
}
.hx .text-slate-100\/20 {
  color: rgb(241 245 249 / 0.2);
}
.hx .text-slate-100\/25 {
  color: rgb(241 245 249 / 0.25);
}
.hx .text-slate-100\/30 {
  color: rgb(241 245 249 / 0.3);
}
.hx .text-slate-100\/35 {
  color: rgb(241 245 249 / 0.35);
}
.hx .text-slate-100\/40 {
  color: rgb(241 245 249 / 0.4);
}
.hx .text-slate-100\/45 {
  color: rgb(241 245 249 / 0.45);
}
.hx .text-slate-100\/5 {
  color: rgb(241 245 249 / 0.05);
}
.hx .text-slate-100\/50 {
  color: rgb(241 245 249 / 0.5);
}
.hx .text-slate-100\/55 {
  color: rgb(241 245 249 / 0.55);
}
.hx .text-slate-100\/60 {
  color: rgb(241 245 249 / 0.6);
}
.hx .text-slate-100\/65 {
  color: rgb(241 245 249 / 0.65);
}
.hx .text-slate-100\/70 {
  color: rgb(241 245 249 / 0.7);
}
.hx .text-slate-100\/75 {
  color: rgb(241 245 249 / 0.75);
}
.hx .text-slate-100\/80 {
  color: rgb(241 245 249 / 0.8);
}
.hx .text-slate-100\/85 {
  color: rgb(241 245 249 / 0.85);
}
.hx .text-slate-100\/90 {
  color: rgb(241 245 249 / 0.9);
}
.hx .text-slate-100\/95 {
  color: rgb(241 245 249 / 0.95);
}
.hx .text-slate-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.hx .text-slate-200\/0 {
  color: rgb(226 232 240 / 0);
}
.hx .text-slate-200\/10 {
  color: rgb(226 232 240 / 0.1);
}
.hx .text-slate-200\/100 {
  color: rgb(226 232 240 / 1);
}
.hx .text-slate-200\/15 {
  color: rgb(226 232 240 / 0.15);
}
.hx .text-slate-200\/20 {
  color: rgb(226 232 240 / 0.2);
}
.hx .text-slate-200\/25 {
  color: rgb(226 232 240 / 0.25);
}
.hx .text-slate-200\/30 {
  color: rgb(226 232 240 / 0.3);
}
.hx .text-slate-200\/35 {
  color: rgb(226 232 240 / 0.35);
}
.hx .text-slate-200\/40 {
  color: rgb(226 232 240 / 0.4);
}
.hx .text-slate-200\/45 {
  color: rgb(226 232 240 / 0.45);
}
.hx .text-slate-200\/5 {
  color: rgb(226 232 240 / 0.05);
}
.hx .text-slate-200\/50 {
  color: rgb(226 232 240 / 0.5);
}
.hx .text-slate-200\/55 {
  color: rgb(226 232 240 / 0.55);
}
.hx .text-slate-200\/60 {
  color: rgb(226 232 240 / 0.6);
}
.hx .text-slate-200\/65 {
  color: rgb(226 232 240 / 0.65);
}
.hx .text-slate-200\/70 {
  color: rgb(226 232 240 / 0.7);
}
.hx .text-slate-200\/75 {
  color: rgb(226 232 240 / 0.75);
}
.hx .text-slate-200\/80 {
  color: rgb(226 232 240 / 0.8);
}
.hx .text-slate-200\/85 {
  color: rgb(226 232 240 / 0.85);
}
.hx .text-slate-200\/90 {
  color: rgb(226 232 240 / 0.9);
}
.hx .text-slate-200\/95 {
  color: rgb(226 232 240 / 0.95);
}
.hx .text-slate-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.hx .text-slate-300\/0 {
  color: rgb(203 213 225 / 0);
}
.hx .text-slate-300\/10 {
  color: rgb(203 213 225 / 0.1);
}
.hx .text-slate-300\/100 {
  color: rgb(203 213 225 / 1);
}
.hx .text-slate-300\/15 {
  color: rgb(203 213 225 / 0.15);
}
.hx .text-slate-300\/20 {
  color: rgb(203 213 225 / 0.2);
}
.hx .text-slate-300\/25 {
  color: rgb(203 213 225 / 0.25);
}
.hx .text-slate-300\/30 {
  color: rgb(203 213 225 / 0.3);
}
.hx .text-slate-300\/35 {
  color: rgb(203 213 225 / 0.35);
}
.hx .text-slate-300\/40 {
  color: rgb(203 213 225 / 0.4);
}
.hx .text-slate-300\/45 {
  color: rgb(203 213 225 / 0.45);
}
.hx .text-slate-300\/5 {
  color: rgb(203 213 225 / 0.05);
}
.hx .text-slate-300\/50 {
  color: rgb(203 213 225 / 0.5);
}
.hx .text-slate-300\/55 {
  color: rgb(203 213 225 / 0.55);
}
.hx .text-slate-300\/60 {
  color: rgb(203 213 225 / 0.6);
}
.hx .text-slate-300\/65 {
  color: rgb(203 213 225 / 0.65);
}
.hx .text-slate-300\/70 {
  color: rgb(203 213 225 / 0.7);
}
.hx .text-slate-300\/75 {
  color: rgb(203 213 225 / 0.75);
}
.hx .text-slate-300\/80 {
  color: rgb(203 213 225 / 0.8);
}
.hx .text-slate-300\/85 {
  color: rgb(203 213 225 / 0.85);
}
.hx .text-slate-300\/90 {
  color: rgb(203 213 225 / 0.9);
}
.hx .text-slate-300\/95 {
  color: rgb(203 213 225 / 0.95);
}
.hx .text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.hx .text-slate-400\/0 {
  color: rgb(148 163 184 / 0);
}
.hx .text-slate-400\/10 {
  color: rgb(148 163 184 / 0.1);
}
.hx .text-slate-400\/100 {
  color: rgb(148 163 184 / 1);
}
.hx .text-slate-400\/15 {
  color: rgb(148 163 184 / 0.15);
}
.hx .text-slate-400\/20 {
  color: rgb(148 163 184 / 0.2);
}
.hx .text-slate-400\/25 {
  color: rgb(148 163 184 / 0.25);
}
.hx .text-slate-400\/30 {
  color: rgb(148 163 184 / 0.3);
}
.hx .text-slate-400\/35 {
  color: rgb(148 163 184 / 0.35);
}
.hx .text-slate-400\/40 {
  color: rgb(148 163 184 / 0.4);
}
.hx .text-slate-400\/45 {
  color: rgb(148 163 184 / 0.45);
}
.hx .text-slate-400\/5 {
  color: rgb(148 163 184 / 0.05);
}
.hx .text-slate-400\/50 {
  color: rgb(148 163 184 / 0.5);
}
.hx .text-slate-400\/55 {
  color: rgb(148 163 184 / 0.55);
}
.hx .text-slate-400\/60 {
  color: rgb(148 163 184 / 0.6);
}
.hx .text-slate-400\/65 {
  color: rgb(148 163 184 / 0.65);
}
.hx .text-slate-400\/70 {
  color: rgb(148 163 184 / 0.7);
}
.hx .text-slate-400\/75 {
  color: rgb(148 163 184 / 0.75);
}
.hx .text-slate-400\/80 {
  color: rgb(148 163 184 / 0.8);
}
.hx .text-slate-400\/85 {
  color: rgb(148 163 184 / 0.85);
}
.hx .text-slate-400\/90 {
  color: rgb(148 163 184 / 0.9);
}
.hx .text-slate-400\/95 {
  color: rgb(148 163 184 / 0.95);
}
.hx .text-slate-50 {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}
.hx .text-slate-50\/0 {
  color: rgb(248 250 252 / 0);
}
.hx .text-slate-50\/10 {
  color: rgb(248 250 252 / 0.1);
}
.hx .text-slate-50\/100 {
  color: rgb(248 250 252 / 1);
}
.hx .text-slate-50\/15 {
  color: rgb(248 250 252 / 0.15);
}
.hx .text-slate-50\/20 {
  color: rgb(248 250 252 / 0.2);
}
.hx .text-slate-50\/25 {
  color: rgb(248 250 252 / 0.25);
}
.hx .text-slate-50\/30 {
  color: rgb(248 250 252 / 0.3);
}
.hx .text-slate-50\/35 {
  color: rgb(248 250 252 / 0.35);
}
.hx .text-slate-50\/40 {
  color: rgb(248 250 252 / 0.4);
}
.hx .text-slate-50\/45 {
  color: rgb(248 250 252 / 0.45);
}
.hx .text-slate-50\/5 {
  color: rgb(248 250 252 / 0.05);
}
.hx .text-slate-50\/50 {
  color: rgb(248 250 252 / 0.5);
}
.hx .text-slate-50\/55 {
  color: rgb(248 250 252 / 0.55);
}
.hx .text-slate-50\/60 {
  color: rgb(248 250 252 / 0.6);
}
.hx .text-slate-50\/65 {
  color: rgb(248 250 252 / 0.65);
}
.hx .text-slate-50\/70 {
  color: rgb(248 250 252 / 0.7);
}
.hx .text-slate-50\/75 {
  color: rgb(248 250 252 / 0.75);
}
.hx .text-slate-50\/80 {
  color: rgb(248 250 252 / 0.8);
}
.hx .text-slate-50\/85 {
  color: rgb(248 250 252 / 0.85);
}
.hx .text-slate-50\/90 {
  color: rgb(248 250 252 / 0.9);
}
.hx .text-slate-50\/95 {
  color: rgb(248 250 252 / 0.95);
}
.hx .text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.hx .text-slate-500\/0 {
  color: rgb(100 116 139 / 0);
}
.hx .text-slate-500\/10 {
  color: rgb(100 116 139 / 0.1);
}
.hx .text-slate-500\/100 {
  color: rgb(100 116 139 / 1);
}
.hx .text-slate-500\/15 {
  color: rgb(100 116 139 / 0.15);
}
.hx .text-slate-500\/20 {
  color: rgb(100 116 139 / 0.2);
}
.hx .text-slate-500\/25 {
  color: rgb(100 116 139 / 0.25);
}
.hx .text-slate-500\/30 {
  color: rgb(100 116 139 / 0.3);
}
.hx .text-slate-500\/35 {
  color: rgb(100 116 139 / 0.35);
}
.hx .text-slate-500\/40 {
  color: rgb(100 116 139 / 0.4);
}
.hx .text-slate-500\/45 {
  color: rgb(100 116 139 / 0.45);
}
.hx .text-slate-500\/5 {
  color: rgb(100 116 139 / 0.05);
}
.hx .text-slate-500\/50 {
  color: rgb(100 116 139 / 0.5);
}
.hx .text-slate-500\/55 {
  color: rgb(100 116 139 / 0.55);
}
.hx .text-slate-500\/60 {
  color: rgb(100 116 139 / 0.6);
}
.hx .text-slate-500\/65 {
  color: rgb(100 116 139 / 0.65);
}
.hx .text-slate-500\/70 {
  color: rgb(100 116 139 / 0.7);
}
.hx .text-slate-500\/75 {
  color: rgb(100 116 139 / 0.75);
}
.hx .text-slate-500\/80 {
  color: rgb(100 116 139 / 0.8);
}
.hx .text-slate-500\/85 {
  color: rgb(100 116 139 / 0.85);
}
.hx .text-slate-500\/90 {
  color: rgb(100 116 139 / 0.9);
}
.hx .text-slate-500\/95 {
  color: rgb(100 116 139 / 0.95);
}
.hx .text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.hx .text-slate-600\/0 {
  color: rgb(71 85 105 / 0);
}
.hx .text-slate-600\/10 {
  color: rgb(71 85 105 / 0.1);
}
.hx .text-slate-600\/100 {
  color: rgb(71 85 105 / 1);
}
.hx .text-slate-600\/15 {
  color: rgb(71 85 105 / 0.15);
}
.hx .text-slate-600\/20 {
  color: rgb(71 85 105 / 0.2);
}
.hx .text-slate-600\/25 {
  color: rgb(71 85 105 / 0.25);
}
.hx .text-slate-600\/30 {
  color: rgb(71 85 105 / 0.3);
}
.hx .text-slate-600\/35 {
  color: rgb(71 85 105 / 0.35);
}
.hx .text-slate-600\/40 {
  color: rgb(71 85 105 / 0.4);
}
.hx .text-slate-600\/45 {
  color: rgb(71 85 105 / 0.45);
}
.hx .text-slate-600\/5 {
  color: rgb(71 85 105 / 0.05);
}
.hx .text-slate-600\/50 {
  color: rgb(71 85 105 / 0.5);
}
.hx .text-slate-600\/55 {
  color: rgb(71 85 105 / 0.55);
}
.hx .text-slate-600\/60 {
  color: rgb(71 85 105 / 0.6);
}
.hx .text-slate-600\/65 {
  color: rgb(71 85 105 / 0.65);
}
.hx .text-slate-600\/70 {
  color: rgb(71 85 105 / 0.7);
}
.hx .text-slate-600\/75 {
  color: rgb(71 85 105 / 0.75);
}
.hx .text-slate-600\/80 {
  color: rgb(71 85 105 / 0.8);
}
.hx .text-slate-600\/85 {
  color: rgb(71 85 105 / 0.85);
}
.hx .text-slate-600\/90 {
  color: rgb(71 85 105 / 0.9);
}
.hx .text-slate-600\/95 {
  color: rgb(71 85 105 / 0.95);
}
.hx .text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.hx .text-slate-700\/0 {
  color: rgb(51 65 85 / 0);
}
.hx .text-slate-700\/10 {
  color: rgb(51 65 85 / 0.1);
}
.hx .text-slate-700\/100 {
  color: rgb(51 65 85 / 1);
}
.hx .text-slate-700\/15 {
  color: rgb(51 65 85 / 0.15);
}
.hx .text-slate-700\/20 {
  color: rgb(51 65 85 / 0.2);
}
.hx .text-slate-700\/25 {
  color: rgb(51 65 85 / 0.25);
}
.hx .text-slate-700\/30 {
  color: rgb(51 65 85 / 0.3);
}
.hx .text-slate-700\/35 {
  color: rgb(51 65 85 / 0.35);
}
.hx .text-slate-700\/40 {
  color: rgb(51 65 85 / 0.4);
}
.hx .text-slate-700\/45 {
  color: rgb(51 65 85 / 0.45);
}
.hx .text-slate-700\/5 {
  color: rgb(51 65 85 / 0.05);
}
.hx .text-slate-700\/50 {
  color: rgb(51 65 85 / 0.5);
}
.hx .text-slate-700\/55 {
  color: rgb(51 65 85 / 0.55);
}
.hx .text-slate-700\/60 {
  color: rgb(51 65 85 / 0.6);
}
.hx .text-slate-700\/65 {
  color: rgb(51 65 85 / 0.65);
}
.hx .text-slate-700\/70 {
  color: rgb(51 65 85 / 0.7);
}
.hx .text-slate-700\/75 {
  color: rgb(51 65 85 / 0.75);
}
.hx .text-slate-700\/80 {
  color: rgb(51 65 85 / 0.8);
}
.hx .text-slate-700\/85 {
  color: rgb(51 65 85 / 0.85);
}
.hx .text-slate-700\/90 {
  color: rgb(51 65 85 / 0.9);
}
.hx .text-slate-700\/95 {
  color: rgb(51 65 85 / 0.95);
}
.hx .text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.hx .text-slate-800\/0 {
  color: rgb(30 41 59 / 0);
}
.hx .text-slate-800\/10 {
  color: rgb(30 41 59 / 0.1);
}
.hx .text-slate-800\/100 {
  color: rgb(30 41 59 / 1);
}
.hx .text-slate-800\/15 {
  color: rgb(30 41 59 / 0.15);
}
.hx .text-slate-800\/20 {
  color: rgb(30 41 59 / 0.2);
}
.hx .text-slate-800\/25 {
  color: rgb(30 41 59 / 0.25);
}
.hx .text-slate-800\/30 {
  color: rgb(30 41 59 / 0.3);
}
.hx .text-slate-800\/35 {
  color: rgb(30 41 59 / 0.35);
}
.hx .text-slate-800\/40 {
  color: rgb(30 41 59 / 0.4);
}
.hx .text-slate-800\/45 {
  color: rgb(30 41 59 / 0.45);
}
.hx .text-slate-800\/5 {
  color: rgb(30 41 59 / 0.05);
}
.hx .text-slate-800\/50 {
  color: rgb(30 41 59 / 0.5);
}
.hx .text-slate-800\/55 {
  color: rgb(30 41 59 / 0.55);
}
.hx .text-slate-800\/60 {
  color: rgb(30 41 59 / 0.6);
}
.hx .text-slate-800\/65 {
  color: rgb(30 41 59 / 0.65);
}
.hx .text-slate-800\/70 {
  color: rgb(30 41 59 / 0.7);
}
.hx .text-slate-800\/75 {
  color: rgb(30 41 59 / 0.75);
}
.hx .text-slate-800\/80 {
  color: rgb(30 41 59 / 0.8);
}
.hx .text-slate-800\/85 {
  color: rgb(30 41 59 / 0.85);
}
.hx .text-slate-800\/90 {
  color: rgb(30 41 59 / 0.9);
}
.hx .text-slate-800\/95 {
  color: rgb(30 41 59 / 0.95);
}
.hx .text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.hx .text-slate-900\/0 {
  color: rgb(15 23 42 / 0);
}
.hx .text-slate-900\/10 {
  color: rgb(15 23 42 / 0.1);
}
.hx .text-slate-900\/100 {
  color: rgb(15 23 42 / 1);
}
.hx .text-slate-900\/15 {
  color: rgb(15 23 42 / 0.15);
}
.hx .text-slate-900\/20 {
  color: rgb(15 23 42 / 0.2);
}
.hx .text-slate-900\/25 {
  color: rgb(15 23 42 / 0.25);
}
.hx .text-slate-900\/30 {
  color: rgb(15 23 42 / 0.3);
}
.hx .text-slate-900\/35 {
  color: rgb(15 23 42 / 0.35);
}
.hx .text-slate-900\/40 {
  color: rgb(15 23 42 / 0.4);
}
.hx .text-slate-900\/45 {
  color: rgb(15 23 42 / 0.45);
}
.hx .text-slate-900\/5 {
  color: rgb(15 23 42 / 0.05);
}
.hx .text-slate-900\/50 {
  color: rgb(15 23 42 / 0.5);
}
.hx .text-slate-900\/55 {
  color: rgb(15 23 42 / 0.55);
}
.hx .text-slate-900\/60 {
  color: rgb(15 23 42 / 0.6);
}
.hx .text-slate-900\/65 {
  color: rgb(15 23 42 / 0.65);
}
.hx .text-slate-900\/70 {
  color: rgb(15 23 42 / 0.7);
}
.hx .text-slate-900\/75 {
  color: rgb(15 23 42 / 0.75);
}
.hx .text-slate-900\/80 {
  color: rgb(15 23 42 / 0.8);
}
.hx .text-slate-900\/85 {
  color: rgb(15 23 42 / 0.85);
}
.hx .text-slate-900\/90 {
  color: rgb(15 23 42 / 0.9);
}
.hx .text-slate-900\/95 {
  color: rgb(15 23 42 / 0.95);
}
.hx .text-slate-950 {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity, 1));
}
.hx .text-slate-950\/0 {
  color: rgb(2 6 23 / 0);
}
.hx .text-slate-950\/10 {
  color: rgb(2 6 23 / 0.1);
}
.hx .text-slate-950\/100 {
  color: rgb(2 6 23 / 1);
}
.hx .text-slate-950\/15 {
  color: rgb(2 6 23 / 0.15);
}
.hx .text-slate-950\/20 {
  color: rgb(2 6 23 / 0.2);
}
.hx .text-slate-950\/25 {
  color: rgb(2 6 23 / 0.25);
}
.hx .text-slate-950\/30 {
  color: rgb(2 6 23 / 0.3);
}
.hx .text-slate-950\/35 {
  color: rgb(2 6 23 / 0.35);
}
.hx .text-slate-950\/40 {
  color: rgb(2 6 23 / 0.4);
}
.hx .text-slate-950\/45 {
  color: rgb(2 6 23 / 0.45);
}
.hx .text-slate-950\/5 {
  color: rgb(2 6 23 / 0.05);
}
.hx .text-slate-950\/50 {
  color: rgb(2 6 23 / 0.5);
}
.hx .text-slate-950\/55 {
  color: rgb(2 6 23 / 0.55);
}
.hx .text-slate-950\/60 {
  color: rgb(2 6 23 / 0.6);
}
.hx .text-slate-950\/65 {
  color: rgb(2 6 23 / 0.65);
}
.hx .text-slate-950\/70 {
  color: rgb(2 6 23 / 0.7);
}
.hx .text-slate-950\/75 {
  color: rgb(2 6 23 / 0.75);
}
.hx .text-slate-950\/80 {
  color: rgb(2 6 23 / 0.8);
}
.hx .text-slate-950\/85 {
  color: rgb(2 6 23 / 0.85);
}
.hx .text-slate-950\/90 {
  color: rgb(2 6 23 / 0.9);
}
.hx .text-slate-950\/95 {
  color: rgb(2 6 23 / 0.95);
}
.hx .text-stone-100 {
  --tw-text-opacity: 1;
  color: rgb(245 245 244 / var(--tw-text-opacity, 1));
}
.hx .text-stone-100\/0 {
  color: rgb(245 245 244 / 0);
}
.hx .text-stone-100\/10 {
  color: rgb(245 245 244 / 0.1);
}
.hx .text-stone-100\/100 {
  color: rgb(245 245 244 / 1);
}
.hx .text-stone-100\/15 {
  color: rgb(245 245 244 / 0.15);
}
.hx .text-stone-100\/20 {
  color: rgb(245 245 244 / 0.2);
}
.hx .text-stone-100\/25 {
  color: rgb(245 245 244 / 0.25);
}
.hx .text-stone-100\/30 {
  color: rgb(245 245 244 / 0.3);
}
.hx .text-stone-100\/35 {
  color: rgb(245 245 244 / 0.35);
}
.hx .text-stone-100\/40 {
  color: rgb(245 245 244 / 0.4);
}
.hx .text-stone-100\/45 {
  color: rgb(245 245 244 / 0.45);
}
.hx .text-stone-100\/5 {
  color: rgb(245 245 244 / 0.05);
}
.hx .text-stone-100\/50 {
  color: rgb(245 245 244 / 0.5);
}
.hx .text-stone-100\/55 {
  color: rgb(245 245 244 / 0.55);
}
.hx .text-stone-100\/60 {
  color: rgb(245 245 244 / 0.6);
}
.hx .text-stone-100\/65 {
  color: rgb(245 245 244 / 0.65);
}
.hx .text-stone-100\/70 {
  color: rgb(245 245 244 / 0.7);
}
.hx .text-stone-100\/75 {
  color: rgb(245 245 244 / 0.75);
}
.hx .text-stone-100\/80 {
  color: rgb(245 245 244 / 0.8);
}
.hx .text-stone-100\/85 {
  color: rgb(245 245 244 / 0.85);
}
.hx .text-stone-100\/90 {
  color: rgb(245 245 244 / 0.9);
}
.hx .text-stone-100\/95 {
  color: rgb(245 245 244 / 0.95);
}
.hx .text-stone-200 {
  --tw-text-opacity: 1;
  color: rgb(231 229 228 / var(--tw-text-opacity, 1));
}
.hx .text-stone-200\/0 {
  color: rgb(231 229 228 / 0);
}
.hx .text-stone-200\/10 {
  color: rgb(231 229 228 / 0.1);
}
.hx .text-stone-200\/100 {
  color: rgb(231 229 228 / 1);
}
.hx .text-stone-200\/15 {
  color: rgb(231 229 228 / 0.15);
}
.hx .text-stone-200\/20 {
  color: rgb(231 229 228 / 0.2);
}
.hx .text-stone-200\/25 {
  color: rgb(231 229 228 / 0.25);
}
.hx .text-stone-200\/30 {
  color: rgb(231 229 228 / 0.3);
}
.hx .text-stone-200\/35 {
  color: rgb(231 229 228 / 0.35);
}
.hx .text-stone-200\/40 {
  color: rgb(231 229 228 / 0.4);
}
.hx .text-stone-200\/45 {
  color: rgb(231 229 228 / 0.45);
}
.hx .text-stone-200\/5 {
  color: rgb(231 229 228 / 0.05);
}
.hx .text-stone-200\/50 {
  color: rgb(231 229 228 / 0.5);
}
.hx .text-stone-200\/55 {
  color: rgb(231 229 228 / 0.55);
}
.hx .text-stone-200\/60 {
  color: rgb(231 229 228 / 0.6);
}
.hx .text-stone-200\/65 {
  color: rgb(231 229 228 / 0.65);
}
.hx .text-stone-200\/70 {
  color: rgb(231 229 228 / 0.7);
}
.hx .text-stone-200\/75 {
  color: rgb(231 229 228 / 0.75);
}
.hx .text-stone-200\/80 {
  color: rgb(231 229 228 / 0.8);
}
.hx .text-stone-200\/85 {
  color: rgb(231 229 228 / 0.85);
}
.hx .text-stone-200\/90 {
  color: rgb(231 229 228 / 0.9);
}
.hx .text-stone-200\/95 {
  color: rgb(231 229 228 / 0.95);
}
.hx .text-stone-300 {
  --tw-text-opacity: 1;
  color: rgb(214 211 209 / var(--tw-text-opacity, 1));
}
.hx .text-stone-300\/0 {
  color: rgb(214 211 209 / 0);
}
.hx .text-stone-300\/10 {
  color: rgb(214 211 209 / 0.1);
}
.hx .text-stone-300\/100 {
  color: rgb(214 211 209 / 1);
}
.hx .text-stone-300\/15 {
  color: rgb(214 211 209 / 0.15);
}
.hx .text-stone-300\/20 {
  color: rgb(214 211 209 / 0.2);
}
.hx .text-stone-300\/25 {
  color: rgb(214 211 209 / 0.25);
}
.hx .text-stone-300\/30 {
  color: rgb(214 211 209 / 0.3);
}
.hx .text-stone-300\/35 {
  color: rgb(214 211 209 / 0.35);
}
.hx .text-stone-300\/40 {
  color: rgb(214 211 209 / 0.4);
}
.hx .text-stone-300\/45 {
  color: rgb(214 211 209 / 0.45);
}
.hx .text-stone-300\/5 {
  color: rgb(214 211 209 / 0.05);
}
.hx .text-stone-300\/50 {
  color: rgb(214 211 209 / 0.5);
}
.hx .text-stone-300\/55 {
  color: rgb(214 211 209 / 0.55);
}
.hx .text-stone-300\/60 {
  color: rgb(214 211 209 / 0.6);
}
.hx .text-stone-300\/65 {
  color: rgb(214 211 209 / 0.65);
}
.hx .text-stone-300\/70 {
  color: rgb(214 211 209 / 0.7);
}
.hx .text-stone-300\/75 {
  color: rgb(214 211 209 / 0.75);
}
.hx .text-stone-300\/80 {
  color: rgb(214 211 209 / 0.8);
}
.hx .text-stone-300\/85 {
  color: rgb(214 211 209 / 0.85);
}
.hx .text-stone-300\/90 {
  color: rgb(214 211 209 / 0.9);
}
.hx .text-stone-300\/95 {
  color: rgb(214 211 209 / 0.95);
}
.hx .text-stone-400 {
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}
.hx .text-stone-400\/0 {
  color: rgb(168 162 158 / 0);
}
.hx .text-stone-400\/10 {
  color: rgb(168 162 158 / 0.1);
}
.hx .text-stone-400\/100 {
  color: rgb(168 162 158 / 1);
}
.hx .text-stone-400\/15 {
  color: rgb(168 162 158 / 0.15);
}
.hx .text-stone-400\/20 {
  color: rgb(168 162 158 / 0.2);
}
.hx .text-stone-400\/25 {
  color: rgb(168 162 158 / 0.25);
}
.hx .text-stone-400\/30 {
  color: rgb(168 162 158 / 0.3);
}
.hx .text-stone-400\/35 {
  color: rgb(168 162 158 / 0.35);
}
.hx .text-stone-400\/40 {
  color: rgb(168 162 158 / 0.4);
}
.hx .text-stone-400\/45 {
  color: rgb(168 162 158 / 0.45);
}
.hx .text-stone-400\/5 {
  color: rgb(168 162 158 / 0.05);
}
.hx .text-stone-400\/50 {
  color: rgb(168 162 158 / 0.5);
}
.hx .text-stone-400\/55 {
  color: rgb(168 162 158 / 0.55);
}
.hx .text-stone-400\/60 {
  color: rgb(168 162 158 / 0.6);
}
.hx .text-stone-400\/65 {
  color: rgb(168 162 158 / 0.65);
}
.hx .text-stone-400\/70 {
  color: rgb(168 162 158 / 0.7);
}
.hx .text-stone-400\/75 {
  color: rgb(168 162 158 / 0.75);
}
.hx .text-stone-400\/80 {
  color: rgb(168 162 158 / 0.8);
}
.hx .text-stone-400\/85 {
  color: rgb(168 162 158 / 0.85);
}
.hx .text-stone-400\/90 {
  color: rgb(168 162 158 / 0.9);
}
.hx .text-stone-400\/95 {
  color: rgb(168 162 158 / 0.95);
}
.hx .text-stone-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 249 / var(--tw-text-opacity, 1));
}
.hx .text-stone-50\/0 {
  color: rgb(250 250 249 / 0);
}
.hx .text-stone-50\/10 {
  color: rgb(250 250 249 / 0.1);
}
.hx .text-stone-50\/100 {
  color: rgb(250 250 249 / 1);
}
.hx .text-stone-50\/15 {
  color: rgb(250 250 249 / 0.15);
}
.hx .text-stone-50\/20 {
  color: rgb(250 250 249 / 0.2);
}
.hx .text-stone-50\/25 {
  color: rgb(250 250 249 / 0.25);
}
.hx .text-stone-50\/30 {
  color: rgb(250 250 249 / 0.3);
}
.hx .text-stone-50\/35 {
  color: rgb(250 250 249 / 0.35);
}
.hx .text-stone-50\/40 {
  color: rgb(250 250 249 / 0.4);
}
.hx .text-stone-50\/45 {
  color: rgb(250 250 249 / 0.45);
}
.hx .text-stone-50\/5 {
  color: rgb(250 250 249 / 0.05);
}
.hx .text-stone-50\/50 {
  color: rgb(250 250 249 / 0.5);
}
.hx .text-stone-50\/55 {
  color: rgb(250 250 249 / 0.55);
}
.hx .text-stone-50\/60 {
  color: rgb(250 250 249 / 0.6);
}
.hx .text-stone-50\/65 {
  color: rgb(250 250 249 / 0.65);
}
.hx .text-stone-50\/70 {
  color: rgb(250 250 249 / 0.7);
}
.hx .text-stone-50\/75 {
  color: rgb(250 250 249 / 0.75);
}
.hx .text-stone-50\/80 {
  color: rgb(250 250 249 / 0.8);
}
.hx .text-stone-50\/85 {
  color: rgb(250 250 249 / 0.85);
}
.hx .text-stone-50\/90 {
  color: rgb(250 250 249 / 0.9);
}
.hx .text-stone-50\/95 {
  color: rgb(250 250 249 / 0.95);
}
.hx .text-stone-500 {
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}
.hx .text-stone-500\/0 {
  color: rgb(120 113 108 / 0);
}
.hx .text-stone-500\/10 {
  color: rgb(120 113 108 / 0.1);
}
.hx .text-stone-500\/100 {
  color: rgb(120 113 108 / 1);
}
.hx .text-stone-500\/15 {
  color: rgb(120 113 108 / 0.15);
}
.hx .text-stone-500\/20 {
  color: rgb(120 113 108 / 0.2);
}
.hx .text-stone-500\/25 {
  color: rgb(120 113 108 / 0.25);
}
.hx .text-stone-500\/30 {
  color: rgb(120 113 108 / 0.3);
}
.hx .text-stone-500\/35 {
  color: rgb(120 113 108 / 0.35);
}
.hx .text-stone-500\/40 {
  color: rgb(120 113 108 / 0.4);
}
.hx .text-stone-500\/45 {
  color: rgb(120 113 108 / 0.45);
}
.hx .text-stone-500\/5 {
  color: rgb(120 113 108 / 0.05);
}
.hx .text-stone-500\/50 {
  color: rgb(120 113 108 / 0.5);
}
.hx .text-stone-500\/55 {
  color: rgb(120 113 108 / 0.55);
}
.hx .text-stone-500\/60 {
  color: rgb(120 113 108 / 0.6);
}
.hx .text-stone-500\/65 {
  color: rgb(120 113 108 / 0.65);
}
.hx .text-stone-500\/70 {
  color: rgb(120 113 108 / 0.7);
}
.hx .text-stone-500\/75 {
  color: rgb(120 113 108 / 0.75);
}
.hx .text-stone-500\/80 {
  color: rgb(120 113 108 / 0.8);
}
.hx .text-stone-500\/85 {
  color: rgb(120 113 108 / 0.85);
}
.hx .text-stone-500\/90 {
  color: rgb(120 113 108 / 0.9);
}
.hx .text-stone-500\/95 {
  color: rgb(120 113 108 / 0.95);
}
.hx .text-stone-600 {
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}
.hx .text-stone-600\/0 {
  color: rgb(87 83 78 / 0);
}
.hx .text-stone-600\/10 {
  color: rgb(87 83 78 / 0.1);
}
.hx .text-stone-600\/100 {
  color: rgb(87 83 78 / 1);
}
.hx .text-stone-600\/15 {
  color: rgb(87 83 78 / 0.15);
}
.hx .text-stone-600\/20 {
  color: rgb(87 83 78 / 0.2);
}
.hx .text-stone-600\/25 {
  color: rgb(87 83 78 / 0.25);
}
.hx .text-stone-600\/30 {
  color: rgb(87 83 78 / 0.3);
}
.hx .text-stone-600\/35 {
  color: rgb(87 83 78 / 0.35);
}
.hx .text-stone-600\/40 {
  color: rgb(87 83 78 / 0.4);
}
.hx .text-stone-600\/45 {
  color: rgb(87 83 78 / 0.45);
}
.hx .text-stone-600\/5 {
  color: rgb(87 83 78 / 0.05);
}
.hx .text-stone-600\/50 {
  color: rgb(87 83 78 / 0.5);
}
.hx .text-stone-600\/55 {
  color: rgb(87 83 78 / 0.55);
}
.hx .text-stone-600\/60 {
  color: rgb(87 83 78 / 0.6);
}
.hx .text-stone-600\/65 {
  color: rgb(87 83 78 / 0.65);
}
.hx .text-stone-600\/70 {
  color: rgb(87 83 78 / 0.7);
}
.hx .text-stone-600\/75 {
  color: rgb(87 83 78 / 0.75);
}
.hx .text-stone-600\/80 {
  color: rgb(87 83 78 / 0.8);
}
.hx .text-stone-600\/85 {
  color: rgb(87 83 78 / 0.85);
}
.hx .text-stone-600\/90 {
  color: rgb(87 83 78 / 0.9);
}
.hx .text-stone-600\/95 {
  color: rgb(87 83 78 / 0.95);
}
.hx .text-stone-700 {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}
.hx .text-stone-700\/0 {
  color: rgb(68 64 60 / 0);
}
.hx .text-stone-700\/10 {
  color: rgb(68 64 60 / 0.1);
}
.hx .text-stone-700\/100 {
  color: rgb(68 64 60 / 1);
}
.hx .text-stone-700\/15 {
  color: rgb(68 64 60 / 0.15);
}
.hx .text-stone-700\/20 {
  color: rgb(68 64 60 / 0.2);
}
.hx .text-stone-700\/25 {
  color: rgb(68 64 60 / 0.25);
}
.hx .text-stone-700\/30 {
  color: rgb(68 64 60 / 0.3);
}
.hx .text-stone-700\/35 {
  color: rgb(68 64 60 / 0.35);
}
.hx .text-stone-700\/40 {
  color: rgb(68 64 60 / 0.4);
}
.hx .text-stone-700\/45 {
  color: rgb(68 64 60 / 0.45);
}
.hx .text-stone-700\/5 {
  color: rgb(68 64 60 / 0.05);
}
.hx .text-stone-700\/50 {
  color: rgb(68 64 60 / 0.5);
}
.hx .text-stone-700\/55 {
  color: rgb(68 64 60 / 0.55);
}
.hx .text-stone-700\/60 {
  color: rgb(68 64 60 / 0.6);
}
.hx .text-stone-700\/65 {
  color: rgb(68 64 60 / 0.65);
}
.hx .text-stone-700\/70 {
  color: rgb(68 64 60 / 0.7);
}
.hx .text-stone-700\/75 {
  color: rgb(68 64 60 / 0.75);
}
.hx .text-stone-700\/80 {
  color: rgb(68 64 60 / 0.8);
}
.hx .text-stone-700\/85 {
  color: rgb(68 64 60 / 0.85);
}
.hx .text-stone-700\/90 {
  color: rgb(68 64 60 / 0.9);
}
.hx .text-stone-700\/95 {
  color: rgb(68 64 60 / 0.95);
}
.hx .text-stone-800 {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}
.hx .text-stone-800\/0 {
  color: rgb(41 37 36 / 0);
}
.hx .text-stone-800\/10 {
  color: rgb(41 37 36 / 0.1);
}
.hx .text-stone-800\/100 {
  color: rgb(41 37 36 / 1);
}
.hx .text-stone-800\/15 {
  color: rgb(41 37 36 / 0.15);
}
.hx .text-stone-800\/20 {
  color: rgb(41 37 36 / 0.2);
}
.hx .text-stone-800\/25 {
  color: rgb(41 37 36 / 0.25);
}
.hx .text-stone-800\/30 {
  color: rgb(41 37 36 / 0.3);
}
.hx .text-stone-800\/35 {
  color: rgb(41 37 36 / 0.35);
}
.hx .text-stone-800\/40 {
  color: rgb(41 37 36 / 0.4);
}
.hx .text-stone-800\/45 {
  color: rgb(41 37 36 / 0.45);
}
.hx .text-stone-800\/5 {
  color: rgb(41 37 36 / 0.05);
}
.hx .text-stone-800\/50 {
  color: rgb(41 37 36 / 0.5);
}
.hx .text-stone-800\/55 {
  color: rgb(41 37 36 / 0.55);
}
.hx .text-stone-800\/60 {
  color: rgb(41 37 36 / 0.6);
}
.hx .text-stone-800\/65 {
  color: rgb(41 37 36 / 0.65);
}
.hx .text-stone-800\/70 {
  color: rgb(41 37 36 / 0.7);
}
.hx .text-stone-800\/75 {
  color: rgb(41 37 36 / 0.75);
}
.hx .text-stone-800\/80 {
  color: rgb(41 37 36 / 0.8);
}
.hx .text-stone-800\/85 {
  color: rgb(41 37 36 / 0.85);
}
.hx .text-stone-800\/90 {
  color: rgb(41 37 36 / 0.9);
}
.hx .text-stone-800\/95 {
  color: rgb(41 37 36 / 0.95);
}
.hx .text-stone-900 {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}
.hx .text-stone-900\/0 {
  color: rgb(28 25 23 / 0);
}
.hx .text-stone-900\/10 {
  color: rgb(28 25 23 / 0.1);
}
.hx .text-stone-900\/100 {
  color: rgb(28 25 23 / 1);
}
.hx .text-stone-900\/15 {
  color: rgb(28 25 23 / 0.15);
}
.hx .text-stone-900\/20 {
  color: rgb(28 25 23 / 0.2);
}
.hx .text-stone-900\/25 {
  color: rgb(28 25 23 / 0.25);
}
.hx .text-stone-900\/30 {
  color: rgb(28 25 23 / 0.3);
}
.hx .text-stone-900\/35 {
  color: rgb(28 25 23 / 0.35);
}
.hx .text-stone-900\/40 {
  color: rgb(28 25 23 / 0.4);
}
.hx .text-stone-900\/45 {
  color: rgb(28 25 23 / 0.45);
}
.hx .text-stone-900\/5 {
  color: rgb(28 25 23 / 0.05);
}
.hx .text-stone-900\/50 {
  color: rgb(28 25 23 / 0.5);
}
.hx .text-stone-900\/55 {
  color: rgb(28 25 23 / 0.55);
}
.hx .text-stone-900\/60 {
  color: rgb(28 25 23 / 0.6);
}
.hx .text-stone-900\/65 {
  color: rgb(28 25 23 / 0.65);
}
.hx .text-stone-900\/70 {
  color: rgb(28 25 23 / 0.7);
}
.hx .text-stone-900\/75 {
  color: rgb(28 25 23 / 0.75);
}
.hx .text-stone-900\/80 {
  color: rgb(28 25 23 / 0.8);
}
.hx .text-stone-900\/85 {
  color: rgb(28 25 23 / 0.85);
}
.hx .text-stone-900\/90 {
  color: rgb(28 25 23 / 0.9);
}
.hx .text-stone-900\/95 {
  color: rgb(28 25 23 / 0.95);
}
.hx .text-stone-950 {
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity, 1));
}
.hx .text-stone-950\/0 {
  color: rgb(12 10 9 / 0);
}
.hx .text-stone-950\/10 {
  color: rgb(12 10 9 / 0.1);
}
.hx .text-stone-950\/100 {
  color: rgb(12 10 9 / 1);
}
.hx .text-stone-950\/15 {
  color: rgb(12 10 9 / 0.15);
}
.hx .text-stone-950\/20 {
  color: rgb(12 10 9 / 0.2);
}
.hx .text-stone-950\/25 {
  color: rgb(12 10 9 / 0.25);
}
.hx .text-stone-950\/30 {
  color: rgb(12 10 9 / 0.3);
}
.hx .text-stone-950\/35 {
  color: rgb(12 10 9 / 0.35);
}
.hx .text-stone-950\/40 {
  color: rgb(12 10 9 / 0.4);
}
.hx .text-stone-950\/45 {
  color: rgb(12 10 9 / 0.45);
}
.hx .text-stone-950\/5 {
  color: rgb(12 10 9 / 0.05);
}
.hx .text-stone-950\/50 {
  color: rgb(12 10 9 / 0.5);
}
.hx .text-stone-950\/55 {
  color: rgb(12 10 9 / 0.55);
}
.hx .text-stone-950\/60 {
  color: rgb(12 10 9 / 0.6);
}
.hx .text-stone-950\/65 {
  color: rgb(12 10 9 / 0.65);
}
.hx .text-stone-950\/70 {
  color: rgb(12 10 9 / 0.7);
}
.hx .text-stone-950\/75 {
  color: rgb(12 10 9 / 0.75);
}
.hx .text-stone-950\/80 {
  color: rgb(12 10 9 / 0.8);
}
.hx .text-stone-950\/85 {
  color: rgb(12 10 9 / 0.85);
}
.hx .text-stone-950\/90 {
  color: rgb(12 10 9 / 0.9);
}
.hx .text-stone-950\/95 {
  color: rgb(12 10 9 / 0.95);
}
.hx .text-success {
  --tw-text-opacity: 1;
  color: rgb(51 202 127 / var(--tw-text-opacity, 1));
}
.hx .text-success-100 {
  --tw-text-opacity: 1;
  color: rgb(210 249 224 / var(--tw-text-opacity, 1));
}
.hx .text-success-100\/0 {
  color: rgb(210 249 224 / 0);
}
.hx .text-success-100\/10 {
  color: rgb(210 249 224 / 0.1);
}
.hx .text-success-100\/100 {
  color: rgb(210 249 224 / 1);
}
.hx .text-success-100\/15 {
  color: rgb(210 249 224 / 0.15);
}
.hx .text-success-100\/20 {
  color: rgb(210 249 224 / 0.2);
}
.hx .text-success-100\/25 {
  color: rgb(210 249 224 / 0.25);
}
.hx .text-success-100\/30 {
  color: rgb(210 249 224 / 0.3);
}
.hx .text-success-100\/35 {
  color: rgb(210 249 224 / 0.35);
}
.hx .text-success-100\/40 {
  color: rgb(210 249 224 / 0.4);
}
.hx .text-success-100\/45 {
  color: rgb(210 249 224 / 0.45);
}
.hx .text-success-100\/5 {
  color: rgb(210 249 224 / 0.05);
}
.hx .text-success-100\/50 {
  color: rgb(210 249 224 / 0.5);
}
.hx .text-success-100\/55 {
  color: rgb(210 249 224 / 0.55);
}
.hx .text-success-100\/60 {
  color: rgb(210 249 224 / 0.6);
}
.hx .text-success-100\/65 {
  color: rgb(210 249 224 / 0.65);
}
.hx .text-success-100\/70 {
  color: rgb(210 249 224 / 0.7);
}
.hx .text-success-100\/75 {
  color: rgb(210 249 224 / 0.75);
}
.hx .text-success-100\/80 {
  color: rgb(210 249 224 / 0.8);
}
.hx .text-success-100\/85 {
  color: rgb(210 249 224 / 0.85);
}
.hx .text-success-100\/90 {
  color: rgb(210 249 224 / 0.9);
}
.hx .text-success-100\/95 {
  color: rgb(210 249 224 / 0.95);
}
.hx .text-success-200 {
  --tw-text-opacity: 1;
  color: rgb(170 240 199 / var(--tw-text-opacity, 1));
}
.hx .text-success-200\/0 {
  color: rgb(170 240 199 / 0);
}
.hx .text-success-200\/10 {
  color: rgb(170 240 199 / 0.1);
}
.hx .text-success-200\/100 {
  color: rgb(170 240 199 / 1);
}
.hx .text-success-200\/15 {
  color: rgb(170 240 199 / 0.15);
}
.hx .text-success-200\/20 {
  color: rgb(170 240 199 / 0.2);
}
.hx .text-success-200\/25 {
  color: rgb(170 240 199 / 0.25);
}
.hx .text-success-200\/30 {
  color: rgb(170 240 199 / 0.3);
}
.hx .text-success-200\/35 {
  color: rgb(170 240 199 / 0.35);
}
.hx .text-success-200\/40 {
  color: rgb(170 240 199 / 0.4);
}
.hx .text-success-200\/45 {
  color: rgb(170 240 199 / 0.45);
}
.hx .text-success-200\/5 {
  color: rgb(170 240 199 / 0.05);
}
.hx .text-success-200\/50 {
  color: rgb(170 240 199 / 0.5);
}
.hx .text-success-200\/55 {
  color: rgb(170 240 199 / 0.55);
}
.hx .text-success-200\/60 {
  color: rgb(170 240 199 / 0.6);
}
.hx .text-success-200\/65 {
  color: rgb(170 240 199 / 0.65);
}
.hx .text-success-200\/70 {
  color: rgb(170 240 199 / 0.7);
}
.hx .text-success-200\/75 {
  color: rgb(170 240 199 / 0.75);
}
.hx .text-success-200\/80 {
  color: rgb(170 240 199 / 0.8);
}
.hx .text-success-200\/85 {
  color: rgb(170 240 199 / 0.85);
}
.hx .text-success-200\/90 {
  color: rgb(170 240 199 / 0.9);
}
.hx .text-success-200\/95 {
  color: rgb(170 240 199 / 0.95);
}
.hx .text-success-300 {
  --tw-text-opacity: 1;
  color: rgb(114 227 167 / var(--tw-text-opacity, 1));
}
.hx .text-success-300\/0 {
  color: rgb(114 227 167 / 0);
}
.hx .text-success-300\/10 {
  color: rgb(114 227 167 / 0.1);
}
.hx .text-success-300\/100 {
  color: rgb(114 227 167 / 1);
}
.hx .text-success-300\/15 {
  color: rgb(114 227 167 / 0.15);
}
.hx .text-success-300\/20 {
  color: rgb(114 227 167 / 0.2);
}
.hx .text-success-300\/25 {
  color: rgb(114 227 167 / 0.25);
}
.hx .text-success-300\/30 {
  color: rgb(114 227 167 / 0.3);
}
.hx .text-success-300\/35 {
  color: rgb(114 227 167 / 0.35);
}
.hx .text-success-300\/40 {
  color: rgb(114 227 167 / 0.4);
}
.hx .text-success-300\/45 {
  color: rgb(114 227 167 / 0.45);
}
.hx .text-success-300\/5 {
  color: rgb(114 227 167 / 0.05);
}
.hx .text-success-300\/50 {
  color: rgb(114 227 167 / 0.5);
}
.hx .text-success-300\/55 {
  color: rgb(114 227 167 / 0.55);
}
.hx .text-success-300\/60 {
  color: rgb(114 227 167 / 0.6);
}
.hx .text-success-300\/65 {
  color: rgb(114 227 167 / 0.65);
}
.hx .text-success-300\/70 {
  color: rgb(114 227 167 / 0.7);
}
.hx .text-success-300\/75 {
  color: rgb(114 227 167 / 0.75);
}
.hx .text-success-300\/80 {
  color: rgb(114 227 167 / 0.8);
}
.hx .text-success-300\/85 {
  color: rgb(114 227 167 / 0.85);
}
.hx .text-success-300\/90 {
  color: rgb(114 227 167 / 0.9);
}
.hx .text-success-300\/95 {
  color: rgb(114 227 167 / 0.95);
}
.hx .text-success-400 {
  --tw-text-opacity: 1;
  color: rgb(51 202 127 / var(--tw-text-opacity, 1));
}
.hx .text-success-400\/0 {
  color: rgb(51 202 127 / 0);
}
.hx .text-success-400\/10 {
  color: rgb(51 202 127 / 0.1);
}
.hx .text-success-400\/100 {
  color: rgb(51 202 127 / 1);
}
.hx .text-success-400\/15 {
  color: rgb(51 202 127 / 0.15);
}
.hx .text-success-400\/20 {
  color: rgb(51 202 127 / 0.2);
}
.hx .text-success-400\/25 {
  color: rgb(51 202 127 / 0.25);
}
.hx .text-success-400\/30 {
  color: rgb(51 202 127 / 0.3);
}
.hx .text-success-400\/35 {
  color: rgb(51 202 127 / 0.35);
}
.hx .text-success-400\/40 {
  color: rgb(51 202 127 / 0.4);
}
.hx .text-success-400\/45 {
  color: rgb(51 202 127 / 0.45);
}
.hx .text-success-400\/5 {
  color: rgb(51 202 127 / 0.05);
}
.hx .text-success-400\/50 {
  color: rgb(51 202 127 / 0.5);
}
.hx .text-success-400\/55 {
  color: rgb(51 202 127 / 0.55);
}
.hx .text-success-400\/60 {
  color: rgb(51 202 127 / 0.6);
}
.hx .text-success-400\/65 {
  color: rgb(51 202 127 / 0.65);
}
.hx .text-success-400\/70 {
  color: rgb(51 202 127 / 0.7);
}
.hx .text-success-400\/75 {
  color: rgb(51 202 127 / 0.75);
}
.hx .text-success-400\/80 {
  color: rgb(51 202 127 / 0.8);
}
.hx .text-success-400\/85 {
  color: rgb(51 202 127 / 0.85);
}
.hx .text-success-400\/90 {
  color: rgb(51 202 127 / 0.9);
}
.hx .text-success-400\/95 {
  color: rgb(51 202 127 / 0.95);
}
.hx .text-success-50 {
  --tw-text-opacity: 1;
  color: rgb(237 252 243 / var(--tw-text-opacity, 1));
}
.hx .text-success-50\/0 {
  color: rgb(237 252 243 / 0);
}
.hx .text-success-50\/10 {
  color: rgb(237 252 243 / 0.1);
}
.hx .text-success-50\/100 {
  color: rgb(237 252 243 / 1);
}
.hx .text-success-50\/15 {
  color: rgb(237 252 243 / 0.15);
}
.hx .text-success-50\/20 {
  color: rgb(237 252 243 / 0.2);
}
.hx .text-success-50\/25 {
  color: rgb(237 252 243 / 0.25);
}
.hx .text-success-50\/30 {
  color: rgb(237 252 243 / 0.3);
}
.hx .text-success-50\/35 {
  color: rgb(237 252 243 / 0.35);
}
.hx .text-success-50\/40 {
  color: rgb(237 252 243 / 0.4);
}
.hx .text-success-50\/45 {
  color: rgb(237 252 243 / 0.45);
}
.hx .text-success-50\/5 {
  color: rgb(237 252 243 / 0.05);
}
.hx .text-success-50\/50 {
  color: rgb(237 252 243 / 0.5);
}
.hx .text-success-50\/55 {
  color: rgb(237 252 243 / 0.55);
}
.hx .text-success-50\/60 {
  color: rgb(237 252 243 / 0.6);
}
.hx .text-success-50\/65 {
  color: rgb(237 252 243 / 0.65);
}
.hx .text-success-50\/70 {
  color: rgb(237 252 243 / 0.7);
}
.hx .text-success-50\/75 {
  color: rgb(237 252 243 / 0.75);
}
.hx .text-success-50\/80 {
  color: rgb(237 252 243 / 0.8);
}
.hx .text-success-50\/85 {
  color: rgb(237 252 243 / 0.85);
}
.hx .text-success-50\/90 {
  color: rgb(237 252 243 / 0.9);
}
.hx .text-success-50\/95 {
  color: rgb(237 252 243 / 0.95);
}
.hx .text-success-500 {
  --tw-text-opacity: 1;
  color: rgb(22 179 106 / var(--tw-text-opacity, 1));
}
.hx .text-success-500\/0 {
  color: rgb(22 179 106 / 0);
}
.hx .text-success-500\/10 {
  color: rgb(22 179 106 / 0.1);
}
.hx .text-success-500\/100 {
  color: rgb(22 179 106 / 1);
}
.hx .text-success-500\/15 {
  color: rgb(22 179 106 / 0.15);
}
.hx .text-success-500\/20 {
  color: rgb(22 179 106 / 0.2);
}
.hx .text-success-500\/25 {
  color: rgb(22 179 106 / 0.25);
}
.hx .text-success-500\/30 {
  color: rgb(22 179 106 / 0.3);
}
.hx .text-success-500\/35 {
  color: rgb(22 179 106 / 0.35);
}
.hx .text-success-500\/40 {
  color: rgb(22 179 106 / 0.4);
}
.hx .text-success-500\/45 {
  color: rgb(22 179 106 / 0.45);
}
.hx .text-success-500\/5 {
  color: rgb(22 179 106 / 0.05);
}
.hx .text-success-500\/50 {
  color: rgb(22 179 106 / 0.5);
}
.hx .text-success-500\/55 {
  color: rgb(22 179 106 / 0.55);
}
.hx .text-success-500\/60 {
  color: rgb(22 179 106 / 0.6);
}
.hx .text-success-500\/65 {
  color: rgb(22 179 106 / 0.65);
}
.hx .text-success-500\/70 {
  color: rgb(22 179 106 / 0.7);
}
.hx .text-success-500\/75 {
  color: rgb(22 179 106 / 0.75);
}
.hx .text-success-500\/80 {
  color: rgb(22 179 106 / 0.8);
}
.hx .text-success-500\/85 {
  color: rgb(22 179 106 / 0.85);
}
.hx .text-success-500\/90 {
  color: rgb(22 179 106 / 0.9);
}
.hx .text-success-500\/95 {
  color: rgb(22 179 106 / 0.95);
}
.hx .text-success-600 {
  --tw-text-opacity: 1;
  color: rgb(10 145 85 / var(--tw-text-opacity, 1));
}
.hx .text-success-600\/0 {
  color: rgb(10 145 85 / 0);
}
.hx .text-success-600\/10 {
  color: rgb(10 145 85 / 0.1);
}
.hx .text-success-600\/100 {
  color: rgb(10 145 85 / 1);
}
.hx .text-success-600\/15 {
  color: rgb(10 145 85 / 0.15);
}
.hx .text-success-600\/20 {
  color: rgb(10 145 85 / 0.2);
}
.hx .text-success-600\/25 {
  color: rgb(10 145 85 / 0.25);
}
.hx .text-success-600\/30 {
  color: rgb(10 145 85 / 0.3);
}
.hx .text-success-600\/35 {
  color: rgb(10 145 85 / 0.35);
}
.hx .text-success-600\/40 {
  color: rgb(10 145 85 / 0.4);
}
.hx .text-success-600\/45 {
  color: rgb(10 145 85 / 0.45);
}
.hx .text-success-600\/5 {
  color: rgb(10 145 85 / 0.05);
}
.hx .text-success-600\/50 {
  color: rgb(10 145 85 / 0.5);
}
.hx .text-success-600\/55 {
  color: rgb(10 145 85 / 0.55);
}
.hx .text-success-600\/60 {
  color: rgb(10 145 85 / 0.6);
}
.hx .text-success-600\/65 {
  color: rgb(10 145 85 / 0.65);
}
.hx .text-success-600\/70 {
  color: rgb(10 145 85 / 0.7);
}
.hx .text-success-600\/75 {
  color: rgb(10 145 85 / 0.75);
}
.hx .text-success-600\/80 {
  color: rgb(10 145 85 / 0.8);
}
.hx .text-success-600\/85 {
  color: rgb(10 145 85 / 0.85);
}
.hx .text-success-600\/90 {
  color: rgb(10 145 85 / 0.9);
}
.hx .text-success-600\/95 {
  color: rgb(10 145 85 / 0.95);
}
.hx .text-success-700 {
  --tw-text-opacity: 1;
  color: rgb(8 116 71 / var(--tw-text-opacity, 1));
}
.hx .text-success-700\/0 {
  color: rgb(8 116 71 / 0);
}
.hx .text-success-700\/10 {
  color: rgb(8 116 71 / 0.1);
}
.hx .text-success-700\/100 {
  color: rgb(8 116 71 / 1);
}
.hx .text-success-700\/15 {
  color: rgb(8 116 71 / 0.15);
}
.hx .text-success-700\/20 {
  color: rgb(8 116 71 / 0.2);
}
.hx .text-success-700\/25 {
  color: rgb(8 116 71 / 0.25);
}
.hx .text-success-700\/30 {
  color: rgb(8 116 71 / 0.3);
}
.hx .text-success-700\/35 {
  color: rgb(8 116 71 / 0.35);
}
.hx .text-success-700\/40 {
  color: rgb(8 116 71 / 0.4);
}
.hx .text-success-700\/45 {
  color: rgb(8 116 71 / 0.45);
}
.hx .text-success-700\/5 {
  color: rgb(8 116 71 / 0.05);
}
.hx .text-success-700\/50 {
  color: rgb(8 116 71 / 0.5);
}
.hx .text-success-700\/55 {
  color: rgb(8 116 71 / 0.55);
}
.hx .text-success-700\/60 {
  color: rgb(8 116 71 / 0.6);
}
.hx .text-success-700\/65 {
  color: rgb(8 116 71 / 0.65);
}
.hx .text-success-700\/70 {
  color: rgb(8 116 71 / 0.7);
}
.hx .text-success-700\/75 {
  color: rgb(8 116 71 / 0.75);
}
.hx .text-success-700\/80 {
  color: rgb(8 116 71 / 0.8);
}
.hx .text-success-700\/85 {
  color: rgb(8 116 71 / 0.85);
}
.hx .text-success-700\/90 {
  color: rgb(8 116 71 / 0.9);
}
.hx .text-success-700\/95 {
  color: rgb(8 116 71 / 0.95);
}
.hx .text-success-800 {
  --tw-text-opacity: 1;
  color: rgb(9 92 58 / var(--tw-text-opacity, 1));
}
.hx .text-success-800\/0 {
  color: rgb(9 92 58 / 0);
}
.hx .text-success-800\/10 {
  color: rgb(9 92 58 / 0.1);
}
.hx .text-success-800\/100 {
  color: rgb(9 92 58 / 1);
}
.hx .text-success-800\/15 {
  color: rgb(9 92 58 / 0.15);
}
.hx .text-success-800\/20 {
  color: rgb(9 92 58 / 0.2);
}
.hx .text-success-800\/25 {
  color: rgb(9 92 58 / 0.25);
}
.hx .text-success-800\/30 {
  color: rgb(9 92 58 / 0.3);
}
.hx .text-success-800\/35 {
  color: rgb(9 92 58 / 0.35);
}
.hx .text-success-800\/40 {
  color: rgb(9 92 58 / 0.4);
}
.hx .text-success-800\/45 {
  color: rgb(9 92 58 / 0.45);
}
.hx .text-success-800\/5 {
  color: rgb(9 92 58 / 0.05);
}
.hx .text-success-800\/50 {
  color: rgb(9 92 58 / 0.5);
}
.hx .text-success-800\/55 {
  color: rgb(9 92 58 / 0.55);
}
.hx .text-success-800\/60 {
  color: rgb(9 92 58 / 0.6);
}
.hx .text-success-800\/65 {
  color: rgb(9 92 58 / 0.65);
}
.hx .text-success-800\/70 {
  color: rgb(9 92 58 / 0.7);
}
.hx .text-success-800\/75 {
  color: rgb(9 92 58 / 0.75);
}
.hx .text-success-800\/80 {
  color: rgb(9 92 58 / 0.8);
}
.hx .text-success-800\/85 {
  color: rgb(9 92 58 / 0.85);
}
.hx .text-success-800\/90 {
  color: rgb(9 92 58 / 0.9);
}
.hx .text-success-800\/95 {
  color: rgb(9 92 58 / 0.95);
}
.hx .text-success-900 {
  --tw-text-opacity: 1;
  color: rgb(9 75 49 / var(--tw-text-opacity, 1));
}
.hx .text-success-900\/0 {
  color: rgb(9 75 49 / 0);
}
.hx .text-success-900\/10 {
  color: rgb(9 75 49 / 0.1);
}
.hx .text-success-900\/100 {
  color: rgb(9 75 49 / 1);
}
.hx .text-success-900\/15 {
  color: rgb(9 75 49 / 0.15);
}
.hx .text-success-900\/20 {
  color: rgb(9 75 49 / 0.2);
}
.hx .text-success-900\/25 {
  color: rgb(9 75 49 / 0.25);
}
.hx .text-success-900\/30 {
  color: rgb(9 75 49 / 0.3);
}
.hx .text-success-900\/35 {
  color: rgb(9 75 49 / 0.35);
}
.hx .text-success-900\/40 {
  color: rgb(9 75 49 / 0.4);
}
.hx .text-success-900\/45 {
  color: rgb(9 75 49 / 0.45);
}
.hx .text-success-900\/5 {
  color: rgb(9 75 49 / 0.05);
}
.hx .text-success-900\/50 {
  color: rgb(9 75 49 / 0.5);
}
.hx .text-success-900\/55 {
  color: rgb(9 75 49 / 0.55);
}
.hx .text-success-900\/60 {
  color: rgb(9 75 49 / 0.6);
}
.hx .text-success-900\/65 {
  color: rgb(9 75 49 / 0.65);
}
.hx .text-success-900\/70 {
  color: rgb(9 75 49 / 0.7);
}
.hx .text-success-900\/75 {
  color: rgb(9 75 49 / 0.75);
}
.hx .text-success-900\/80 {
  color: rgb(9 75 49 / 0.8);
}
.hx .text-success-900\/85 {
  color: rgb(9 75 49 / 0.85);
}
.hx .text-success-900\/90 {
  color: rgb(9 75 49 / 0.9);
}
.hx .text-success-900\/95 {
  color: rgb(9 75 49 / 0.95);
}
.hx .text-success-950 {
  --tw-text-opacity: 1;
  color: rgb(4 42 28 / var(--tw-text-opacity, 1));
}
.hx .text-success-950\/0 {
  color: rgb(4 42 28 / 0);
}
.hx .text-success-950\/10 {
  color: rgb(4 42 28 / 0.1);
}
.hx .text-success-950\/100 {
  color: rgb(4 42 28 / 1);
}
.hx .text-success-950\/15 {
  color: rgb(4 42 28 / 0.15);
}
.hx .text-success-950\/20 {
  color: rgb(4 42 28 / 0.2);
}
.hx .text-success-950\/25 {
  color: rgb(4 42 28 / 0.25);
}
.hx .text-success-950\/30 {
  color: rgb(4 42 28 / 0.3);
}
.hx .text-success-950\/35 {
  color: rgb(4 42 28 / 0.35);
}
.hx .text-success-950\/40 {
  color: rgb(4 42 28 / 0.4);
}
.hx .text-success-950\/45 {
  color: rgb(4 42 28 / 0.45);
}
.hx .text-success-950\/5 {
  color: rgb(4 42 28 / 0.05);
}
.hx .text-success-950\/50 {
  color: rgb(4 42 28 / 0.5);
}
.hx .text-success-950\/55 {
  color: rgb(4 42 28 / 0.55);
}
.hx .text-success-950\/60 {
  color: rgb(4 42 28 / 0.6);
}
.hx .text-success-950\/65 {
  color: rgb(4 42 28 / 0.65);
}
.hx .text-success-950\/70 {
  color: rgb(4 42 28 / 0.7);
}
.hx .text-success-950\/75 {
  color: rgb(4 42 28 / 0.75);
}
.hx .text-success-950\/80 {
  color: rgb(4 42 28 / 0.8);
}
.hx .text-success-950\/85 {
  color: rgb(4 42 28 / 0.85);
}
.hx .text-success-950\/90 {
  color: rgb(4 42 28 / 0.9);
}
.hx .text-success-950\/95 {
  color: rgb(4 42 28 / 0.95);
}
.hx .text-success-content {
  --tw-text-opacity: 1;
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity, 1)));
}
.hx .text-success-content\/0 {
  color: var(--fallback-suc,oklch(var(--suc)/0));
}
.hx .text-success-content\/10 {
  color: var(--fallback-suc,oklch(var(--suc)/0.1));
}
.hx .text-success-content\/100 {
  color: var(--fallback-suc,oklch(var(--suc)/1));
}
.hx .text-success-content\/15 {
  color: var(--fallback-suc,oklch(var(--suc)/0.15));
}
.hx .text-success-content\/20 {
  color: var(--fallback-suc,oklch(var(--suc)/0.2));
}
.hx .text-success-content\/25 {
  color: var(--fallback-suc,oklch(var(--suc)/0.25));
}
.hx .text-success-content\/30 {
  color: var(--fallback-suc,oklch(var(--suc)/0.3));
}
.hx .text-success-content\/35 {
  color: var(--fallback-suc,oklch(var(--suc)/0.35));
}
.hx .text-success-content\/40 {
  color: var(--fallback-suc,oklch(var(--suc)/0.4));
}
.hx .text-success-content\/45 {
  color: var(--fallback-suc,oklch(var(--suc)/0.45));
}
.hx .text-success-content\/5 {
  color: var(--fallback-suc,oklch(var(--suc)/0.05));
}
.hx .text-success-content\/50 {
  color: var(--fallback-suc,oklch(var(--suc)/0.5));
}
.hx .text-success-content\/55 {
  color: var(--fallback-suc,oklch(var(--suc)/0.55));
}
.hx .text-success-content\/60 {
  color: var(--fallback-suc,oklch(var(--suc)/0.6));
}
.hx .text-success-content\/65 {
  color: var(--fallback-suc,oklch(var(--suc)/0.65));
}
.hx .text-success-content\/70 {
  color: var(--fallback-suc,oklch(var(--suc)/0.7));
}
.hx .text-success-content\/75 {
  color: var(--fallback-suc,oklch(var(--suc)/0.75));
}
.hx .text-success-content\/80 {
  color: var(--fallback-suc,oklch(var(--suc)/0.8));
}
.hx .text-success-content\/85 {
  color: var(--fallback-suc,oklch(var(--suc)/0.85));
}
.hx .text-success-content\/90 {
  color: var(--fallback-suc,oklch(var(--suc)/0.9));
}
.hx .text-success-content\/95 {
  color: var(--fallback-suc,oklch(var(--suc)/0.95));
}
.hx .text-success\/0 {
  color: rgb(51 202 127 / 0);
}
.hx .text-success\/10 {
  color: rgb(51 202 127 / 0.1);
}
.hx .text-success\/100 {
  color: rgb(51 202 127 / 1);
}
.hx .text-success\/15 {
  color: rgb(51 202 127 / 0.15);
}
.hx .text-success\/20 {
  color: rgb(51 202 127 / 0.2);
}
.hx .text-success\/25 {
  color: rgb(51 202 127 / 0.25);
}
.hx .text-success\/30 {
  color: rgb(51 202 127 / 0.3);
}
.hx .text-success\/35 {
  color: rgb(51 202 127 / 0.35);
}
.hx .text-success\/40 {
  color: rgb(51 202 127 / 0.4);
}
.hx .text-success\/45 {
  color: rgb(51 202 127 / 0.45);
}
.hx .text-success\/5 {
  color: rgb(51 202 127 / 0.05);
}
.hx .text-success\/50 {
  color: rgb(51 202 127 / 0.5);
}
.hx .text-success\/55 {
  color: rgb(51 202 127 / 0.55);
}
.hx .text-success\/60 {
  color: rgb(51 202 127 / 0.6);
}
.hx .text-success\/65 {
  color: rgb(51 202 127 / 0.65);
}
.hx .text-success\/70 {
  color: rgb(51 202 127 / 0.7);
}
.hx .text-success\/75 {
  color: rgb(51 202 127 / 0.75);
}
.hx .text-success\/80 {
  color: rgb(51 202 127 / 0.8);
}
.hx .text-success\/85 {
  color: rgb(51 202 127 / 0.85);
}
.hx .text-success\/90 {
  color: rgb(51 202 127 / 0.9);
}
.hx .text-success\/95 {
  color: rgb(51 202 127 / 0.95);
}
.hx .text-teal-100 {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.hx .text-teal-100\/0 {
  color: rgb(204 251 241 / 0);
}
.hx .text-teal-100\/10 {
  color: rgb(204 251 241 / 0.1);
}
.hx .text-teal-100\/100 {
  color: rgb(204 251 241 / 1);
}
.hx .text-teal-100\/15 {
  color: rgb(204 251 241 / 0.15);
}
.hx .text-teal-100\/20 {
  color: rgb(204 251 241 / 0.2);
}
.hx .text-teal-100\/25 {
  color: rgb(204 251 241 / 0.25);
}
.hx .text-teal-100\/30 {
  color: rgb(204 251 241 / 0.3);
}
.hx .text-teal-100\/35 {
  color: rgb(204 251 241 / 0.35);
}
.hx .text-teal-100\/40 {
  color: rgb(204 251 241 / 0.4);
}
.hx .text-teal-100\/45 {
  color: rgb(204 251 241 / 0.45);
}
.hx .text-teal-100\/5 {
  color: rgb(204 251 241 / 0.05);
}
.hx .text-teal-100\/50 {
  color: rgb(204 251 241 / 0.5);
}
.hx .text-teal-100\/55 {
  color: rgb(204 251 241 / 0.55);
}
.hx .text-teal-100\/60 {
  color: rgb(204 251 241 / 0.6);
}
.hx .text-teal-100\/65 {
  color: rgb(204 251 241 / 0.65);
}
.hx .text-teal-100\/70 {
  color: rgb(204 251 241 / 0.7);
}
.hx .text-teal-100\/75 {
  color: rgb(204 251 241 / 0.75);
}
.hx .text-teal-100\/80 {
  color: rgb(204 251 241 / 0.8);
}
.hx .text-teal-100\/85 {
  color: rgb(204 251 241 / 0.85);
}
.hx .text-teal-100\/90 {
  color: rgb(204 251 241 / 0.9);
}
.hx .text-teal-100\/95 {
  color: rgb(204 251 241 / 0.95);
}
.hx .text-teal-200 {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.hx .text-teal-200\/0 {
  color: rgb(153 246 228 / 0);
}
.hx .text-teal-200\/10 {
  color: rgb(153 246 228 / 0.1);
}
.hx .text-teal-200\/100 {
  color: rgb(153 246 228 / 1);
}
.hx .text-teal-200\/15 {
  color: rgb(153 246 228 / 0.15);
}
.hx .text-teal-200\/20 {
  color: rgb(153 246 228 / 0.2);
}
.hx .text-teal-200\/25 {
  color: rgb(153 246 228 / 0.25);
}
.hx .text-teal-200\/30 {
  color: rgb(153 246 228 / 0.3);
}
.hx .text-teal-200\/35 {
  color: rgb(153 246 228 / 0.35);
}
.hx .text-teal-200\/40 {
  color: rgb(153 246 228 / 0.4);
}
.hx .text-teal-200\/45 {
  color: rgb(153 246 228 / 0.45);
}
.hx .text-teal-200\/5 {
  color: rgb(153 246 228 / 0.05);
}
.hx .text-teal-200\/50 {
  color: rgb(153 246 228 / 0.5);
}
.hx .text-teal-200\/55 {
  color: rgb(153 246 228 / 0.55);
}
.hx .text-teal-200\/60 {
  color: rgb(153 246 228 / 0.6);
}
.hx .text-teal-200\/65 {
  color: rgb(153 246 228 / 0.65);
}
.hx .text-teal-200\/70 {
  color: rgb(153 246 228 / 0.7);
}
.hx .text-teal-200\/75 {
  color: rgb(153 246 228 / 0.75);
}
.hx .text-teal-200\/80 {
  color: rgb(153 246 228 / 0.8);
}
.hx .text-teal-200\/85 {
  color: rgb(153 246 228 / 0.85);
}
.hx .text-teal-200\/90 {
  color: rgb(153 246 228 / 0.9);
}
.hx .text-teal-200\/95 {
  color: rgb(153 246 228 / 0.95);
}
.hx .text-teal-300 {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.hx .text-teal-300\/0 {
  color: rgb(94 234 212 / 0);
}
.hx .text-teal-300\/10 {
  color: rgb(94 234 212 / 0.1);
}
.hx .text-teal-300\/100 {
  color: rgb(94 234 212 / 1);
}
.hx .text-teal-300\/15 {
  color: rgb(94 234 212 / 0.15);
}
.hx .text-teal-300\/20 {
  color: rgb(94 234 212 / 0.2);
}
.hx .text-teal-300\/25 {
  color: rgb(94 234 212 / 0.25);
}
.hx .text-teal-300\/30 {
  color: rgb(94 234 212 / 0.3);
}
.hx .text-teal-300\/35 {
  color: rgb(94 234 212 / 0.35);
}
.hx .text-teal-300\/40 {
  color: rgb(94 234 212 / 0.4);
}
.hx .text-teal-300\/45 {
  color: rgb(94 234 212 / 0.45);
}
.hx .text-teal-300\/5 {
  color: rgb(94 234 212 / 0.05);
}
.hx .text-teal-300\/50 {
  color: rgb(94 234 212 / 0.5);
}
.hx .text-teal-300\/55 {
  color: rgb(94 234 212 / 0.55);
}
.hx .text-teal-300\/60 {
  color: rgb(94 234 212 / 0.6);
}
.hx .text-teal-300\/65 {
  color: rgb(94 234 212 / 0.65);
}
.hx .text-teal-300\/70 {
  color: rgb(94 234 212 / 0.7);
}
.hx .text-teal-300\/75 {
  color: rgb(94 234 212 / 0.75);
}
.hx .text-teal-300\/80 {
  color: rgb(94 234 212 / 0.8);
}
.hx .text-teal-300\/85 {
  color: rgb(94 234 212 / 0.85);
}
.hx .text-teal-300\/90 {
  color: rgb(94 234 212 / 0.9);
}
.hx .text-teal-300\/95 {
  color: rgb(94 234 212 / 0.95);
}
.hx .text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.hx .text-teal-400\/0 {
  color: rgb(45 212 191 / 0);
}
.hx .text-teal-400\/10 {
  color: rgb(45 212 191 / 0.1);
}
.hx .text-teal-400\/100 {
  color: rgb(45 212 191 / 1);
}
.hx .text-teal-400\/15 {
  color: rgb(45 212 191 / 0.15);
}
.hx .text-teal-400\/20 {
  color: rgb(45 212 191 / 0.2);
}
.hx .text-teal-400\/25 {
  color: rgb(45 212 191 / 0.25);
}
.hx .text-teal-400\/30 {
  color: rgb(45 212 191 / 0.3);
}
.hx .text-teal-400\/35 {
  color: rgb(45 212 191 / 0.35);
}
.hx .text-teal-400\/40 {
  color: rgb(45 212 191 / 0.4);
}
.hx .text-teal-400\/45 {
  color: rgb(45 212 191 / 0.45);
}
.hx .text-teal-400\/5 {
  color: rgb(45 212 191 / 0.05);
}
.hx .text-teal-400\/50 {
  color: rgb(45 212 191 / 0.5);
}
.hx .text-teal-400\/55 {
  color: rgb(45 212 191 / 0.55);
}
.hx .text-teal-400\/60 {
  color: rgb(45 212 191 / 0.6);
}
.hx .text-teal-400\/65 {
  color: rgb(45 212 191 / 0.65);
}
.hx .text-teal-400\/70 {
  color: rgb(45 212 191 / 0.7);
}
.hx .text-teal-400\/75 {
  color: rgb(45 212 191 / 0.75);
}
.hx .text-teal-400\/80 {
  color: rgb(45 212 191 / 0.8);
}
.hx .text-teal-400\/85 {
  color: rgb(45 212 191 / 0.85);
}
.hx .text-teal-400\/90 {
  color: rgb(45 212 191 / 0.9);
}
.hx .text-teal-400\/95 {
  color: rgb(45 212 191 / 0.95);
}
.hx .text-teal-50 {
  --tw-text-opacity: 1;
  color: rgb(240 253 250 / var(--tw-text-opacity, 1));
}
.hx .text-teal-50\/0 {
  color: rgb(240 253 250 / 0);
}
.hx .text-teal-50\/10 {
  color: rgb(240 253 250 / 0.1);
}
.hx .text-teal-50\/100 {
  color: rgb(240 253 250 / 1);
}
.hx .text-teal-50\/15 {
  color: rgb(240 253 250 / 0.15);
}
.hx .text-teal-50\/20 {
  color: rgb(240 253 250 / 0.2);
}
.hx .text-teal-50\/25 {
  color: rgb(240 253 250 / 0.25);
}
.hx .text-teal-50\/30 {
  color: rgb(240 253 250 / 0.3);
}
.hx .text-teal-50\/35 {
  color: rgb(240 253 250 / 0.35);
}
.hx .text-teal-50\/40 {
  color: rgb(240 253 250 / 0.4);
}
.hx .text-teal-50\/45 {
  color: rgb(240 253 250 / 0.45);
}
.hx .text-teal-50\/5 {
  color: rgb(240 253 250 / 0.05);
}
.hx .text-teal-50\/50 {
  color: rgb(240 253 250 / 0.5);
}
.hx .text-teal-50\/55 {
  color: rgb(240 253 250 / 0.55);
}
.hx .text-teal-50\/60 {
  color: rgb(240 253 250 / 0.6);
}
.hx .text-teal-50\/65 {
  color: rgb(240 253 250 / 0.65);
}
.hx .text-teal-50\/70 {
  color: rgb(240 253 250 / 0.7);
}
.hx .text-teal-50\/75 {
  color: rgb(240 253 250 / 0.75);
}
.hx .text-teal-50\/80 {
  color: rgb(240 253 250 / 0.8);
}
.hx .text-teal-50\/85 {
  color: rgb(240 253 250 / 0.85);
}
.hx .text-teal-50\/90 {
  color: rgb(240 253 250 / 0.9);
}
.hx .text-teal-50\/95 {
  color: rgb(240 253 250 / 0.95);
}
.hx .text-teal-500 {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.hx .text-teal-500\/0 {
  color: rgb(20 184 166 / 0);
}
.hx .text-teal-500\/10 {
  color: rgb(20 184 166 / 0.1);
}
.hx .text-teal-500\/100 {
  color: rgb(20 184 166 / 1);
}
.hx .text-teal-500\/15 {
  color: rgb(20 184 166 / 0.15);
}
.hx .text-teal-500\/20 {
  color: rgb(20 184 166 / 0.2);
}
.hx .text-teal-500\/25 {
  color: rgb(20 184 166 / 0.25);
}
.hx .text-teal-500\/30 {
  color: rgb(20 184 166 / 0.3);
}
.hx .text-teal-500\/35 {
  color: rgb(20 184 166 / 0.35);
}
.hx .text-teal-500\/40 {
  color: rgb(20 184 166 / 0.4);
}
.hx .text-teal-500\/45 {
  color: rgb(20 184 166 / 0.45);
}
.hx .text-teal-500\/5 {
  color: rgb(20 184 166 / 0.05);
}
.hx .text-teal-500\/50 {
  color: rgb(20 184 166 / 0.5);
}
.hx .text-teal-500\/55 {
  color: rgb(20 184 166 / 0.55);
}
.hx .text-teal-500\/60 {
  color: rgb(20 184 166 / 0.6);
}
.hx .text-teal-500\/65 {
  color: rgb(20 184 166 / 0.65);
}
.hx .text-teal-500\/70 {
  color: rgb(20 184 166 / 0.7);
}
.hx .text-teal-500\/75 {
  color: rgb(20 184 166 / 0.75);
}
.hx .text-teal-500\/80 {
  color: rgb(20 184 166 / 0.8);
}
.hx .text-teal-500\/85 {
  color: rgb(20 184 166 / 0.85);
}
.hx .text-teal-500\/90 {
  color: rgb(20 184 166 / 0.9);
}
.hx .text-teal-500\/95 {
  color: rgb(20 184 166 / 0.95);
}
.hx .text-teal-600 {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}
.hx .text-teal-600\/0 {
  color: rgb(13 148 136 / 0);
}
.hx .text-teal-600\/10 {
  color: rgb(13 148 136 / 0.1);
}
.hx .text-teal-600\/100 {
  color: rgb(13 148 136 / 1);
}
.hx .text-teal-600\/15 {
  color: rgb(13 148 136 / 0.15);
}
.hx .text-teal-600\/20 {
  color: rgb(13 148 136 / 0.2);
}
.hx .text-teal-600\/25 {
  color: rgb(13 148 136 / 0.25);
}
.hx .text-teal-600\/30 {
  color: rgb(13 148 136 / 0.3);
}
.hx .text-teal-600\/35 {
  color: rgb(13 148 136 / 0.35);
}
.hx .text-teal-600\/40 {
  color: rgb(13 148 136 / 0.4);
}
.hx .text-teal-600\/45 {
  color: rgb(13 148 136 / 0.45);
}
.hx .text-teal-600\/5 {
  color: rgb(13 148 136 / 0.05);
}
.hx .text-teal-600\/50 {
  color: rgb(13 148 136 / 0.5);
}
.hx .text-teal-600\/55 {
  color: rgb(13 148 136 / 0.55);
}
.hx .text-teal-600\/60 {
  color: rgb(13 148 136 / 0.6);
}
.hx .text-teal-600\/65 {
  color: rgb(13 148 136 / 0.65);
}
.hx .text-teal-600\/70 {
  color: rgb(13 148 136 / 0.7);
}
.hx .text-teal-600\/75 {
  color: rgb(13 148 136 / 0.75);
}
.hx .text-teal-600\/80 {
  color: rgb(13 148 136 / 0.8);
}
.hx .text-teal-600\/85 {
  color: rgb(13 148 136 / 0.85);
}
.hx .text-teal-600\/90 {
  color: rgb(13 148 136 / 0.9);
}
.hx .text-teal-600\/95 {
  color: rgb(13 148 136 / 0.95);
}
.hx .text-teal-700 {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.hx .text-teal-700\/0 {
  color: rgb(15 118 110 / 0);
}
.hx .text-teal-700\/10 {
  color: rgb(15 118 110 / 0.1);
}
.hx .text-teal-700\/100 {
  color: rgb(15 118 110 / 1);
}
.hx .text-teal-700\/15 {
  color: rgb(15 118 110 / 0.15);
}
.hx .text-teal-700\/20 {
  color: rgb(15 118 110 / 0.2);
}
.hx .text-teal-700\/25 {
  color: rgb(15 118 110 / 0.25);
}
.hx .text-teal-700\/30 {
  color: rgb(15 118 110 / 0.3);
}
.hx .text-teal-700\/35 {
  color: rgb(15 118 110 / 0.35);
}
.hx .text-teal-700\/40 {
  color: rgb(15 118 110 / 0.4);
}
.hx .text-teal-700\/45 {
  color: rgb(15 118 110 / 0.45);
}
.hx .text-teal-700\/5 {
  color: rgb(15 118 110 / 0.05);
}
.hx .text-teal-700\/50 {
  color: rgb(15 118 110 / 0.5);
}
.hx .text-teal-700\/55 {
  color: rgb(15 118 110 / 0.55);
}
.hx .text-teal-700\/60 {
  color: rgb(15 118 110 / 0.6);
}
.hx .text-teal-700\/65 {
  color: rgb(15 118 110 / 0.65);
}
.hx .text-teal-700\/70 {
  color: rgb(15 118 110 / 0.7);
}
.hx .text-teal-700\/75 {
  color: rgb(15 118 110 / 0.75);
}
.hx .text-teal-700\/80 {
  color: rgb(15 118 110 / 0.8);
}
.hx .text-teal-700\/85 {
  color: rgb(15 118 110 / 0.85);
}
.hx .text-teal-700\/90 {
  color: rgb(15 118 110 / 0.9);
}
.hx .text-teal-700\/95 {
  color: rgb(15 118 110 / 0.95);
}
.hx .text-teal-800 {
  --tw-text-opacity: 1;
  color: rgb(17 94 89 / var(--tw-text-opacity, 1));
}
.hx .text-teal-800\/0 {
  color: rgb(17 94 89 / 0);
}
.hx .text-teal-800\/10 {
  color: rgb(17 94 89 / 0.1);
}
.hx .text-teal-800\/100 {
  color: rgb(17 94 89 / 1);
}
.hx .text-teal-800\/15 {
  color: rgb(17 94 89 / 0.15);
}
.hx .text-teal-800\/20 {
  color: rgb(17 94 89 / 0.2);
}
.hx .text-teal-800\/25 {
  color: rgb(17 94 89 / 0.25);
}
.hx .text-teal-800\/30 {
  color: rgb(17 94 89 / 0.3);
}
.hx .text-teal-800\/35 {
  color: rgb(17 94 89 / 0.35);
}
.hx .text-teal-800\/40 {
  color: rgb(17 94 89 / 0.4);
}
.hx .text-teal-800\/45 {
  color: rgb(17 94 89 / 0.45);
}
.hx .text-teal-800\/5 {
  color: rgb(17 94 89 / 0.05);
}
.hx .text-teal-800\/50 {
  color: rgb(17 94 89 / 0.5);
}
.hx .text-teal-800\/55 {
  color: rgb(17 94 89 / 0.55);
}
.hx .text-teal-800\/60 {
  color: rgb(17 94 89 / 0.6);
}
.hx .text-teal-800\/65 {
  color: rgb(17 94 89 / 0.65);
}
.hx .text-teal-800\/70 {
  color: rgb(17 94 89 / 0.7);
}
.hx .text-teal-800\/75 {
  color: rgb(17 94 89 / 0.75);
}
.hx .text-teal-800\/80 {
  color: rgb(17 94 89 / 0.8);
}
.hx .text-teal-800\/85 {
  color: rgb(17 94 89 / 0.85);
}
.hx .text-teal-800\/90 {
  color: rgb(17 94 89 / 0.9);
}
.hx .text-teal-800\/95 {
  color: rgb(17 94 89 / 0.95);
}
.hx .text-teal-900 {
  --tw-text-opacity: 1;
  color: rgb(19 78 74 / var(--tw-text-opacity, 1));
}
.hx .text-teal-900\/0 {
  color: rgb(19 78 74 / 0);
}
.hx .text-teal-900\/10 {
  color: rgb(19 78 74 / 0.1);
}
.hx .text-teal-900\/100 {
  color: rgb(19 78 74 / 1);
}
.hx .text-teal-900\/15 {
  color: rgb(19 78 74 / 0.15);
}
.hx .text-teal-900\/20 {
  color: rgb(19 78 74 / 0.2);
}
.hx .text-teal-900\/25 {
  color: rgb(19 78 74 / 0.25);
}
.hx .text-teal-900\/30 {
  color: rgb(19 78 74 / 0.3);
}
.hx .text-teal-900\/35 {
  color: rgb(19 78 74 / 0.35);
}
.hx .text-teal-900\/40 {
  color: rgb(19 78 74 / 0.4);
}
.hx .text-teal-900\/45 {
  color: rgb(19 78 74 / 0.45);
}
.hx .text-teal-900\/5 {
  color: rgb(19 78 74 / 0.05);
}
.hx .text-teal-900\/50 {
  color: rgb(19 78 74 / 0.5);
}
.hx .text-teal-900\/55 {
  color: rgb(19 78 74 / 0.55);
}
.hx .text-teal-900\/60 {
  color: rgb(19 78 74 / 0.6);
}
.hx .text-teal-900\/65 {
  color: rgb(19 78 74 / 0.65);
}
.hx .text-teal-900\/70 {
  color: rgb(19 78 74 / 0.7);
}
.hx .text-teal-900\/75 {
  color: rgb(19 78 74 / 0.75);
}
.hx .text-teal-900\/80 {
  color: rgb(19 78 74 / 0.8);
}
.hx .text-teal-900\/85 {
  color: rgb(19 78 74 / 0.85);
}
.hx .text-teal-900\/90 {
  color: rgb(19 78 74 / 0.9);
}
.hx .text-teal-900\/95 {
  color: rgb(19 78 74 / 0.95);
}
.hx .text-teal-950 {
  --tw-text-opacity: 1;
  color: rgb(4 47 46 / var(--tw-text-opacity, 1));
}
.hx .text-teal-950\/0 {
  color: rgb(4 47 46 / 0);
}
.hx .text-teal-950\/10 {
  color: rgb(4 47 46 / 0.1);
}
.hx .text-teal-950\/100 {
  color: rgb(4 47 46 / 1);
}
.hx .text-teal-950\/15 {
  color: rgb(4 47 46 / 0.15);
}
.hx .text-teal-950\/20 {
  color: rgb(4 47 46 / 0.2);
}
.hx .text-teal-950\/25 {
  color: rgb(4 47 46 / 0.25);
}
.hx .text-teal-950\/30 {
  color: rgb(4 47 46 / 0.3);
}
.hx .text-teal-950\/35 {
  color: rgb(4 47 46 / 0.35);
}
.hx .text-teal-950\/40 {
  color: rgb(4 47 46 / 0.4);
}
.hx .text-teal-950\/45 {
  color: rgb(4 47 46 / 0.45);
}
.hx .text-teal-950\/5 {
  color: rgb(4 47 46 / 0.05);
}
.hx .text-teal-950\/50 {
  color: rgb(4 47 46 / 0.5);
}
.hx .text-teal-950\/55 {
  color: rgb(4 47 46 / 0.55);
}
.hx .text-teal-950\/60 {
  color: rgb(4 47 46 / 0.6);
}
.hx .text-teal-950\/65 {
  color: rgb(4 47 46 / 0.65);
}
.hx .text-teal-950\/70 {
  color: rgb(4 47 46 / 0.7);
}
.hx .text-teal-950\/75 {
  color: rgb(4 47 46 / 0.75);
}
.hx .text-teal-950\/80 {
  color: rgb(4 47 46 / 0.8);
}
.hx .text-teal-950\/85 {
  color: rgb(4 47 46 / 0.85);
}
.hx .text-teal-950\/90 {
  color: rgb(4 47 46 / 0.9);
}
.hx .text-teal-950\/95 {
  color: rgb(4 47 46 / 0.95);
}
.hx .text-transparent {
  color: transparent;
}
.hx .text-transparent\/0 {
  color: rgb(0 0 0 / 0);
}
.hx .text-transparent\/10 {
  color: rgb(0 0 0 / 0.1);
}
.hx .text-transparent\/100 {
  color: rgb(0 0 0 / 1);
}
.hx .text-transparent\/15 {
  color: rgb(0 0 0 / 0.15);
}
.hx .text-transparent\/20 {
  color: rgb(0 0 0 / 0.2);
}
.hx .text-transparent\/25 {
  color: rgb(0 0 0 / 0.25);
}
.hx .text-transparent\/30 {
  color: rgb(0 0 0 / 0.3);
}
.hx .text-transparent\/35 {
  color: rgb(0 0 0 / 0.35);
}
.hx .text-transparent\/40 {
  color: rgb(0 0 0 / 0.4);
}
.hx .text-transparent\/45 {
  color: rgb(0 0 0 / 0.45);
}
.hx .text-transparent\/5 {
  color: rgb(0 0 0 / 0.05);
}
.hx .text-transparent\/50 {
  color: rgb(0 0 0 / 0.5);
}
.hx .text-transparent\/55 {
  color: rgb(0 0 0 / 0.55);
}
.hx .text-transparent\/60 {
  color: rgb(0 0 0 / 0.6);
}
.hx .text-transparent\/65 {
  color: rgb(0 0 0 / 0.65);
}
.hx .text-transparent\/70 {
  color: rgb(0 0 0 / 0.7);
}
.hx .text-transparent\/75 {
  color: rgb(0 0 0 / 0.75);
}
.hx .text-transparent\/80 {
  color: rgb(0 0 0 / 0.8);
}
.hx .text-transparent\/85 {
  color: rgb(0 0 0 / 0.85);
}
.hx .text-transparent\/90 {
  color: rgb(0 0 0 / 0.9);
}
.hx .text-transparent\/95 {
  color: rgb(0 0 0 / 0.95);
}
.hx .text-violet-100 {
  --tw-text-opacity: 1;
  color: rgb(237 233 254 / var(--tw-text-opacity, 1));
}
.hx .text-violet-100\/0 {
  color: rgb(237 233 254 / 0);
}
.hx .text-violet-100\/10 {
  color: rgb(237 233 254 / 0.1);
}
.hx .text-violet-100\/100 {
  color: rgb(237 233 254 / 1);
}
.hx .text-violet-100\/15 {
  color: rgb(237 233 254 / 0.15);
}
.hx .text-violet-100\/20 {
  color: rgb(237 233 254 / 0.2);
}
.hx .text-violet-100\/25 {
  color: rgb(237 233 254 / 0.25);
}
.hx .text-violet-100\/30 {
  color: rgb(237 233 254 / 0.3);
}
.hx .text-violet-100\/35 {
  color: rgb(237 233 254 / 0.35);
}
.hx .text-violet-100\/40 {
  color: rgb(237 233 254 / 0.4);
}
.hx .text-violet-100\/45 {
  color: rgb(237 233 254 / 0.45);
}
.hx .text-violet-100\/5 {
  color: rgb(237 233 254 / 0.05);
}
.hx .text-violet-100\/50 {
  color: rgb(237 233 254 / 0.5);
}
.hx .text-violet-100\/55 {
  color: rgb(237 233 254 / 0.55);
}
.hx .text-violet-100\/60 {
  color: rgb(237 233 254 / 0.6);
}
.hx .text-violet-100\/65 {
  color: rgb(237 233 254 / 0.65);
}
.hx .text-violet-100\/70 {
  color: rgb(237 233 254 / 0.7);
}
.hx .text-violet-100\/75 {
  color: rgb(237 233 254 / 0.75);
}
.hx .text-violet-100\/80 {
  color: rgb(237 233 254 / 0.8);
}
.hx .text-violet-100\/85 {
  color: rgb(237 233 254 / 0.85);
}
.hx .text-violet-100\/90 {
  color: rgb(237 233 254 / 0.9);
}
.hx .text-violet-100\/95 {
  color: rgb(237 233 254 / 0.95);
}
.hx .text-violet-200 {
  --tw-text-opacity: 1;
  color: rgb(221 214 254 / var(--tw-text-opacity, 1));
}
.hx .text-violet-200\/0 {
  color: rgb(221 214 254 / 0);
}
.hx .text-violet-200\/10 {
  color: rgb(221 214 254 / 0.1);
}
.hx .text-violet-200\/100 {
  color: rgb(221 214 254 / 1);
}
.hx .text-violet-200\/15 {
  color: rgb(221 214 254 / 0.15);
}
.hx .text-violet-200\/20 {
  color: rgb(221 214 254 / 0.2);
}
.hx .text-violet-200\/25 {
  color: rgb(221 214 254 / 0.25);
}
.hx .text-violet-200\/30 {
  color: rgb(221 214 254 / 0.3);
}
.hx .text-violet-200\/35 {
  color: rgb(221 214 254 / 0.35);
}
.hx .text-violet-200\/40 {
  color: rgb(221 214 254 / 0.4);
}
.hx .text-violet-200\/45 {
  color: rgb(221 214 254 / 0.45);
}
.hx .text-violet-200\/5 {
  color: rgb(221 214 254 / 0.05);
}
.hx .text-violet-200\/50 {
  color: rgb(221 214 254 / 0.5);
}
.hx .text-violet-200\/55 {
  color: rgb(221 214 254 / 0.55);
}
.hx .text-violet-200\/60 {
  color: rgb(221 214 254 / 0.6);
}
.hx .text-violet-200\/65 {
  color: rgb(221 214 254 / 0.65);
}
.hx .text-violet-200\/70 {
  color: rgb(221 214 254 / 0.7);
}
.hx .text-violet-200\/75 {
  color: rgb(221 214 254 / 0.75);
}
.hx .text-violet-200\/80 {
  color: rgb(221 214 254 / 0.8);
}
.hx .text-violet-200\/85 {
  color: rgb(221 214 254 / 0.85);
}
.hx .text-violet-200\/90 {
  color: rgb(221 214 254 / 0.9);
}
.hx .text-violet-200\/95 {
  color: rgb(221 214 254 / 0.95);
}
.hx .text-violet-300 {
  --tw-text-opacity: 1;
  color: rgb(196 181 253 / var(--tw-text-opacity, 1));
}
.hx .text-violet-300\/0 {
  color: rgb(196 181 253 / 0);
}
.hx .text-violet-300\/10 {
  color: rgb(196 181 253 / 0.1);
}
.hx .text-violet-300\/100 {
  color: rgb(196 181 253 / 1);
}
.hx .text-violet-300\/15 {
  color: rgb(196 181 253 / 0.15);
}
.hx .text-violet-300\/20 {
  color: rgb(196 181 253 / 0.2);
}
.hx .text-violet-300\/25 {
  color: rgb(196 181 253 / 0.25);
}
.hx .text-violet-300\/30 {
  color: rgb(196 181 253 / 0.3);
}
.hx .text-violet-300\/35 {
  color: rgb(196 181 253 / 0.35);
}
.hx .text-violet-300\/40 {
  color: rgb(196 181 253 / 0.4);
}
.hx .text-violet-300\/45 {
  color: rgb(196 181 253 / 0.45);
}
.hx .text-violet-300\/5 {
  color: rgb(196 181 253 / 0.05);
}
.hx .text-violet-300\/50 {
  color: rgb(196 181 253 / 0.5);
}
.hx .text-violet-300\/55 {
  color: rgb(196 181 253 / 0.55);
}
.hx .text-violet-300\/60 {
  color: rgb(196 181 253 / 0.6);
}
.hx .text-violet-300\/65 {
  color: rgb(196 181 253 / 0.65);
}
.hx .text-violet-300\/70 {
  color: rgb(196 181 253 / 0.7);
}
.hx .text-violet-300\/75 {
  color: rgb(196 181 253 / 0.75);
}
.hx .text-violet-300\/80 {
  color: rgb(196 181 253 / 0.8);
}
.hx .text-violet-300\/85 {
  color: rgb(196 181 253 / 0.85);
}
.hx .text-violet-300\/90 {
  color: rgb(196 181 253 / 0.9);
}
.hx .text-violet-300\/95 {
  color: rgb(196 181 253 / 0.95);
}
.hx .text-violet-400 {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.hx .text-violet-400\/0 {
  color: rgb(167 139 250 / 0);
}
.hx .text-violet-400\/10 {
  color: rgb(167 139 250 / 0.1);
}
.hx .text-violet-400\/100 {
  color: rgb(167 139 250 / 1);
}
.hx .text-violet-400\/15 {
  color: rgb(167 139 250 / 0.15);
}
.hx .text-violet-400\/20 {
  color: rgb(167 139 250 / 0.2);
}
.hx .text-violet-400\/25 {
  color: rgb(167 139 250 / 0.25);
}
.hx .text-violet-400\/30 {
  color: rgb(167 139 250 / 0.3);
}
.hx .text-violet-400\/35 {
  color: rgb(167 139 250 / 0.35);
}
.hx .text-violet-400\/40 {
  color: rgb(167 139 250 / 0.4);
}
.hx .text-violet-400\/45 {
  color: rgb(167 139 250 / 0.45);
}
.hx .text-violet-400\/5 {
  color: rgb(167 139 250 / 0.05);
}
.hx .text-violet-400\/50 {
  color: rgb(167 139 250 / 0.5);
}
.hx .text-violet-400\/55 {
  color: rgb(167 139 250 / 0.55);
}
.hx .text-violet-400\/60 {
  color: rgb(167 139 250 / 0.6);
}
.hx .text-violet-400\/65 {
  color: rgb(167 139 250 / 0.65);
}
.hx .text-violet-400\/70 {
  color: rgb(167 139 250 / 0.7);
}
.hx .text-violet-400\/75 {
  color: rgb(167 139 250 / 0.75);
}
.hx .text-violet-400\/80 {
  color: rgb(167 139 250 / 0.8);
}
.hx .text-violet-400\/85 {
  color: rgb(167 139 250 / 0.85);
}
.hx .text-violet-400\/90 {
  color: rgb(167 139 250 / 0.9);
}
.hx .text-violet-400\/95 {
  color: rgb(167 139 250 / 0.95);
}
.hx .text-violet-50 {
  --tw-text-opacity: 1;
  color: rgb(245 243 255 / var(--tw-text-opacity, 1));
}
.hx .text-violet-50\/0 {
  color: rgb(245 243 255 / 0);
}
.hx .text-violet-50\/10 {
  color: rgb(245 243 255 / 0.1);
}
.hx .text-violet-50\/100 {
  color: rgb(245 243 255 / 1);
}
.hx .text-violet-50\/15 {
  color: rgb(245 243 255 / 0.15);
}
.hx .text-violet-50\/20 {
  color: rgb(245 243 255 / 0.2);
}
.hx .text-violet-50\/25 {
  color: rgb(245 243 255 / 0.25);
}
.hx .text-violet-50\/30 {
  color: rgb(245 243 255 / 0.3);
}
.hx .text-violet-50\/35 {
  color: rgb(245 243 255 / 0.35);
}
.hx .text-violet-50\/40 {
  color: rgb(245 243 255 / 0.4);
}
.hx .text-violet-50\/45 {
  color: rgb(245 243 255 / 0.45);
}
.hx .text-violet-50\/5 {
  color: rgb(245 243 255 / 0.05);
}
.hx .text-violet-50\/50 {
  color: rgb(245 243 255 / 0.5);
}
.hx .text-violet-50\/55 {
  color: rgb(245 243 255 / 0.55);
}
.hx .text-violet-50\/60 {
  color: rgb(245 243 255 / 0.6);
}
.hx .text-violet-50\/65 {
  color: rgb(245 243 255 / 0.65);
}
.hx .text-violet-50\/70 {
  color: rgb(245 243 255 / 0.7);
}
.hx .text-violet-50\/75 {
  color: rgb(245 243 255 / 0.75);
}
.hx .text-violet-50\/80 {
  color: rgb(245 243 255 / 0.8);
}
.hx .text-violet-50\/85 {
  color: rgb(245 243 255 / 0.85);
}
.hx .text-violet-50\/90 {
  color: rgb(245 243 255 / 0.9);
}
.hx .text-violet-50\/95 {
  color: rgb(245 243 255 / 0.95);
}
.hx .text-violet-500 {
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.hx .text-violet-500\/0 {
  color: rgb(139 92 246 / 0);
}
.hx .text-violet-500\/10 {
  color: rgb(139 92 246 / 0.1);
}
.hx .text-violet-500\/100 {
  color: rgb(139 92 246 / 1);
}
.hx .text-violet-500\/15 {
  color: rgb(139 92 246 / 0.15);
}
.hx .text-violet-500\/20 {
  color: rgb(139 92 246 / 0.2);
}
.hx .text-violet-500\/25 {
  color: rgb(139 92 246 / 0.25);
}
.hx .text-violet-500\/30 {
  color: rgb(139 92 246 / 0.3);
}
.hx .text-violet-500\/35 {
  color: rgb(139 92 246 / 0.35);
}
.hx .text-violet-500\/40 {
  color: rgb(139 92 246 / 0.4);
}
.hx .text-violet-500\/45 {
  color: rgb(139 92 246 / 0.45);
}
.hx .text-violet-500\/5 {
  color: rgb(139 92 246 / 0.05);
}
.hx .text-violet-500\/50 {
  color: rgb(139 92 246 / 0.5);
}
.hx .text-violet-500\/55 {
  color: rgb(139 92 246 / 0.55);
}
.hx .text-violet-500\/60 {
  color: rgb(139 92 246 / 0.6);
}
.hx .text-violet-500\/65 {
  color: rgb(139 92 246 / 0.65);
}
.hx .text-violet-500\/70 {
  color: rgb(139 92 246 / 0.7);
}
.hx .text-violet-500\/75 {
  color: rgb(139 92 246 / 0.75);
}
.hx .text-violet-500\/80 {
  color: rgb(139 92 246 / 0.8);
}
.hx .text-violet-500\/85 {
  color: rgb(139 92 246 / 0.85);
}
.hx .text-violet-500\/90 {
  color: rgb(139 92 246 / 0.9);
}
.hx .text-violet-500\/95 {
  color: rgb(139 92 246 / 0.95);
}
.hx .text-violet-600 {
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}
.hx .text-violet-600\/0 {
  color: rgb(124 58 237 / 0);
}
.hx .text-violet-600\/10 {
  color: rgb(124 58 237 / 0.1);
}
.hx .text-violet-600\/100 {
  color: rgb(124 58 237 / 1);
}
.hx .text-violet-600\/15 {
  color: rgb(124 58 237 / 0.15);
}
.hx .text-violet-600\/20 {
  color: rgb(124 58 237 / 0.2);
}
.hx .text-violet-600\/25 {
  color: rgb(124 58 237 / 0.25);
}
.hx .text-violet-600\/30 {
  color: rgb(124 58 237 / 0.3);
}
.hx .text-violet-600\/35 {
  color: rgb(124 58 237 / 0.35);
}
.hx .text-violet-600\/40 {
  color: rgb(124 58 237 / 0.4);
}
.hx .text-violet-600\/45 {
  color: rgb(124 58 237 / 0.45);
}
.hx .text-violet-600\/5 {
  color: rgb(124 58 237 / 0.05);
}
.hx .text-violet-600\/50 {
  color: rgb(124 58 237 / 0.5);
}
.hx .text-violet-600\/55 {
  color: rgb(124 58 237 / 0.55);
}
.hx .text-violet-600\/60 {
  color: rgb(124 58 237 / 0.6);
}
.hx .text-violet-600\/65 {
  color: rgb(124 58 237 / 0.65);
}
.hx .text-violet-600\/70 {
  color: rgb(124 58 237 / 0.7);
}
.hx .text-violet-600\/75 {
  color: rgb(124 58 237 / 0.75);
}
.hx .text-violet-600\/80 {
  color: rgb(124 58 237 / 0.8);
}
.hx .text-violet-600\/85 {
  color: rgb(124 58 237 / 0.85);
}
.hx .text-violet-600\/90 {
  color: rgb(124 58 237 / 0.9);
}
.hx .text-violet-600\/95 {
  color: rgb(124 58 237 / 0.95);
}
.hx .text-violet-700 {
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}
.hx .text-violet-700\/0 {
  color: rgb(109 40 217 / 0);
}
.hx .text-violet-700\/10 {
  color: rgb(109 40 217 / 0.1);
}
.hx .text-violet-700\/100 {
  color: rgb(109 40 217 / 1);
}
.hx .text-violet-700\/15 {
  color: rgb(109 40 217 / 0.15);
}
.hx .text-violet-700\/20 {
  color: rgb(109 40 217 / 0.2);
}
.hx .text-violet-700\/25 {
  color: rgb(109 40 217 / 0.25);
}
.hx .text-violet-700\/30 {
  color: rgb(109 40 217 / 0.3);
}
.hx .text-violet-700\/35 {
  color: rgb(109 40 217 / 0.35);
}
.hx .text-violet-700\/40 {
  color: rgb(109 40 217 / 0.4);
}
.hx .text-violet-700\/45 {
  color: rgb(109 40 217 / 0.45);
}
.hx .text-violet-700\/5 {
  color: rgb(109 40 217 / 0.05);
}
.hx .text-violet-700\/50 {
  color: rgb(109 40 217 / 0.5);
}
.hx .text-violet-700\/55 {
  color: rgb(109 40 217 / 0.55);
}
.hx .text-violet-700\/60 {
  color: rgb(109 40 217 / 0.6);
}
.hx .text-violet-700\/65 {
  color: rgb(109 40 217 / 0.65);
}
.hx .text-violet-700\/70 {
  color: rgb(109 40 217 / 0.7);
}
.hx .text-violet-700\/75 {
  color: rgb(109 40 217 / 0.75);
}
.hx .text-violet-700\/80 {
  color: rgb(109 40 217 / 0.8);
}
.hx .text-violet-700\/85 {
  color: rgb(109 40 217 / 0.85);
}
.hx .text-violet-700\/90 {
  color: rgb(109 40 217 / 0.9);
}
.hx .text-violet-700\/95 {
  color: rgb(109 40 217 / 0.95);
}
.hx .text-violet-800 {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.hx .text-violet-800\/0 {
  color: rgb(91 33 182 / 0);
}
.hx .text-violet-800\/10 {
  color: rgb(91 33 182 / 0.1);
}
.hx .text-violet-800\/100 {
  color: rgb(91 33 182 / 1);
}
.hx .text-violet-800\/15 {
  color: rgb(91 33 182 / 0.15);
}
.hx .text-violet-800\/20 {
  color: rgb(91 33 182 / 0.2);
}
.hx .text-violet-800\/25 {
  color: rgb(91 33 182 / 0.25);
}
.hx .text-violet-800\/30 {
  color: rgb(91 33 182 / 0.3);
}
.hx .text-violet-800\/35 {
  color: rgb(91 33 182 / 0.35);
}
.hx .text-violet-800\/40 {
  color: rgb(91 33 182 / 0.4);
}
.hx .text-violet-800\/45 {
  color: rgb(91 33 182 / 0.45);
}
.hx .text-violet-800\/5 {
  color: rgb(91 33 182 / 0.05);
}
.hx .text-violet-800\/50 {
  color: rgb(91 33 182 / 0.5);
}
.hx .text-violet-800\/55 {
  color: rgb(91 33 182 / 0.55);
}
.hx .text-violet-800\/60 {
  color: rgb(91 33 182 / 0.6);
}
.hx .text-violet-800\/65 {
  color: rgb(91 33 182 / 0.65);
}
.hx .text-violet-800\/70 {
  color: rgb(91 33 182 / 0.7);
}
.hx .text-violet-800\/75 {
  color: rgb(91 33 182 / 0.75);
}
.hx .text-violet-800\/80 {
  color: rgb(91 33 182 / 0.8);
}
.hx .text-violet-800\/85 {
  color: rgb(91 33 182 / 0.85);
}
.hx .text-violet-800\/90 {
  color: rgb(91 33 182 / 0.9);
}
.hx .text-violet-800\/95 {
  color: rgb(91 33 182 / 0.95);
}
.hx .text-violet-900 {
  --tw-text-opacity: 1;
  color: rgb(76 29 149 / var(--tw-text-opacity, 1));
}
.hx .text-violet-900\/0 {
  color: rgb(76 29 149 / 0);
}
.hx .text-violet-900\/10 {
  color: rgb(76 29 149 / 0.1);
}
.hx .text-violet-900\/100 {
  color: rgb(76 29 149 / 1);
}
.hx .text-violet-900\/15 {
  color: rgb(76 29 149 / 0.15);
}
.hx .text-violet-900\/20 {
  color: rgb(76 29 149 / 0.2);
}
.hx .text-violet-900\/25 {
  color: rgb(76 29 149 / 0.25);
}
.hx .text-violet-900\/30 {
  color: rgb(76 29 149 / 0.3);
}
.hx .text-violet-900\/35 {
  color: rgb(76 29 149 / 0.35);
}
.hx .text-violet-900\/40 {
  color: rgb(76 29 149 / 0.4);
}
.hx .text-violet-900\/45 {
  color: rgb(76 29 149 / 0.45);
}
.hx .text-violet-900\/5 {
  color: rgb(76 29 149 / 0.05);
}
.hx .text-violet-900\/50 {
  color: rgb(76 29 149 / 0.5);
}
.hx .text-violet-900\/55 {
  color: rgb(76 29 149 / 0.55);
}
.hx .text-violet-900\/60 {
  color: rgb(76 29 149 / 0.6);
}
.hx .text-violet-900\/65 {
  color: rgb(76 29 149 / 0.65);
}
.hx .text-violet-900\/70 {
  color: rgb(76 29 149 / 0.7);
}
.hx .text-violet-900\/75 {
  color: rgb(76 29 149 / 0.75);
}
.hx .text-violet-900\/80 {
  color: rgb(76 29 149 / 0.8);
}
.hx .text-violet-900\/85 {
  color: rgb(76 29 149 / 0.85);
}
.hx .text-violet-900\/90 {
  color: rgb(76 29 149 / 0.9);
}
.hx .text-violet-900\/95 {
  color: rgb(76 29 149 / 0.95);
}
.hx .text-violet-950 {
  --tw-text-opacity: 1;
  color: rgb(46 16 101 / var(--tw-text-opacity, 1));
}
.hx .text-violet-950\/0 {
  color: rgb(46 16 101 / 0);
}
.hx .text-violet-950\/10 {
  color: rgb(46 16 101 / 0.1);
}
.hx .text-violet-950\/100 {
  color: rgb(46 16 101 / 1);
}
.hx .text-violet-950\/15 {
  color: rgb(46 16 101 / 0.15);
}
.hx .text-violet-950\/20 {
  color: rgb(46 16 101 / 0.2);
}
.hx .text-violet-950\/25 {
  color: rgb(46 16 101 / 0.25);
}
.hx .text-violet-950\/30 {
  color: rgb(46 16 101 / 0.3);
}
.hx .text-violet-950\/35 {
  color: rgb(46 16 101 / 0.35);
}
.hx .text-violet-950\/40 {
  color: rgb(46 16 101 / 0.4);
}
.hx .text-violet-950\/45 {
  color: rgb(46 16 101 / 0.45);
}
.hx .text-violet-950\/5 {
  color: rgb(46 16 101 / 0.05);
}
.hx .text-violet-950\/50 {
  color: rgb(46 16 101 / 0.5);
}
.hx .text-violet-950\/55 {
  color: rgb(46 16 101 / 0.55);
}
.hx .text-violet-950\/60 {
  color: rgb(46 16 101 / 0.6);
}
.hx .text-violet-950\/65 {
  color: rgb(46 16 101 / 0.65);
}
.hx .text-violet-950\/70 {
  color: rgb(46 16 101 / 0.7);
}
.hx .text-violet-950\/75 {
  color: rgb(46 16 101 / 0.75);
}
.hx .text-violet-950\/80 {
  color: rgb(46 16 101 / 0.8);
}
.hx .text-violet-950\/85 {
  color: rgb(46 16 101 / 0.85);
}
.hx .text-violet-950\/90 {
  color: rgb(46 16 101 / 0.9);
}
.hx .text-violet-950\/95 {
  color: rgb(46 16 101 / 0.95);
}
.hx .text-warning {
  --tw-text-opacity: 1;
  color: rgb(243 146 55 / var(--tw-text-opacity, 1));
}
.hx .text-warning-100 {
  --tw-text-opacity: 1;
  color: rgb(253 238 215 / var(--tw-text-opacity, 1));
}
.hx .text-warning-100\/0 {
  color: rgb(253 238 215 / 0);
}
.hx .text-warning-100\/10 {
  color: rgb(253 238 215 / 0.1);
}
.hx .text-warning-100\/100 {
  color: rgb(253 238 215 / 1);
}
.hx .text-warning-100\/15 {
  color: rgb(253 238 215 / 0.15);
}
.hx .text-warning-100\/20 {
  color: rgb(253 238 215 / 0.2);
}
.hx .text-warning-100\/25 {
  color: rgb(253 238 215 / 0.25);
}
.hx .text-warning-100\/30 {
  color: rgb(253 238 215 / 0.3);
}
.hx .text-warning-100\/35 {
  color: rgb(253 238 215 / 0.35);
}
.hx .text-warning-100\/40 {
  color: rgb(253 238 215 / 0.4);
}
.hx .text-warning-100\/45 {
  color: rgb(253 238 215 / 0.45);
}
.hx .text-warning-100\/5 {
  color: rgb(253 238 215 / 0.05);
}
.hx .text-warning-100\/50 {
  color: rgb(253 238 215 / 0.5);
}
.hx .text-warning-100\/55 {
  color: rgb(253 238 215 / 0.55);
}
.hx .text-warning-100\/60 {
  color: rgb(253 238 215 / 0.6);
}
.hx .text-warning-100\/65 {
  color: rgb(253 238 215 / 0.65);
}
.hx .text-warning-100\/70 {
  color: rgb(253 238 215 / 0.7);
}
.hx .text-warning-100\/75 {
  color: rgb(253 238 215 / 0.75);
}
.hx .text-warning-100\/80 {
  color: rgb(253 238 215 / 0.8);
}
.hx .text-warning-100\/85 {
  color: rgb(253 238 215 / 0.85);
}
.hx .text-warning-100\/90 {
  color: rgb(253 238 215 / 0.9);
}
.hx .text-warning-100\/95 {
  color: rgb(253 238 215 / 0.95);
}
.hx .text-warning-200 {
  --tw-text-opacity: 1;
  color: rgb(251 218 173 / var(--tw-text-opacity, 1));
}
.hx .text-warning-200\/0 {
  color: rgb(251 218 173 / 0);
}
.hx .text-warning-200\/10 {
  color: rgb(251 218 173 / 0.1);
}
.hx .text-warning-200\/100 {
  color: rgb(251 218 173 / 1);
}
.hx .text-warning-200\/15 {
  color: rgb(251 218 173 / 0.15);
}
.hx .text-warning-200\/20 {
  color: rgb(251 218 173 / 0.2);
}
.hx .text-warning-200\/25 {
  color: rgb(251 218 173 / 0.25);
}
.hx .text-warning-200\/30 {
  color: rgb(251 218 173 / 0.3);
}
.hx .text-warning-200\/35 {
  color: rgb(251 218 173 / 0.35);
}
.hx .text-warning-200\/40 {
  color: rgb(251 218 173 / 0.4);
}
.hx .text-warning-200\/45 {
  color: rgb(251 218 173 / 0.45);
}
.hx .text-warning-200\/5 {
  color: rgb(251 218 173 / 0.05);
}
.hx .text-warning-200\/50 {
  color: rgb(251 218 173 / 0.5);
}
.hx .text-warning-200\/55 {
  color: rgb(251 218 173 / 0.55);
}
.hx .text-warning-200\/60 {
  color: rgb(251 218 173 / 0.6);
}
.hx .text-warning-200\/65 {
  color: rgb(251 218 173 / 0.65);
}
.hx .text-warning-200\/70 {
  color: rgb(251 218 173 / 0.7);
}
.hx .text-warning-200\/75 {
  color: rgb(251 218 173 / 0.75);
}
.hx .text-warning-200\/80 {
  color: rgb(251 218 173 / 0.8);
}
.hx .text-warning-200\/85 {
  color: rgb(251 218 173 / 0.85);
}
.hx .text-warning-200\/90 {
  color: rgb(251 218 173 / 0.9);
}
.hx .text-warning-200\/95 {
  color: rgb(251 218 173 / 0.95);
}
.hx .text-warning-300 {
  --tw-text-opacity: 1;
  color: rgb(248 190 121 / var(--tw-text-opacity, 1));
}
.hx .text-warning-300\/0 {
  color: rgb(248 190 121 / 0);
}
.hx .text-warning-300\/10 {
  color: rgb(248 190 121 / 0.1);
}
.hx .text-warning-300\/100 {
  color: rgb(248 190 121 / 1);
}
.hx .text-warning-300\/15 {
  color: rgb(248 190 121 / 0.15);
}
.hx .text-warning-300\/20 {
  color: rgb(248 190 121 / 0.2);
}
.hx .text-warning-300\/25 {
  color: rgb(248 190 121 / 0.25);
}
.hx .text-warning-300\/30 {
  color: rgb(248 190 121 / 0.3);
}
.hx .text-warning-300\/35 {
  color: rgb(248 190 121 / 0.35);
}
.hx .text-warning-300\/40 {
  color: rgb(248 190 121 / 0.4);
}
.hx .text-warning-300\/45 {
  color: rgb(248 190 121 / 0.45);
}
.hx .text-warning-300\/5 {
  color: rgb(248 190 121 / 0.05);
}
.hx .text-warning-300\/50 {
  color: rgb(248 190 121 / 0.5);
}
.hx .text-warning-300\/55 {
  color: rgb(248 190 121 / 0.55);
}
.hx .text-warning-300\/60 {
  color: rgb(248 190 121 / 0.6);
}
.hx .text-warning-300\/65 {
  color: rgb(248 190 121 / 0.65);
}
.hx .text-warning-300\/70 {
  color: rgb(248 190 121 / 0.7);
}
.hx .text-warning-300\/75 {
  color: rgb(248 190 121 / 0.75);
}
.hx .text-warning-300\/80 {
  color: rgb(248 190 121 / 0.8);
}
.hx .text-warning-300\/85 {
  color: rgb(248 190 121 / 0.85);
}
.hx .text-warning-300\/90 {
  color: rgb(248 190 121 / 0.9);
}
.hx .text-warning-300\/95 {
  color: rgb(248 190 121 / 0.95);
}
.hx .text-warning-400 {
  --tw-text-opacity: 1;
  color: rgb(243 146 55 / var(--tw-text-opacity, 1));
}
.hx .text-warning-400\/0 {
  color: rgb(243 146 55 / 0);
}
.hx .text-warning-400\/10 {
  color: rgb(243 146 55 / 0.1);
}
.hx .text-warning-400\/100 {
  color: rgb(243 146 55 / 1);
}
.hx .text-warning-400\/15 {
  color: rgb(243 146 55 / 0.15);
}
.hx .text-warning-400\/20 {
  color: rgb(243 146 55 / 0.2);
}
.hx .text-warning-400\/25 {
  color: rgb(243 146 55 / 0.25);
}
.hx .text-warning-400\/30 {
  color: rgb(243 146 55 / 0.3);
}
.hx .text-warning-400\/35 {
  color: rgb(243 146 55 / 0.35);
}
.hx .text-warning-400\/40 {
  color: rgb(243 146 55 / 0.4);
}
.hx .text-warning-400\/45 {
  color: rgb(243 146 55 / 0.45);
}
.hx .text-warning-400\/5 {
  color: rgb(243 146 55 / 0.05);
}
.hx .text-warning-400\/50 {
  color: rgb(243 146 55 / 0.5);
}
.hx .text-warning-400\/55 {
  color: rgb(243 146 55 / 0.55);
}
.hx .text-warning-400\/60 {
  color: rgb(243 146 55 / 0.6);
}
.hx .text-warning-400\/65 {
  color: rgb(243 146 55 / 0.65);
}
.hx .text-warning-400\/70 {
  color: rgb(243 146 55 / 0.7);
}
.hx .text-warning-400\/75 {
  color: rgb(243 146 55 / 0.75);
}
.hx .text-warning-400\/80 {
  color: rgb(243 146 55 / 0.8);
}
.hx .text-warning-400\/85 {
  color: rgb(243 146 55 / 0.85);
}
.hx .text-warning-400\/90 {
  color: rgb(243 146 55 / 0.9);
}
.hx .text-warning-400\/95 {
  color: rgb(243 146 55 / 0.95);
}
.hx .text-warning-50 {
  --tw-text-opacity: 1;
  color: rgb(254 248 238 / var(--tw-text-opacity, 1));
}
.hx .text-warning-50\/0 {
  color: rgb(254 248 238 / 0);
}
.hx .text-warning-50\/10 {
  color: rgb(254 248 238 / 0.1);
}
.hx .text-warning-50\/100 {
  color: rgb(254 248 238 / 1);
}
.hx .text-warning-50\/15 {
  color: rgb(254 248 238 / 0.15);
}
.hx .text-warning-50\/20 {
  color: rgb(254 248 238 / 0.2);
}
.hx .text-warning-50\/25 {
  color: rgb(254 248 238 / 0.25);
}
.hx .text-warning-50\/30 {
  color: rgb(254 248 238 / 0.3);
}
.hx .text-warning-50\/35 {
  color: rgb(254 248 238 / 0.35);
}
.hx .text-warning-50\/40 {
  color: rgb(254 248 238 / 0.4);
}
.hx .text-warning-50\/45 {
  color: rgb(254 248 238 / 0.45);
}
.hx .text-warning-50\/5 {
  color: rgb(254 248 238 / 0.05);
}
.hx .text-warning-50\/50 {
  color: rgb(254 248 238 / 0.5);
}
.hx .text-warning-50\/55 {
  color: rgb(254 248 238 / 0.55);
}
.hx .text-warning-50\/60 {
  color: rgb(254 248 238 / 0.6);
}
.hx .text-warning-50\/65 {
  color: rgb(254 248 238 / 0.65);
}
.hx .text-warning-50\/70 {
  color: rgb(254 248 238 / 0.7);
}
.hx .text-warning-50\/75 {
  color: rgb(254 248 238 / 0.75);
}
.hx .text-warning-50\/80 {
  color: rgb(254 248 238 / 0.8);
}
.hx .text-warning-50\/85 {
  color: rgb(254 248 238 / 0.85);
}
.hx .text-warning-50\/90 {
  color: rgb(254 248 238 / 0.9);
}
.hx .text-warning-50\/95 {
  color: rgb(254 248 238 / 0.95);
}
.hx .text-warning-500 {
  --tw-text-opacity: 1;
  color: rgb(240 124 31 / var(--tw-text-opacity, 1));
}
.hx .text-warning-500\/0 {
  color: rgb(240 124 31 / 0);
}
.hx .text-warning-500\/10 {
  color: rgb(240 124 31 / 0.1);
}
.hx .text-warning-500\/100 {
  color: rgb(240 124 31 / 1);
}
.hx .text-warning-500\/15 {
  color: rgb(240 124 31 / 0.15);
}
.hx .text-warning-500\/20 {
  color: rgb(240 124 31 / 0.2);
}
.hx .text-warning-500\/25 {
  color: rgb(240 124 31 / 0.25);
}
.hx .text-warning-500\/30 {
  color: rgb(240 124 31 / 0.3);
}
.hx .text-warning-500\/35 {
  color: rgb(240 124 31 / 0.35);
}
.hx .text-warning-500\/40 {
  color: rgb(240 124 31 / 0.4);
}
.hx .text-warning-500\/45 {
  color: rgb(240 124 31 / 0.45);
}
.hx .text-warning-500\/5 {
  color: rgb(240 124 31 / 0.05);
}
.hx .text-warning-500\/50 {
  color: rgb(240 124 31 / 0.5);
}
.hx .text-warning-500\/55 {
  color: rgb(240 124 31 / 0.55);
}
.hx .text-warning-500\/60 {
  color: rgb(240 124 31 / 0.6);
}
.hx .text-warning-500\/65 {
  color: rgb(240 124 31 / 0.65);
}
.hx .text-warning-500\/70 {
  color: rgb(240 124 31 / 0.7);
}
.hx .text-warning-500\/75 {
  color: rgb(240 124 31 / 0.75);
}
.hx .text-warning-500\/80 {
  color: rgb(240 124 31 / 0.8);
}
.hx .text-warning-500\/85 {
  color: rgb(240 124 31 / 0.85);
}
.hx .text-warning-500\/90 {
  color: rgb(240 124 31 / 0.9);
}
.hx .text-warning-500\/95 {
  color: rgb(240 124 31 / 0.95);
}
.hx .text-warning-600 {
  --tw-text-opacity: 1;
  color: rgb(226 98 20 / var(--tw-text-opacity, 1));
}
.hx .text-warning-600\/0 {
  color: rgb(226 98 20 / 0);
}
.hx .text-warning-600\/10 {
  color: rgb(226 98 20 / 0.1);
}
.hx .text-warning-600\/100 {
  color: rgb(226 98 20 / 1);
}
.hx .text-warning-600\/15 {
  color: rgb(226 98 20 / 0.15);
}
.hx .text-warning-600\/20 {
  color: rgb(226 98 20 / 0.2);
}
.hx .text-warning-600\/25 {
  color: rgb(226 98 20 / 0.25);
}
.hx .text-warning-600\/30 {
  color: rgb(226 98 20 / 0.3);
}
.hx .text-warning-600\/35 {
  color: rgb(226 98 20 / 0.35);
}
.hx .text-warning-600\/40 {
  color: rgb(226 98 20 / 0.4);
}
.hx .text-warning-600\/45 {
  color: rgb(226 98 20 / 0.45);
}
.hx .text-warning-600\/5 {
  color: rgb(226 98 20 / 0.05);
}
.hx .text-warning-600\/50 {
  color: rgb(226 98 20 / 0.5);
}
.hx .text-warning-600\/55 {
  color: rgb(226 98 20 / 0.55);
}
.hx .text-warning-600\/60 {
  color: rgb(226 98 20 / 0.6);
}
.hx .text-warning-600\/65 {
  color: rgb(226 98 20 / 0.65);
}
.hx .text-warning-600\/70 {
  color: rgb(226 98 20 / 0.7);
}
.hx .text-warning-600\/75 {
  color: rgb(226 98 20 / 0.75);
}
.hx .text-warning-600\/80 {
  color: rgb(226 98 20 / 0.8);
}
.hx .text-warning-600\/85 {
  color: rgb(226 98 20 / 0.85);
}
.hx .text-warning-600\/90 {
  color: rgb(226 98 20 / 0.9);
}
.hx .text-warning-600\/95 {
  color: rgb(226 98 20 / 0.95);
}
.hx .text-warning-700 {
  --tw-text-opacity: 1;
  color: rgb(187 74 19 / var(--tw-text-opacity, 1));
}
.hx .text-warning-700\/0 {
  color: rgb(187 74 19 / 0);
}
.hx .text-warning-700\/10 {
  color: rgb(187 74 19 / 0.1);
}
.hx .text-warning-700\/100 {
  color: rgb(187 74 19 / 1);
}
.hx .text-warning-700\/15 {
  color: rgb(187 74 19 / 0.15);
}
.hx .text-warning-700\/20 {
  color: rgb(187 74 19 / 0.2);
}
.hx .text-warning-700\/25 {
  color: rgb(187 74 19 / 0.25);
}
.hx .text-warning-700\/30 {
  color: rgb(187 74 19 / 0.3);
}
.hx .text-warning-700\/35 {
  color: rgb(187 74 19 / 0.35);
}
.hx .text-warning-700\/40 {
  color: rgb(187 74 19 / 0.4);
}
.hx .text-warning-700\/45 {
  color: rgb(187 74 19 / 0.45);
}
.hx .text-warning-700\/5 {
  color: rgb(187 74 19 / 0.05);
}
.hx .text-warning-700\/50 {
  color: rgb(187 74 19 / 0.5);
}
.hx .text-warning-700\/55 {
  color: rgb(187 74 19 / 0.55);
}
.hx .text-warning-700\/60 {
  color: rgb(187 74 19 / 0.6);
}
.hx .text-warning-700\/65 {
  color: rgb(187 74 19 / 0.65);
}
.hx .text-warning-700\/70 {
  color: rgb(187 74 19 / 0.7);
}
.hx .text-warning-700\/75 {
  color: rgb(187 74 19 / 0.75);
}
.hx .text-warning-700\/80 {
  color: rgb(187 74 19 / 0.8);
}
.hx .text-warning-700\/85 {
  color: rgb(187 74 19 / 0.85);
}
.hx .text-warning-700\/90 {
  color: rgb(187 74 19 / 0.9);
}
.hx .text-warning-700\/95 {
  color: rgb(187 74 19 / 0.95);
}
.hx .text-warning-800 {
  --tw-text-opacity: 1;
  color: rgb(149 59 23 / var(--tw-text-opacity, 1));
}
.hx .text-warning-800\/0 {
  color: rgb(149 59 23 / 0);
}
.hx .text-warning-800\/10 {
  color: rgb(149 59 23 / 0.1);
}
.hx .text-warning-800\/100 {
  color: rgb(149 59 23 / 1);
}
.hx .text-warning-800\/15 {
  color: rgb(149 59 23 / 0.15);
}
.hx .text-warning-800\/20 {
  color: rgb(149 59 23 / 0.2);
}
.hx .text-warning-800\/25 {
  color: rgb(149 59 23 / 0.25);
}
.hx .text-warning-800\/30 {
  color: rgb(149 59 23 / 0.3);
}
.hx .text-warning-800\/35 {
  color: rgb(149 59 23 / 0.35);
}
.hx .text-warning-800\/40 {
  color: rgb(149 59 23 / 0.4);
}
.hx .text-warning-800\/45 {
  color: rgb(149 59 23 / 0.45);
}
.hx .text-warning-800\/5 {
  color: rgb(149 59 23 / 0.05);
}
.hx .text-warning-800\/50 {
  color: rgb(149 59 23 / 0.5);
}
.hx .text-warning-800\/55 {
  color: rgb(149 59 23 / 0.55);
}
.hx .text-warning-800\/60 {
  color: rgb(149 59 23 / 0.6);
}
.hx .text-warning-800\/65 {
  color: rgb(149 59 23 / 0.65);
}
.hx .text-warning-800\/70 {
  color: rgb(149 59 23 / 0.7);
}
.hx .text-warning-800\/75 {
  color: rgb(149 59 23 / 0.75);
}
.hx .text-warning-800\/80 {
  color: rgb(149 59 23 / 0.8);
}
.hx .text-warning-800\/85 {
  color: rgb(149 59 23 / 0.85);
}
.hx .text-warning-800\/90 {
  color: rgb(149 59 23 / 0.9);
}
.hx .text-warning-800\/95 {
  color: rgb(149 59 23 / 0.95);
}
.hx .text-warning-900 {
  --tw-text-opacity: 1;
  color: rgb(120 50 22 / var(--tw-text-opacity, 1));
}
.hx .text-warning-900\/0 {
  color: rgb(120 50 22 / 0);
}
.hx .text-warning-900\/10 {
  color: rgb(120 50 22 / 0.1);
}
.hx .text-warning-900\/100 {
  color: rgb(120 50 22 / 1);
}
.hx .text-warning-900\/15 {
  color: rgb(120 50 22 / 0.15);
}
.hx .text-warning-900\/20 {
  color: rgb(120 50 22 / 0.2);
}
.hx .text-warning-900\/25 {
  color: rgb(120 50 22 / 0.25);
}
.hx .text-warning-900\/30 {
  color: rgb(120 50 22 / 0.3);
}
.hx .text-warning-900\/35 {
  color: rgb(120 50 22 / 0.35);
}
.hx .text-warning-900\/40 {
  color: rgb(120 50 22 / 0.4);
}
.hx .text-warning-900\/45 {
  color: rgb(120 50 22 / 0.45);
}
.hx .text-warning-900\/5 {
  color: rgb(120 50 22 / 0.05);
}
.hx .text-warning-900\/50 {
  color: rgb(120 50 22 / 0.5);
}
.hx .text-warning-900\/55 {
  color: rgb(120 50 22 / 0.55);
}
.hx .text-warning-900\/60 {
  color: rgb(120 50 22 / 0.6);
}
.hx .text-warning-900\/65 {
  color: rgb(120 50 22 / 0.65);
}
.hx .text-warning-900\/70 {
  color: rgb(120 50 22 / 0.7);
}
.hx .text-warning-900\/75 {
  color: rgb(120 50 22 / 0.75);
}
.hx .text-warning-900\/80 {
  color: rgb(120 50 22 / 0.8);
}
.hx .text-warning-900\/85 {
  color: rgb(120 50 22 / 0.85);
}
.hx .text-warning-900\/90 {
  color: rgb(120 50 22 / 0.9);
}
.hx .text-warning-900\/95 {
  color: rgb(120 50 22 / 0.95);
}
.hx .text-warning-950 {
  --tw-text-opacity: 1;
  color: rgb(65 23 9 / var(--tw-text-opacity, 1));
}
.hx .text-warning-950\/0 {
  color: rgb(65 23 9 / 0);
}
.hx .text-warning-950\/10 {
  color: rgb(65 23 9 / 0.1);
}
.hx .text-warning-950\/100 {
  color: rgb(65 23 9 / 1);
}
.hx .text-warning-950\/15 {
  color: rgb(65 23 9 / 0.15);
}
.hx .text-warning-950\/20 {
  color: rgb(65 23 9 / 0.2);
}
.hx .text-warning-950\/25 {
  color: rgb(65 23 9 / 0.25);
}
.hx .text-warning-950\/30 {
  color: rgb(65 23 9 / 0.3);
}
.hx .text-warning-950\/35 {
  color: rgb(65 23 9 / 0.35);
}
.hx .text-warning-950\/40 {
  color: rgb(65 23 9 / 0.4);
}
.hx .text-warning-950\/45 {
  color: rgb(65 23 9 / 0.45);
}
.hx .text-warning-950\/5 {
  color: rgb(65 23 9 / 0.05);
}
.hx .text-warning-950\/50 {
  color: rgb(65 23 9 / 0.5);
}
.hx .text-warning-950\/55 {
  color: rgb(65 23 9 / 0.55);
}
.hx .text-warning-950\/60 {
  color: rgb(65 23 9 / 0.6);
}
.hx .text-warning-950\/65 {
  color: rgb(65 23 9 / 0.65);
}
.hx .text-warning-950\/70 {
  color: rgb(65 23 9 / 0.7);
}
.hx .text-warning-950\/75 {
  color: rgb(65 23 9 / 0.75);
}
.hx .text-warning-950\/80 {
  color: rgb(65 23 9 / 0.8);
}
.hx .text-warning-950\/85 {
  color: rgb(65 23 9 / 0.85);
}
.hx .text-warning-950\/90 {
  color: rgb(65 23 9 / 0.9);
}
.hx .text-warning-950\/95 {
  color: rgb(65 23 9 / 0.95);
}
.hx .text-warning-content {
  --tw-text-opacity: 1;
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity, 1)));
}
.hx .text-warning-content\/0 {
  color: var(--fallback-wac,oklch(var(--wac)/0));
}
.hx .text-warning-content\/10 {
  color: var(--fallback-wac,oklch(var(--wac)/0.1));
}
.hx .text-warning-content\/100 {
  color: var(--fallback-wac,oklch(var(--wac)/1));
}
.hx .text-warning-content\/15 {
  color: var(--fallback-wac,oklch(var(--wac)/0.15));
}
.hx .text-warning-content\/20 {
  color: var(--fallback-wac,oklch(var(--wac)/0.2));
}
.hx .text-warning-content\/25 {
  color: var(--fallback-wac,oklch(var(--wac)/0.25));
}
.hx .text-warning-content\/30 {
  color: var(--fallback-wac,oklch(var(--wac)/0.3));
}
.hx .text-warning-content\/35 {
  color: var(--fallback-wac,oklch(var(--wac)/0.35));
}
.hx .text-warning-content\/40 {
  color: var(--fallback-wac,oklch(var(--wac)/0.4));
}
.hx .text-warning-content\/45 {
  color: var(--fallback-wac,oklch(var(--wac)/0.45));
}
.hx .text-warning-content\/5 {
  color: var(--fallback-wac,oklch(var(--wac)/0.05));
}
.hx .text-warning-content\/50 {
  color: var(--fallback-wac,oklch(var(--wac)/0.5));
}
.hx .text-warning-content\/55 {
  color: var(--fallback-wac,oklch(var(--wac)/0.55));
}
.hx .text-warning-content\/60 {
  color: var(--fallback-wac,oklch(var(--wac)/0.6));
}
.hx .text-warning-content\/65 {
  color: var(--fallback-wac,oklch(var(--wac)/0.65));
}
.hx .text-warning-content\/70 {
  color: var(--fallback-wac,oklch(var(--wac)/0.7));
}
.hx .text-warning-content\/75 {
  color: var(--fallback-wac,oklch(var(--wac)/0.75));
}
.hx .text-warning-content\/80 {
  color: var(--fallback-wac,oklch(var(--wac)/0.8));
}
.hx .text-warning-content\/85 {
  color: var(--fallback-wac,oklch(var(--wac)/0.85));
}
.hx .text-warning-content\/90 {
  color: var(--fallback-wac,oklch(var(--wac)/0.9));
}
.hx .text-warning-content\/95 {
  color: var(--fallback-wac,oklch(var(--wac)/0.95));
}
.hx .text-warning\/0 {
  color: rgb(243 146 55 / 0);
}
.hx .text-warning\/10 {
  color: rgb(243 146 55 / 0.1);
}
.hx .text-warning\/100 {
  color: rgb(243 146 55 / 1);
}
.hx .text-warning\/15 {
  color: rgb(243 146 55 / 0.15);
}
.hx .text-warning\/20 {
  color: rgb(243 146 55 / 0.2);
}
.hx .text-warning\/25 {
  color: rgb(243 146 55 / 0.25);
}
.hx .text-warning\/30 {
  color: rgb(243 146 55 / 0.3);
}
.hx .text-warning\/35 {
  color: rgb(243 146 55 / 0.35);
}
.hx .text-warning\/40 {
  color: rgb(243 146 55 / 0.4);
}
.hx .text-warning\/45 {
  color: rgb(243 146 55 / 0.45);
}
.hx .text-warning\/5 {
  color: rgb(243 146 55 / 0.05);
}
.hx .text-warning\/50 {
  color: rgb(243 146 55 / 0.5);
}
.hx .text-warning\/55 {
  color: rgb(243 146 55 / 0.55);
}
.hx .text-warning\/60 {
  color: rgb(243 146 55 / 0.6);
}
.hx .text-warning\/65 {
  color: rgb(243 146 55 / 0.65);
}
.hx .text-warning\/70 {
  color: rgb(243 146 55 / 0.7);
}
.hx .text-warning\/75 {
  color: rgb(243 146 55 / 0.75);
}
.hx .text-warning\/80 {
  color: rgb(243 146 55 / 0.8);
}
.hx .text-warning\/85 {
  color: rgb(243 146 55 / 0.85);
}
.hx .text-warning\/90 {
  color: rgb(243 146 55 / 0.9);
}
.hx .text-warning\/95 {
  color: rgb(243 146 55 / 0.95);
}
.hx .text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hx .text-white\/0 {
  color: rgb(255 255 255 / 0);
}
.hx .text-white\/10 {
  color: rgb(255 255 255 / 0.1);
}
.hx .text-white\/100 {
  color: rgb(255 255 255 / 1);
}
.hx .text-white\/15 {
  color: rgb(255 255 255 / 0.15);
}
.hx .text-white\/20 {
  color: rgb(255 255 255 / 0.2);
}
.hx .text-white\/25 {
  color: rgb(255 255 255 / 0.25);
}
.hx .text-white\/30 {
  color: rgb(255 255 255 / 0.3);
}
.hx .text-white\/35 {
  color: rgb(255 255 255 / 0.35);
}
.hx .text-white\/40 {
  color: rgb(255 255 255 / 0.4);
}
.hx .text-white\/45 {
  color: rgb(255 255 255 / 0.45);
}
.hx .text-white\/5 {
  color: rgb(255 255 255 / 0.05);
}
.hx .text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}
.hx .text-white\/55 {
  color: rgb(255 255 255 / 0.55);
}
.hx .text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.hx .text-white\/65 {
  color: rgb(255 255 255 / 0.65);
}
.hx .text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.hx .text-white\/75 {
  color: rgb(255 255 255 / 0.75);
}
.hx .text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.hx .text-white\/85 {
  color: rgb(255 255 255 / 0.85);
}
.hx .text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.hx .text-white\/95 {
  color: rgb(255 255 255 / 0.95);
}
.hx .text-yellow-100 {
  --tw-text-opacity: 1;
  color: rgb(254 249 195 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-100\/0 {
  color: rgb(254 249 195 / 0);
}
.hx .text-yellow-100\/10 {
  color: rgb(254 249 195 / 0.1);
}
.hx .text-yellow-100\/100 {
  color: rgb(254 249 195 / 1);
}
.hx .text-yellow-100\/15 {
  color: rgb(254 249 195 / 0.15);
}
.hx .text-yellow-100\/20 {
  color: rgb(254 249 195 / 0.2);
}
.hx .text-yellow-100\/25 {
  color: rgb(254 249 195 / 0.25);
}
.hx .text-yellow-100\/30 {
  color: rgb(254 249 195 / 0.3);
}
.hx .text-yellow-100\/35 {
  color: rgb(254 249 195 / 0.35);
}
.hx .text-yellow-100\/40 {
  color: rgb(254 249 195 / 0.4);
}
.hx .text-yellow-100\/45 {
  color: rgb(254 249 195 / 0.45);
}
.hx .text-yellow-100\/5 {
  color: rgb(254 249 195 / 0.05);
}
.hx .text-yellow-100\/50 {
  color: rgb(254 249 195 / 0.5);
}
.hx .text-yellow-100\/55 {
  color: rgb(254 249 195 / 0.55);
}
.hx .text-yellow-100\/60 {
  color: rgb(254 249 195 / 0.6);
}
.hx .text-yellow-100\/65 {
  color: rgb(254 249 195 / 0.65);
}
.hx .text-yellow-100\/70 {
  color: rgb(254 249 195 / 0.7);
}
.hx .text-yellow-100\/75 {
  color: rgb(254 249 195 / 0.75);
}
.hx .text-yellow-100\/80 {
  color: rgb(254 249 195 / 0.8);
}
.hx .text-yellow-100\/85 {
  color: rgb(254 249 195 / 0.85);
}
.hx .text-yellow-100\/90 {
  color: rgb(254 249 195 / 0.9);
}
.hx .text-yellow-100\/95 {
  color: rgb(254 249 195 / 0.95);
}
.hx .text-yellow-200 {
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-200\/0 {
  color: rgb(254 240 138 / 0);
}
.hx .text-yellow-200\/10 {
  color: rgb(254 240 138 / 0.1);
}
.hx .text-yellow-200\/100 {
  color: rgb(254 240 138 / 1);
}
.hx .text-yellow-200\/15 {
  color: rgb(254 240 138 / 0.15);
}
.hx .text-yellow-200\/20 {
  color: rgb(254 240 138 / 0.2);
}
.hx .text-yellow-200\/25 {
  color: rgb(254 240 138 / 0.25);
}
.hx .text-yellow-200\/30 {
  color: rgb(254 240 138 / 0.3);
}
.hx .text-yellow-200\/35 {
  color: rgb(254 240 138 / 0.35);
}
.hx .text-yellow-200\/40 {
  color: rgb(254 240 138 / 0.4);
}
.hx .text-yellow-200\/45 {
  color: rgb(254 240 138 / 0.45);
}
.hx .text-yellow-200\/5 {
  color: rgb(254 240 138 / 0.05);
}
.hx .text-yellow-200\/50 {
  color: rgb(254 240 138 / 0.5);
}
.hx .text-yellow-200\/55 {
  color: rgb(254 240 138 / 0.55);
}
.hx .text-yellow-200\/60 {
  color: rgb(254 240 138 / 0.6);
}
.hx .text-yellow-200\/65 {
  color: rgb(254 240 138 / 0.65);
}
.hx .text-yellow-200\/70 {
  color: rgb(254 240 138 / 0.7);
}
.hx .text-yellow-200\/75 {
  color: rgb(254 240 138 / 0.75);
}
.hx .text-yellow-200\/80 {
  color: rgb(254 240 138 / 0.8);
}
.hx .text-yellow-200\/85 {
  color: rgb(254 240 138 / 0.85);
}
.hx .text-yellow-200\/90 {
  color: rgb(254 240 138 / 0.9);
}
.hx .text-yellow-200\/95 {
  color: rgb(254 240 138 / 0.95);
}
.hx .text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-300\/0 {
  color: rgb(253 224 71 / 0);
}
.hx .text-yellow-300\/10 {
  color: rgb(253 224 71 / 0.1);
}
.hx .text-yellow-300\/100 {
  color: rgb(253 224 71 / 1);
}
.hx .text-yellow-300\/15 {
  color: rgb(253 224 71 / 0.15);
}
.hx .text-yellow-300\/20 {
  color: rgb(253 224 71 / 0.2);
}
.hx .text-yellow-300\/25 {
  color: rgb(253 224 71 / 0.25);
}
.hx .text-yellow-300\/30 {
  color: rgb(253 224 71 / 0.3);
}
.hx .text-yellow-300\/35 {
  color: rgb(253 224 71 / 0.35);
}
.hx .text-yellow-300\/40 {
  color: rgb(253 224 71 / 0.4);
}
.hx .text-yellow-300\/45 {
  color: rgb(253 224 71 / 0.45);
}
.hx .text-yellow-300\/5 {
  color: rgb(253 224 71 / 0.05);
}
.hx .text-yellow-300\/50 {
  color: rgb(253 224 71 / 0.5);
}
.hx .text-yellow-300\/55 {
  color: rgb(253 224 71 / 0.55);
}
.hx .text-yellow-300\/60 {
  color: rgb(253 224 71 / 0.6);
}
.hx .text-yellow-300\/65 {
  color: rgb(253 224 71 / 0.65);
}
.hx .text-yellow-300\/70 {
  color: rgb(253 224 71 / 0.7);
}
.hx .text-yellow-300\/75 {
  color: rgb(253 224 71 / 0.75);
}
.hx .text-yellow-300\/80 {
  color: rgb(253 224 71 / 0.8);
}
.hx .text-yellow-300\/85 {
  color: rgb(253 224 71 / 0.85);
}
.hx .text-yellow-300\/90 {
  color: rgb(253 224 71 / 0.9);
}
.hx .text-yellow-300\/95 {
  color: rgb(253 224 71 / 0.95);
}
.hx .text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-400\/0 {
  color: rgb(250 204 21 / 0);
}
.hx .text-yellow-400\/10 {
  color: rgb(250 204 21 / 0.1);
}
.hx .text-yellow-400\/100 {
  color: rgb(250 204 21 / 1);
}
.hx .text-yellow-400\/15 {
  color: rgb(250 204 21 / 0.15);
}
.hx .text-yellow-400\/20 {
  color: rgb(250 204 21 / 0.2);
}
.hx .text-yellow-400\/25 {
  color: rgb(250 204 21 / 0.25);
}
.hx .text-yellow-400\/30 {
  color: rgb(250 204 21 / 0.3);
}
.hx .text-yellow-400\/35 {
  color: rgb(250 204 21 / 0.35);
}
.hx .text-yellow-400\/40 {
  color: rgb(250 204 21 / 0.4);
}
.hx .text-yellow-400\/45 {
  color: rgb(250 204 21 / 0.45);
}
.hx .text-yellow-400\/5 {
  color: rgb(250 204 21 / 0.05);
}
.hx .text-yellow-400\/50 {
  color: rgb(250 204 21 / 0.5);
}
.hx .text-yellow-400\/55 {
  color: rgb(250 204 21 / 0.55);
}
.hx .text-yellow-400\/60 {
  color: rgb(250 204 21 / 0.6);
}
.hx .text-yellow-400\/65 {
  color: rgb(250 204 21 / 0.65);
}
.hx .text-yellow-400\/70 {
  color: rgb(250 204 21 / 0.7);
}
.hx .text-yellow-400\/75 {
  color: rgb(250 204 21 / 0.75);
}
.hx .text-yellow-400\/80 {
  color: rgb(250 204 21 / 0.8);
}
.hx .text-yellow-400\/85 {
  color: rgb(250 204 21 / 0.85);
}
.hx .text-yellow-400\/90 {
  color: rgb(250 204 21 / 0.9);
}
.hx .text-yellow-400\/95 {
  color: rgb(250 204 21 / 0.95);
}
.hx .text-yellow-50 {
  --tw-text-opacity: 1;
  color: rgb(254 252 232 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-50\/0 {
  color: rgb(254 252 232 / 0);
}
.hx .text-yellow-50\/10 {
  color: rgb(254 252 232 / 0.1);
}
.hx .text-yellow-50\/100 {
  color: rgb(254 252 232 / 1);
}
.hx .text-yellow-50\/15 {
  color: rgb(254 252 232 / 0.15);
}
.hx .text-yellow-50\/20 {
  color: rgb(254 252 232 / 0.2);
}
.hx .text-yellow-50\/25 {
  color: rgb(254 252 232 / 0.25);
}
.hx .text-yellow-50\/30 {
  color: rgb(254 252 232 / 0.3);
}
.hx .text-yellow-50\/35 {
  color: rgb(254 252 232 / 0.35);
}
.hx .text-yellow-50\/40 {
  color: rgb(254 252 232 / 0.4);
}
.hx .text-yellow-50\/45 {
  color: rgb(254 252 232 / 0.45);
}
.hx .text-yellow-50\/5 {
  color: rgb(254 252 232 / 0.05);
}
.hx .text-yellow-50\/50 {
  color: rgb(254 252 232 / 0.5);
}
.hx .text-yellow-50\/55 {
  color: rgb(254 252 232 / 0.55);
}
.hx .text-yellow-50\/60 {
  color: rgb(254 252 232 / 0.6);
}
.hx .text-yellow-50\/65 {
  color: rgb(254 252 232 / 0.65);
}
.hx .text-yellow-50\/70 {
  color: rgb(254 252 232 / 0.7);
}
.hx .text-yellow-50\/75 {
  color: rgb(254 252 232 / 0.75);
}
.hx .text-yellow-50\/80 {
  color: rgb(254 252 232 / 0.8);
}
.hx .text-yellow-50\/85 {
  color: rgb(254 252 232 / 0.85);
}
.hx .text-yellow-50\/90 {
  color: rgb(254 252 232 / 0.9);
}
.hx .text-yellow-50\/95 {
  color: rgb(254 252 232 / 0.95);
}
.hx .text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-500\/0 {
  color: rgb(234 179 8 / 0);
}
.hx .text-yellow-500\/10 {
  color: rgb(234 179 8 / 0.1);
}
.hx .text-yellow-500\/100 {
  color: rgb(234 179 8 / 1);
}
.hx .text-yellow-500\/15 {
  color: rgb(234 179 8 / 0.15);
}
.hx .text-yellow-500\/20 {
  color: rgb(234 179 8 / 0.2);
}
.hx .text-yellow-500\/25 {
  color: rgb(234 179 8 / 0.25);
}
.hx .text-yellow-500\/30 {
  color: rgb(234 179 8 / 0.3);
}
.hx .text-yellow-500\/35 {
  color: rgb(234 179 8 / 0.35);
}
.hx .text-yellow-500\/40 {
  color: rgb(234 179 8 / 0.4);
}
.hx .text-yellow-500\/45 {
  color: rgb(234 179 8 / 0.45);
}
.hx .text-yellow-500\/5 {
  color: rgb(234 179 8 / 0.05);
}
.hx .text-yellow-500\/50 {
  color: rgb(234 179 8 / 0.5);
}
.hx .text-yellow-500\/55 {
  color: rgb(234 179 8 / 0.55);
}
.hx .text-yellow-500\/60 {
  color: rgb(234 179 8 / 0.6);
}
.hx .text-yellow-500\/65 {
  color: rgb(234 179 8 / 0.65);
}
.hx .text-yellow-500\/70 {
  color: rgb(234 179 8 / 0.7);
}
.hx .text-yellow-500\/75 {
  color: rgb(234 179 8 / 0.75);
}
.hx .text-yellow-500\/80 {
  color: rgb(234 179 8 / 0.8);
}
.hx .text-yellow-500\/85 {
  color: rgb(234 179 8 / 0.85);
}
.hx .text-yellow-500\/90 {
  color: rgb(234 179 8 / 0.9);
}
.hx .text-yellow-500\/95 {
  color: rgb(234 179 8 / 0.95);
}
.hx .text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-600\/0 {
  color: rgb(202 138 4 / 0);
}
.hx .text-yellow-600\/10 {
  color: rgb(202 138 4 / 0.1);
}
.hx .text-yellow-600\/100 {
  color: rgb(202 138 4 / 1);
}
.hx .text-yellow-600\/15 {
  color: rgb(202 138 4 / 0.15);
}
.hx .text-yellow-600\/20 {
  color: rgb(202 138 4 / 0.2);
}
.hx .text-yellow-600\/25 {
  color: rgb(202 138 4 / 0.25);
}
.hx .text-yellow-600\/30 {
  color: rgb(202 138 4 / 0.3);
}
.hx .text-yellow-600\/35 {
  color: rgb(202 138 4 / 0.35);
}
.hx .text-yellow-600\/40 {
  color: rgb(202 138 4 / 0.4);
}
.hx .text-yellow-600\/45 {
  color: rgb(202 138 4 / 0.45);
}
.hx .text-yellow-600\/5 {
  color: rgb(202 138 4 / 0.05);
}
.hx .text-yellow-600\/50 {
  color: rgb(202 138 4 / 0.5);
}
.hx .text-yellow-600\/55 {
  color: rgb(202 138 4 / 0.55);
}
.hx .text-yellow-600\/60 {
  color: rgb(202 138 4 / 0.6);
}
.hx .text-yellow-600\/65 {
  color: rgb(202 138 4 / 0.65);
}
.hx .text-yellow-600\/70 {
  color: rgb(202 138 4 / 0.7);
}
.hx .text-yellow-600\/75 {
  color: rgb(202 138 4 / 0.75);
}
.hx .text-yellow-600\/80 {
  color: rgb(202 138 4 / 0.8);
}
.hx .text-yellow-600\/85 {
  color: rgb(202 138 4 / 0.85);
}
.hx .text-yellow-600\/90 {
  color: rgb(202 138 4 / 0.9);
}
.hx .text-yellow-600\/95 {
  color: rgb(202 138 4 / 0.95);
}
.hx .text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-700\/0 {
  color: rgb(161 98 7 / 0);
}
.hx .text-yellow-700\/10 {
  color: rgb(161 98 7 / 0.1);
}
.hx .text-yellow-700\/100 {
  color: rgb(161 98 7 / 1);
}
.hx .text-yellow-700\/15 {
  color: rgb(161 98 7 / 0.15);
}
.hx .text-yellow-700\/20 {
  color: rgb(161 98 7 / 0.2);
}
.hx .text-yellow-700\/25 {
  color: rgb(161 98 7 / 0.25);
}
.hx .text-yellow-700\/30 {
  color: rgb(161 98 7 / 0.3);
}
.hx .text-yellow-700\/35 {
  color: rgb(161 98 7 / 0.35);
}
.hx .text-yellow-700\/40 {
  color: rgb(161 98 7 / 0.4);
}
.hx .text-yellow-700\/45 {
  color: rgb(161 98 7 / 0.45);
}
.hx .text-yellow-700\/5 {
  color: rgb(161 98 7 / 0.05);
}
.hx .text-yellow-700\/50 {
  color: rgb(161 98 7 / 0.5);
}
.hx .text-yellow-700\/55 {
  color: rgb(161 98 7 / 0.55);
}
.hx .text-yellow-700\/60 {
  color: rgb(161 98 7 / 0.6);
}
.hx .text-yellow-700\/65 {
  color: rgb(161 98 7 / 0.65);
}
.hx .text-yellow-700\/70 {
  color: rgb(161 98 7 / 0.7);
}
.hx .text-yellow-700\/75 {
  color: rgb(161 98 7 / 0.75);
}
.hx .text-yellow-700\/80 {
  color: rgb(161 98 7 / 0.8);
}
.hx .text-yellow-700\/85 {
  color: rgb(161 98 7 / 0.85);
}
.hx .text-yellow-700\/90 {
  color: rgb(161 98 7 / 0.9);
}
.hx .text-yellow-700\/95 {
  color: rgb(161 98 7 / 0.95);
}
.hx .text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-800\/0 {
  color: rgb(133 77 14 / 0);
}
.hx .text-yellow-800\/10 {
  color: rgb(133 77 14 / 0.1);
}
.hx .text-yellow-800\/100 {
  color: rgb(133 77 14 / 1);
}
.hx .text-yellow-800\/15 {
  color: rgb(133 77 14 / 0.15);
}
.hx .text-yellow-800\/20 {
  color: rgb(133 77 14 / 0.2);
}
.hx .text-yellow-800\/25 {
  color: rgb(133 77 14 / 0.25);
}
.hx .text-yellow-800\/30 {
  color: rgb(133 77 14 / 0.3);
}
.hx .text-yellow-800\/35 {
  color: rgb(133 77 14 / 0.35);
}
.hx .text-yellow-800\/40 {
  color: rgb(133 77 14 / 0.4);
}
.hx .text-yellow-800\/45 {
  color: rgb(133 77 14 / 0.45);
}
.hx .text-yellow-800\/5 {
  color: rgb(133 77 14 / 0.05);
}
.hx .text-yellow-800\/50 {
  color: rgb(133 77 14 / 0.5);
}
.hx .text-yellow-800\/55 {
  color: rgb(133 77 14 / 0.55);
}
.hx .text-yellow-800\/60 {
  color: rgb(133 77 14 / 0.6);
}
.hx .text-yellow-800\/65 {
  color: rgb(133 77 14 / 0.65);
}
.hx .text-yellow-800\/70 {
  color: rgb(133 77 14 / 0.7);
}
.hx .text-yellow-800\/75 {
  color: rgb(133 77 14 / 0.75);
}
.hx .text-yellow-800\/80 {
  color: rgb(133 77 14 / 0.8);
}
.hx .text-yellow-800\/85 {
  color: rgb(133 77 14 / 0.85);
}
.hx .text-yellow-800\/90 {
  color: rgb(133 77 14 / 0.9);
}
.hx .text-yellow-800\/95 {
  color: rgb(133 77 14 / 0.95);
}
.hx .text-yellow-900 {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-900\/0 {
  color: rgb(113 63 18 / 0);
}
.hx .text-yellow-900\/10 {
  color: rgb(113 63 18 / 0.1);
}
.hx .text-yellow-900\/100 {
  color: rgb(113 63 18 / 1);
}
.hx .text-yellow-900\/15 {
  color: rgb(113 63 18 / 0.15);
}
.hx .text-yellow-900\/20 {
  color: rgb(113 63 18 / 0.2);
}
.hx .text-yellow-900\/25 {
  color: rgb(113 63 18 / 0.25);
}
.hx .text-yellow-900\/30 {
  color: rgb(113 63 18 / 0.3);
}
.hx .text-yellow-900\/35 {
  color: rgb(113 63 18 / 0.35);
}
.hx .text-yellow-900\/40 {
  color: rgb(113 63 18 / 0.4);
}
.hx .text-yellow-900\/45 {
  color: rgb(113 63 18 / 0.45);
}
.hx .text-yellow-900\/5 {
  color: rgb(113 63 18 / 0.05);
}
.hx .text-yellow-900\/50 {
  color: rgb(113 63 18 / 0.5);
}
.hx .text-yellow-900\/55 {
  color: rgb(113 63 18 / 0.55);
}
.hx .text-yellow-900\/60 {
  color: rgb(113 63 18 / 0.6);
}
.hx .text-yellow-900\/65 {
  color: rgb(113 63 18 / 0.65);
}
.hx .text-yellow-900\/70 {
  color: rgb(113 63 18 / 0.7);
}
.hx .text-yellow-900\/75 {
  color: rgb(113 63 18 / 0.75);
}
.hx .text-yellow-900\/80 {
  color: rgb(113 63 18 / 0.8);
}
.hx .text-yellow-900\/85 {
  color: rgb(113 63 18 / 0.85);
}
.hx .text-yellow-900\/90 {
  color: rgb(113 63 18 / 0.9);
}
.hx .text-yellow-900\/95 {
  color: rgb(113 63 18 / 0.95);
}
.hx .text-yellow-950 {
  --tw-text-opacity: 1;
  color: rgb(66 32 6 / var(--tw-text-opacity, 1));
}
.hx .text-yellow-950\/0 {
  color: rgb(66 32 6 / 0);
}
.hx .text-yellow-950\/10 {
  color: rgb(66 32 6 / 0.1);
}
.hx .text-yellow-950\/100 {
  color: rgb(66 32 6 / 1);
}
.hx .text-yellow-950\/15 {
  color: rgb(66 32 6 / 0.15);
}
.hx .text-yellow-950\/20 {
  color: rgb(66 32 6 / 0.2);
}
.hx .text-yellow-950\/25 {
  color: rgb(66 32 6 / 0.25);
}
.hx .text-yellow-950\/30 {
  color: rgb(66 32 6 / 0.3);
}
.hx .text-yellow-950\/35 {
  color: rgb(66 32 6 / 0.35);
}
.hx .text-yellow-950\/40 {
  color: rgb(66 32 6 / 0.4);
}
.hx .text-yellow-950\/45 {
  color: rgb(66 32 6 / 0.45);
}
.hx .text-yellow-950\/5 {
  color: rgb(66 32 6 / 0.05);
}
.hx .text-yellow-950\/50 {
  color: rgb(66 32 6 / 0.5);
}
.hx .text-yellow-950\/55 {
  color: rgb(66 32 6 / 0.55);
}
.hx .text-yellow-950\/60 {
  color: rgb(66 32 6 / 0.6);
}
.hx .text-yellow-950\/65 {
  color: rgb(66 32 6 / 0.65);
}
.hx .text-yellow-950\/70 {
  color: rgb(66 32 6 / 0.7);
}
.hx .text-yellow-950\/75 {
  color: rgb(66 32 6 / 0.75);
}
.hx .text-yellow-950\/80 {
  color: rgb(66 32 6 / 0.8);
}
.hx .text-yellow-950\/85 {
  color: rgb(66 32 6 / 0.85);
}
.hx .text-yellow-950\/90 {
  color: rgb(66 32 6 / 0.9);
}
.hx .text-yellow-950\/95 {
  color: rgb(66 32 6 / 0.95);
}
.hx .text-zinc-100 {
  --tw-text-opacity: 1;
  color: rgb(244 244 245 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-100\/0 {
  color: rgb(244 244 245 / 0);
}
.hx .text-zinc-100\/10 {
  color: rgb(244 244 245 / 0.1);
}
.hx .text-zinc-100\/100 {
  color: rgb(244 244 245 / 1);
}
.hx .text-zinc-100\/15 {
  color: rgb(244 244 245 / 0.15);
}
.hx .text-zinc-100\/20 {
  color: rgb(244 244 245 / 0.2);
}
.hx .text-zinc-100\/25 {
  color: rgb(244 244 245 / 0.25);
}
.hx .text-zinc-100\/30 {
  color: rgb(244 244 245 / 0.3);
}
.hx .text-zinc-100\/35 {
  color: rgb(244 244 245 / 0.35);
}
.hx .text-zinc-100\/40 {
  color: rgb(244 244 245 / 0.4);
}
.hx .text-zinc-100\/45 {
  color: rgb(244 244 245 / 0.45);
}
.hx .text-zinc-100\/5 {
  color: rgb(244 244 245 / 0.05);
}
.hx .text-zinc-100\/50 {
  color: rgb(244 244 245 / 0.5);
}
.hx .text-zinc-100\/55 {
  color: rgb(244 244 245 / 0.55);
}
.hx .text-zinc-100\/60 {
  color: rgb(244 244 245 / 0.6);
}
.hx .text-zinc-100\/65 {
  color: rgb(244 244 245 / 0.65);
}
.hx .text-zinc-100\/70 {
  color: rgb(244 244 245 / 0.7);
}
.hx .text-zinc-100\/75 {
  color: rgb(244 244 245 / 0.75);
}
.hx .text-zinc-100\/80 {
  color: rgb(244 244 245 / 0.8);
}
.hx .text-zinc-100\/85 {
  color: rgb(244 244 245 / 0.85);
}
.hx .text-zinc-100\/90 {
  color: rgb(244 244 245 / 0.9);
}
.hx .text-zinc-100\/95 {
  color: rgb(244 244 245 / 0.95);
}
.hx .text-zinc-200 {
  --tw-text-opacity: 1;
  color: rgb(228 228 231 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-200\/0 {
  color: rgb(228 228 231 / 0);
}
.hx .text-zinc-200\/10 {
  color: rgb(228 228 231 / 0.1);
}
.hx .text-zinc-200\/100 {
  color: rgb(228 228 231 / 1);
}
.hx .text-zinc-200\/15 {
  color: rgb(228 228 231 / 0.15);
}
.hx .text-zinc-200\/20 {
  color: rgb(228 228 231 / 0.2);
}
.hx .text-zinc-200\/25 {
  color: rgb(228 228 231 / 0.25);
}
.hx .text-zinc-200\/30 {
  color: rgb(228 228 231 / 0.3);
}
.hx .text-zinc-200\/35 {
  color: rgb(228 228 231 / 0.35);
}
.hx .text-zinc-200\/40 {
  color: rgb(228 228 231 / 0.4);
}
.hx .text-zinc-200\/45 {
  color: rgb(228 228 231 / 0.45);
}
.hx .text-zinc-200\/5 {
  color: rgb(228 228 231 / 0.05);
}
.hx .text-zinc-200\/50 {
  color: rgb(228 228 231 / 0.5);
}
.hx .text-zinc-200\/55 {
  color: rgb(228 228 231 / 0.55);
}
.hx .text-zinc-200\/60 {
  color: rgb(228 228 231 / 0.6);
}
.hx .text-zinc-200\/65 {
  color: rgb(228 228 231 / 0.65);
}
.hx .text-zinc-200\/70 {
  color: rgb(228 228 231 / 0.7);
}
.hx .text-zinc-200\/75 {
  color: rgb(228 228 231 / 0.75);
}
.hx .text-zinc-200\/80 {
  color: rgb(228 228 231 / 0.8);
}
.hx .text-zinc-200\/85 {
  color: rgb(228 228 231 / 0.85);
}
.hx .text-zinc-200\/90 {
  color: rgb(228 228 231 / 0.9);
}
.hx .text-zinc-200\/95 {
  color: rgb(228 228 231 / 0.95);
}
.hx .text-zinc-300 {
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-300\/0 {
  color: rgb(212 212 216 / 0);
}
.hx .text-zinc-300\/10 {
  color: rgb(212 212 216 / 0.1);
}
.hx .text-zinc-300\/100 {
  color: rgb(212 212 216 / 1);
}
.hx .text-zinc-300\/15 {
  color: rgb(212 212 216 / 0.15);
}
.hx .text-zinc-300\/20 {
  color: rgb(212 212 216 / 0.2);
}
.hx .text-zinc-300\/25 {
  color: rgb(212 212 216 / 0.25);
}
.hx .text-zinc-300\/30 {
  color: rgb(212 212 216 / 0.3);
}
.hx .text-zinc-300\/35 {
  color: rgb(212 212 216 / 0.35);
}
.hx .text-zinc-300\/40 {
  color: rgb(212 212 216 / 0.4);
}
.hx .text-zinc-300\/45 {
  color: rgb(212 212 216 / 0.45);
}
.hx .text-zinc-300\/5 {
  color: rgb(212 212 216 / 0.05);
}
.hx .text-zinc-300\/50 {
  color: rgb(212 212 216 / 0.5);
}
.hx .text-zinc-300\/55 {
  color: rgb(212 212 216 / 0.55);
}
.hx .text-zinc-300\/60 {
  color: rgb(212 212 216 / 0.6);
}
.hx .text-zinc-300\/65 {
  color: rgb(212 212 216 / 0.65);
}
.hx .text-zinc-300\/70 {
  color: rgb(212 212 216 / 0.7);
}
.hx .text-zinc-300\/75 {
  color: rgb(212 212 216 / 0.75);
}
.hx .text-zinc-300\/80 {
  color: rgb(212 212 216 / 0.8);
}
.hx .text-zinc-300\/85 {
  color: rgb(212 212 216 / 0.85);
}
.hx .text-zinc-300\/90 {
  color: rgb(212 212 216 / 0.9);
}
.hx .text-zinc-300\/95 {
  color: rgb(212 212 216 / 0.95);
}
.hx .text-zinc-400 {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-400\/0 {
  color: rgb(161 161 170 / 0);
}
.hx .text-zinc-400\/10 {
  color: rgb(161 161 170 / 0.1);
}
.hx .text-zinc-400\/100 {
  color: rgb(161 161 170 / 1);
}
.hx .text-zinc-400\/15 {
  color: rgb(161 161 170 / 0.15);
}
.hx .text-zinc-400\/20 {
  color: rgb(161 161 170 / 0.2);
}
.hx .text-zinc-400\/25 {
  color: rgb(161 161 170 / 0.25);
}
.hx .text-zinc-400\/30 {
  color: rgb(161 161 170 / 0.3);
}
.hx .text-zinc-400\/35 {
  color: rgb(161 161 170 / 0.35);
}
.hx .text-zinc-400\/40 {
  color: rgb(161 161 170 / 0.4);
}
.hx .text-zinc-400\/45 {
  color: rgb(161 161 170 / 0.45);
}
.hx .text-zinc-400\/5 {
  color: rgb(161 161 170 / 0.05);
}
.hx .text-zinc-400\/50 {
  color: rgb(161 161 170 / 0.5);
}
.hx .text-zinc-400\/55 {
  color: rgb(161 161 170 / 0.55);
}
.hx .text-zinc-400\/60 {
  color: rgb(161 161 170 / 0.6);
}
.hx .text-zinc-400\/65 {
  color: rgb(161 161 170 / 0.65);
}
.hx .text-zinc-400\/70 {
  color: rgb(161 161 170 / 0.7);
}
.hx .text-zinc-400\/75 {
  color: rgb(161 161 170 / 0.75);
}
.hx .text-zinc-400\/80 {
  color: rgb(161 161 170 / 0.8);
}
.hx .text-zinc-400\/85 {
  color: rgb(161 161 170 / 0.85);
}
.hx .text-zinc-400\/90 {
  color: rgb(161 161 170 / 0.9);
}
.hx .text-zinc-400\/95 {
  color: rgb(161 161 170 / 0.95);
}
.hx .text-zinc-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-50\/0 {
  color: rgb(250 250 250 / 0);
}
.hx .text-zinc-50\/10 {
  color: rgb(250 250 250 / 0.1);
}
.hx .text-zinc-50\/100 {
  color: rgb(250 250 250 / 1);
}
.hx .text-zinc-50\/15 {
  color: rgb(250 250 250 / 0.15);
}
.hx .text-zinc-50\/20 {
  color: rgb(250 250 250 / 0.2);
}
.hx .text-zinc-50\/25 {
  color: rgb(250 250 250 / 0.25);
}
.hx .text-zinc-50\/30 {
  color: rgb(250 250 250 / 0.3);
}
.hx .text-zinc-50\/35 {
  color: rgb(250 250 250 / 0.35);
}
.hx .text-zinc-50\/40 {
  color: rgb(250 250 250 / 0.4);
}
.hx .text-zinc-50\/45 {
  color: rgb(250 250 250 / 0.45);
}
.hx .text-zinc-50\/5 {
  color: rgb(250 250 250 / 0.05);
}
.hx .text-zinc-50\/50 {
  color: rgb(250 250 250 / 0.5);
}
.hx .text-zinc-50\/55 {
  color: rgb(250 250 250 / 0.55);
}
.hx .text-zinc-50\/60 {
  color: rgb(250 250 250 / 0.6);
}
.hx .text-zinc-50\/65 {
  color: rgb(250 250 250 / 0.65);
}
.hx .text-zinc-50\/70 {
  color: rgb(250 250 250 / 0.7);
}
.hx .text-zinc-50\/75 {
  color: rgb(250 250 250 / 0.75);
}
.hx .text-zinc-50\/80 {
  color: rgb(250 250 250 / 0.8);
}
.hx .text-zinc-50\/85 {
  color: rgb(250 250 250 / 0.85);
}
.hx .text-zinc-50\/90 {
  color: rgb(250 250 250 / 0.9);
}
.hx .text-zinc-50\/95 {
  color: rgb(250 250 250 / 0.95);
}
.hx .text-zinc-500 {
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-500\/0 {
  color: rgb(113 113 122 / 0);
}
.hx .text-zinc-500\/10 {
  color: rgb(113 113 122 / 0.1);
}
.hx .text-zinc-500\/100 {
  color: rgb(113 113 122 / 1);
}
.hx .text-zinc-500\/15 {
  color: rgb(113 113 122 / 0.15);
}
.hx .text-zinc-500\/20 {
  color: rgb(113 113 122 / 0.2);
}
.hx .text-zinc-500\/25 {
  color: rgb(113 113 122 / 0.25);
}
.hx .text-zinc-500\/30 {
  color: rgb(113 113 122 / 0.3);
}
.hx .text-zinc-500\/35 {
  color: rgb(113 113 122 / 0.35);
}
.hx .text-zinc-500\/40 {
  color: rgb(113 113 122 / 0.4);
}
.hx .text-zinc-500\/45 {
  color: rgb(113 113 122 / 0.45);
}
.hx .text-zinc-500\/5 {
  color: rgb(113 113 122 / 0.05);
}
.hx .text-zinc-500\/50 {
  color: rgb(113 113 122 / 0.5);
}
.hx .text-zinc-500\/55 {
  color: rgb(113 113 122 / 0.55);
}
.hx .text-zinc-500\/60 {
  color: rgb(113 113 122 / 0.6);
}
.hx .text-zinc-500\/65 {
  color: rgb(113 113 122 / 0.65);
}
.hx .text-zinc-500\/70 {
  color: rgb(113 113 122 / 0.7);
}
.hx .text-zinc-500\/75 {
  color: rgb(113 113 122 / 0.75);
}
.hx .text-zinc-500\/80 {
  color: rgb(113 113 122 / 0.8);
}
.hx .text-zinc-500\/85 {
  color: rgb(113 113 122 / 0.85);
}
.hx .text-zinc-500\/90 {
  color: rgb(113 113 122 / 0.9);
}
.hx .text-zinc-500\/95 {
  color: rgb(113 113 122 / 0.95);
}
.hx .text-zinc-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-600\/0 {
  color: rgb(82 82 91 / 0);
}
.hx .text-zinc-600\/10 {
  color: rgb(82 82 91 / 0.1);
}
.hx .text-zinc-600\/100 {
  color: rgb(82 82 91 / 1);
}
.hx .text-zinc-600\/15 {
  color: rgb(82 82 91 / 0.15);
}
.hx .text-zinc-600\/20 {
  color: rgb(82 82 91 / 0.2);
}
.hx .text-zinc-600\/25 {
  color: rgb(82 82 91 / 0.25);
}
.hx .text-zinc-600\/30 {
  color: rgb(82 82 91 / 0.3);
}
.hx .text-zinc-600\/35 {
  color: rgb(82 82 91 / 0.35);
}
.hx .text-zinc-600\/40 {
  color: rgb(82 82 91 / 0.4);
}
.hx .text-zinc-600\/45 {
  color: rgb(82 82 91 / 0.45);
}
.hx .text-zinc-600\/5 {
  color: rgb(82 82 91 / 0.05);
}
.hx .text-zinc-600\/50 {
  color: rgb(82 82 91 / 0.5);
}
.hx .text-zinc-600\/55 {
  color: rgb(82 82 91 / 0.55);
}
.hx .text-zinc-600\/60 {
  color: rgb(82 82 91 / 0.6);
}
.hx .text-zinc-600\/65 {
  color: rgb(82 82 91 / 0.65);
}
.hx .text-zinc-600\/70 {
  color: rgb(82 82 91 / 0.7);
}
.hx .text-zinc-600\/75 {
  color: rgb(82 82 91 / 0.75);
}
.hx .text-zinc-600\/80 {
  color: rgb(82 82 91 / 0.8);
}
.hx .text-zinc-600\/85 {
  color: rgb(82 82 91 / 0.85);
}
.hx .text-zinc-600\/90 {
  color: rgb(82 82 91 / 0.9);
}
.hx .text-zinc-600\/95 {
  color: rgb(82 82 91 / 0.95);
}
.hx .text-zinc-700 {
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-700\/0 {
  color: rgb(63 63 70 / 0);
}
.hx .text-zinc-700\/10 {
  color: rgb(63 63 70 / 0.1);
}
.hx .text-zinc-700\/100 {
  color: rgb(63 63 70 / 1);
}
.hx .text-zinc-700\/15 {
  color: rgb(63 63 70 / 0.15);
}
.hx .text-zinc-700\/20 {
  color: rgb(63 63 70 / 0.2);
}
.hx .text-zinc-700\/25 {
  color: rgb(63 63 70 / 0.25);
}
.hx .text-zinc-700\/30 {
  color: rgb(63 63 70 / 0.3);
}
.hx .text-zinc-700\/35 {
  color: rgb(63 63 70 / 0.35);
}
.hx .text-zinc-700\/40 {
  color: rgb(63 63 70 / 0.4);
}
.hx .text-zinc-700\/45 {
  color: rgb(63 63 70 / 0.45);
}
.hx .text-zinc-700\/5 {
  color: rgb(63 63 70 / 0.05);
}
.hx .text-zinc-700\/50 {
  color: rgb(63 63 70 / 0.5);
}
.hx .text-zinc-700\/55 {
  color: rgb(63 63 70 / 0.55);
}
.hx .text-zinc-700\/60 {
  color: rgb(63 63 70 / 0.6);
}
.hx .text-zinc-700\/65 {
  color: rgb(63 63 70 / 0.65);
}
.hx .text-zinc-700\/70 {
  color: rgb(63 63 70 / 0.7);
}
.hx .text-zinc-700\/75 {
  color: rgb(63 63 70 / 0.75);
}
.hx .text-zinc-700\/80 {
  color: rgb(63 63 70 / 0.8);
}
.hx .text-zinc-700\/85 {
  color: rgb(63 63 70 / 0.85);
}
.hx .text-zinc-700\/90 {
  color: rgb(63 63 70 / 0.9);
}
.hx .text-zinc-700\/95 {
  color: rgb(63 63 70 / 0.95);
}
.hx .text-zinc-800 {
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-800\/0 {
  color: rgb(39 39 42 / 0);
}
.hx .text-zinc-800\/10 {
  color: rgb(39 39 42 / 0.1);
}
.hx .text-zinc-800\/100 {
  color: rgb(39 39 42 / 1);
}
.hx .text-zinc-800\/15 {
  color: rgb(39 39 42 / 0.15);
}
.hx .text-zinc-800\/20 {
  color: rgb(39 39 42 / 0.2);
}
.hx .text-zinc-800\/25 {
  color: rgb(39 39 42 / 0.25);
}
.hx .text-zinc-800\/30 {
  color: rgb(39 39 42 / 0.3);
}
.hx .text-zinc-800\/35 {
  color: rgb(39 39 42 / 0.35);
}
.hx .text-zinc-800\/40 {
  color: rgb(39 39 42 / 0.4);
}
.hx .text-zinc-800\/45 {
  color: rgb(39 39 42 / 0.45);
}
.hx .text-zinc-800\/5 {
  color: rgb(39 39 42 / 0.05);
}
.hx .text-zinc-800\/50 {
  color: rgb(39 39 42 / 0.5);
}
.hx .text-zinc-800\/55 {
  color: rgb(39 39 42 / 0.55);
}
.hx .text-zinc-800\/60 {
  color: rgb(39 39 42 / 0.6);
}
.hx .text-zinc-800\/65 {
  color: rgb(39 39 42 / 0.65);
}
.hx .text-zinc-800\/70 {
  color: rgb(39 39 42 / 0.7);
}
.hx .text-zinc-800\/75 {
  color: rgb(39 39 42 / 0.75);
}
.hx .text-zinc-800\/80 {
  color: rgb(39 39 42 / 0.8);
}
.hx .text-zinc-800\/85 {
  color: rgb(39 39 42 / 0.85);
}
.hx .text-zinc-800\/90 {
  color: rgb(39 39 42 / 0.9);
}
.hx .text-zinc-800\/95 {
  color: rgb(39 39 42 / 0.95);
}
.hx .text-zinc-900 {
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-900\/0 {
  color: rgb(24 24 27 / 0);
}
.hx .text-zinc-900\/10 {
  color: rgb(24 24 27 / 0.1);
}
.hx .text-zinc-900\/100 {
  color: rgb(24 24 27 / 1);
}
.hx .text-zinc-900\/15 {
  color: rgb(24 24 27 / 0.15);
}
.hx .text-zinc-900\/20 {
  color: rgb(24 24 27 / 0.2);
}
.hx .text-zinc-900\/25 {
  color: rgb(24 24 27 / 0.25);
}
.hx .text-zinc-900\/30 {
  color: rgb(24 24 27 / 0.3);
}
.hx .text-zinc-900\/35 {
  color: rgb(24 24 27 / 0.35);
}
.hx .text-zinc-900\/40 {
  color: rgb(24 24 27 / 0.4);
}
.hx .text-zinc-900\/45 {
  color: rgb(24 24 27 / 0.45);
}
.hx .text-zinc-900\/5 {
  color: rgb(24 24 27 / 0.05);
}
.hx .text-zinc-900\/50 {
  color: rgb(24 24 27 / 0.5);
}
.hx .text-zinc-900\/55 {
  color: rgb(24 24 27 / 0.55);
}
.hx .text-zinc-900\/60 {
  color: rgb(24 24 27 / 0.6);
}
.hx .text-zinc-900\/65 {
  color: rgb(24 24 27 / 0.65);
}
.hx .text-zinc-900\/70 {
  color: rgb(24 24 27 / 0.7);
}
.hx .text-zinc-900\/75 {
  color: rgb(24 24 27 / 0.75);
}
.hx .text-zinc-900\/80 {
  color: rgb(24 24 27 / 0.8);
}
.hx .text-zinc-900\/85 {
  color: rgb(24 24 27 / 0.85);
}
.hx .text-zinc-900\/90 {
  color: rgb(24 24 27 / 0.9);
}
.hx .text-zinc-900\/95 {
  color: rgb(24 24 27 / 0.95);
}
.hx .text-zinc-950 {
  --tw-text-opacity: 1;
  color: rgb(9 9 11 / var(--tw-text-opacity, 1));
}
.hx .text-zinc-950\/0 {
  color: rgb(9 9 11 / 0);
}
.hx .text-zinc-950\/10 {
  color: rgb(9 9 11 / 0.1);
}
.hx .text-zinc-950\/100 {
  color: rgb(9 9 11 / 1);
}
.hx .text-zinc-950\/15 {
  color: rgb(9 9 11 / 0.15);
}
.hx .text-zinc-950\/20 {
  color: rgb(9 9 11 / 0.2);
}
.hx .text-zinc-950\/25 {
  color: rgb(9 9 11 / 0.25);
}
.hx .text-zinc-950\/30 {
  color: rgb(9 9 11 / 0.3);
}
.hx .text-zinc-950\/35 {
  color: rgb(9 9 11 / 0.35);
}
.hx .text-zinc-950\/40 {
  color: rgb(9 9 11 / 0.4);
}
.hx .text-zinc-950\/45 {
  color: rgb(9 9 11 / 0.45);
}
.hx .text-zinc-950\/5 {
  color: rgb(9 9 11 / 0.05);
}
.hx .text-zinc-950\/50 {
  color: rgb(9 9 11 / 0.5);
}
.hx .text-zinc-950\/55 {
  color: rgb(9 9 11 / 0.55);
}
.hx .text-zinc-950\/60 {
  color: rgb(9 9 11 / 0.6);
}
.hx .text-zinc-950\/65 {
  color: rgb(9 9 11 / 0.65);
}
.hx .text-zinc-950\/70 {
  color: rgb(9 9 11 / 0.7);
}
.hx .text-zinc-950\/75 {
  color: rgb(9 9 11 / 0.75);
}
.hx .text-zinc-950\/80 {
  color: rgb(9 9 11 / 0.8);
}
.hx .text-zinc-950\/85 {
  color: rgb(9 9 11 / 0.85);
}
.hx .text-zinc-950\/90 {
  color: rgb(9 9 11 / 0.9);
}
.hx .text-zinc-950\/95 {
  color: rgb(9 9 11 / 0.95);
}
.hx .text-opacity-0 {
  --tw-text-opacity: 0;
}
.hx .text-opacity-10 {
  --tw-text-opacity: 0.1;
}
.hx .text-opacity-100 {
  --tw-text-opacity: 1;
}
.hx .text-opacity-15 {
  --tw-text-opacity: 0.15;
}
.hx .text-opacity-20 {
  --tw-text-opacity: 0.2;
}
.hx .text-opacity-25 {
  --tw-text-opacity: 0.25;
}
.hx .text-opacity-30 {
  --tw-text-opacity: 0.3;
}
.hx .text-opacity-35 {
  --tw-text-opacity: 0.35;
}
.hx .text-opacity-40 {
  --tw-text-opacity: 0.4;
}
.hx .text-opacity-45 {
  --tw-text-opacity: 0.45;
}
.hx .text-opacity-5 {
  --tw-text-opacity: 0.05;
}
.hx .text-opacity-50 {
  --tw-text-opacity: 0.5;
}
.hx .text-opacity-55 {
  --tw-text-opacity: 0.55;
}
.hx .text-opacity-60 {
  --tw-text-opacity: 0.6;
}
.hx .text-opacity-65 {
  --tw-text-opacity: 0.65;
}
.hx .text-opacity-70 {
  --tw-text-opacity: 0.7;
}
.hx .text-opacity-75 {
  --tw-text-opacity: 0.75;
}
.hx .text-opacity-80 {
  --tw-text-opacity: 0.8;
}
.hx .text-opacity-85 {
  --tw-text-opacity: 0.85;
}
.hx .text-opacity-90 {
  --tw-text-opacity: 0.9;
}
.hx .text-opacity-95 {
  --tw-text-opacity: 0.95;
}
.hx .underline {
  text-decoration-line: underline;
}
.hx .no-underline {
  text-decoration-line: none;
}
.hx .accent-\[color\:var\(--hx-color-fg\)\] {
  accent-color: var(--hx-color-fg);
}
.hx .opacity-25 {
  opacity: 0.25;
}
.hx .opacity-50 {
  opacity: 0.5;
}
.hx .opacity-70 {
  opacity: 0.7;
}
.hx .opacity-75 {
  opacity: 0.75;
}
.hx .opacity-\[var\(--hx-opacity-disabled\)\] {
  opacity: var(--hx-opacity-disabled);
}
.hx .shadow-1 {
  --tw-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.04), 0px 1px 1px 0px rgba(0, 0, 0, 0.06), 0px 2px 1px -1px rgba(0, 0, 0, 0.08);
  --tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 2px 1px -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);
}
.hx .shadow-2 {
  --tw-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.08), 0px 2px 1px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0px 1px 3px 0px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 2px 1px -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);
}
.hx .shadow-\[0_1px_1px_0_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
  --tw-shadow-colored: 0 1px 1px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hx .shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hx .outline {
  outline-style: solid;
}
.hx .outline-0 {
  outline-width: 0px;
}
.hx .outline-\[color\:var\(--hx-color-focus\)\] {
  outline-color: var(--hx-color-focus);
}
.hx .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);
}
.hx .ring-0 {
  --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(0px + 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);
}
.hx .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);
}
.hx .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);
}
.hx .backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  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);
}
.hx .backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  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);
}
.hx .transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .transition-\[box-shadow\2c outline-color\2c background-color\2c border-color\] {
  transition-property: box-shadow,outline-color,background-color,border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .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;
}
.hx .transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .duration-150 {
  transition-duration: 150ms;
}
.hx .duration-200 {
  transition-duration: 200ms;
}
.hx .ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hx .text-small.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .text-small.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .text-body.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .text-body.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .text-body-large.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .text-body-large.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .text-h6.vtrim:before {
  display: block;
  margin-top: -0.27em;
  content: "";
}
.hx .text-h6.vtrim:after {
  display: block;
  margin-bottom: -0.27em;
  content: "";
}
.hx .text-h5.vtrim:before {
  display: block;
  margin-top: -0.27em;
  content: "";
}
.hx .text-h5.vtrim:after {
  display: block;
  margin-bottom: -0.27em;
  content: "";
}
.hx .text-h4.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .text-h4.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .text-h3.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .text-h3.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .text-h2.vtrim:before {
  display: block;
  margin-top: -0.15em;
  content: "";
}
.hx .text-h2.vtrim:after {
  display: block;
  margin-bottom: -0.15em;
  content: "";
}
.hx .text-h1.vtrim:before {
  display: block;
  margin-top: -0.15em;
  content: "";
}
.hx .text-h1.vtrim:after {
  display: block;
  margin-bottom: -0.15em;
  content: "";
}
.hx .text-large.vtrim:before {
  display: block;
  margin-top: -0.15em;
  content: "";
}
.hx .text-large.vtrim:after {
  display: block;
  margin-bottom: -0.15em;
  content: "";
}
.hx .lh-1 {
  line-height: 1.1;
}
.hx .lh-1.vtrim {}
.hx .lh-1.vtrim:before {
  display: block;
  margin-top: -0.15em;
  content: "";
}
.hx .lh-1.vtrim:after {
  display: block;
  margin-bottom: -0.15em;
  content: "";
}
.hx .lh-3 {
  line-height: 1.2;
}
.hx .lh-3.vtrim {}
.hx .lh-3.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .lh-3.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .lh-5 {
  line-height: 1.35;
}
.hx .lh-5.vtrim {}
.hx .lh-5.vtrim:before {
  display: block;
  margin-top: -0.27em;
  content: "";
}
.hx .lh-5.vtrim:after {
  display: block;
  margin-bottom: -0.27em;
  content: "";
}
.hx .lh-7 {
  line-height: 1.45;
}
.hx .lh-7.vtrim {}
.hx .lh-7.vtrim:before {
  display: block;
  margin-top: -0.32em;
  content: "";
}
.hx .lh-7.vtrim:after {
  display: block;
  margin-bottom: -0.32em;
  content: "";
}
.hx .lh-9 {
  line-height: 1.6;
}
.hx .lh-9.vtrim {}
.hx .lh-9.vtrim:before {
  display: block;
  margin-top: -0.4em;
  content: "";
}
.hx .lh-9.vtrim:after {
  display: block;
  margin-bottom: -0.4em;
  content: "";
}
.hx .unset {
  all: unset;
}
/* Global application - works everywhere, not just within .hx-ds */
.hx a:focus-visible, .hx button:focus-visible, .hx input:focus-visible, .hx textarea:focus-visible, .hx select:focus-visible, .hx [tabindex]:not([tabindex="-1"]):focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline);
    outline-offset: var(--hx-outline-offset);
  }
/* Target common DaisyUI classes to override their focus styles */
.hx .btn:focus-visible, .hx .link:focus-visible, .hx .select:focus-visible, .hx .input:focus-visible, .hx .textarea:focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline);
    outline-offset: var(--hx-outline-offset);
  }
.hx .\!input:focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline) !important;
    outline-offset: var(--hx-outline-offset) !important;
  }
/* Suppress focus outline for mouse/pointer interactions */
.hx a:focus:not(:focus-visible), .hx button:focus:not(:focus-visible), .hx input:focus:not(:focus-visible), .hx textarea:focus:not(:focus-visible), .hx select:focus:not(:focus-visible), .hx [tabindex]:not([tabindex="-1"]):focus:not(:focus-visible) {
    outline: none;
  }
/* Also provide scoped version for .hx-ds components (for consistency) */
.hx .hx-ds a:focus-visible, .hx .hx-ds button:focus-visible, .hx .hx-ds input:focus-visible, .hx .hx-ds textarea:focus-visible, .hx .hx-ds select:focus-visible, .hx .hx-ds [tabindex]:not([tabindex="-1"]):focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline);
    outline-offset: var(--hx-outline-offset);
  }
.hx .hx-ds .btn:focus-visible, .hx .hx-ds .link:focus-visible, .hx .hx-ds .select:focus-visible, .hx .hx-ds .input:focus-visible, .hx .hx-ds .textarea:focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline);
    outline-offset: var(--hx-outline-offset);
  }
.hx .hx-ds .\!input:focus-visible {
    outline: var(--hx-outline-size) solid var(--hx-outline) !important;
    outline-offset: var(--hx-outline-offset) !important;
  }
.hx .hx-ds a:focus:not(:focus-visible), .hx .hx-ds button:focus:not(:focus-visible), .hx .hx-ds input:focus:not(:focus-visible), .hx .hx-ds textarea:focus:not(:focus-visible), .hx .hx-ds select:focus:not(:focus-visible), .hx .hx-ds [tabindex]:not([tabindex="-1"]):focus:not(:focus-visible) {
    outline: none;
  }
/* --------------------------------------------------------------------------
    BUTTONS
  -------------------------------------------------------------------------- */
.hx {
    --rounded-btn: 0.25rem;
  }
.hx .btn {
    font-size: 1rem;
    gap: 0.3em;
  }
.hx .btn > svg:first-child {
      margin-left: -0.2em;
    }
.hx .btn.btn-success {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hx .btn.btn-error {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
/* --------------------------------------------------------------------------
    ACCORDION
  -------------------------------------------------------------------------- */
/* */
.hx .collapse > input {
      appearance: none;
      opacity: 0;
    }
.hx .collapse-title {
      /* */
    }
.hx .collapse-content {
      /* */
    }
/* --------------------------------------------------------------------------
    DROPDOWNS
  -------------------------------------------------------------------------- */
/**/
.hx .dropdown .dropdown-content {
      /**/
    }
/**/
.hx .dropdown.dropdown-open .dropdown-content, .hx .dropdown:not(.dropdown-hover):focus .dropdown-content, .hx .dropdown:focus-within .dropdown-content {
        /**/
      }
/* DISPLAY: NONE VARIANT */
.hx .dropdown.-lazy .dropdown-content {
        display: none;
      }
.hx .dropdown.-lazy.dropdown-open .dropdown-content, .hx .dropdown.-lazy:not(.dropdown-hover):focus .dropdown-content, .hx .dropdown.-lazy:focus-within .dropdown-content {
          display: block;
        }
/* --------------------------------------------------------------------------
    FORMS
  -------------------------------------------------------------------------- */
/* TODO: move this to the `frontend/` repo somehow */
.hx input[readonly], .hx textarea[readonly], .hx select[readonly] {
    background-color: #f9f9f9;
    color: #666;
  }
.hx select[readonly] {
    pointer-events: none;
  }
.hx .\!input {
    /* --input-height: auto; */
    height: var(--input-height) !important;
    min-height: var(--input-height) !important;
  }
.hx .input, .hx .select {
    /* --input-height: auto; */
    height: var(--input-height);
    min-height: var(--input-height);
  }
.hx .label-text {
  font-weight: 600;
}
.hx choice-expanded .label-text {
  font-weight: 400;
}
/* tom-select style adjustments */
.hx .ts-wrapper.select {
    display: flex;
    padding: 0;
    height: auto;
  }
.hx .ts-wrapper.select .ts-control {
      padding-right: 1.65rem; /* to offset the arrow icon */
      background: none;
      box-shadow: none;
      border: 0;
    }
.hx .ts-wrapper.select .ts-control input {
      }
/* --------------------------------------------------------------------------
    TABLES
  -------------------------------------------------------------------------- */
.hx .table, .hx .table th, .hx .table td {
    font-size: 0.96rem;
    line-height: 1.3;
  }
.hx .table.sm, .hx .table.sm th, .hx .table.sm td {
    font-size: 0.945rem;
    line-height: 1.2;
  }
.hx .table.xs, .hx .table.xs th, .hx .table.xs td {
    font-size: 0.92rem;
    line-height: 1.1;
  }
.hx .prose {
  max-width: none;
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
  line-height: 1.45;
}
.hx .prose.vtrim {}
.hx .prose.vtrim:before {
  display: block;
  margin-top: -0.32em;
  content: "";
}
.hx .prose.vtrim:after {
  display: block;
  margin-bottom: -0.32em;
  content: "";
}
.hx .prose a[href] {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  text-decoration-line: underline;
}
.hx .prose h1 {
  font-size: clamp(1.75rem, 1.532rem + 0.968vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
}
.hx .prose h1.vtrim:before {
  display: block;
  margin-top: -0.15em;
  content: "";
}
.hx .prose h1.vtrim:after {
  display: block;
  margin-bottom: -0.15em;
  content: "";
}
.hx .prose h2 {
  font-size: clamp(1.5rem, 1.355rem + 0.645vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}
.hx .prose h2.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .prose h2.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .prose h3 {
  font-size: clamp(1.375rem, 1.266rem + 0.484vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
}
.hx .prose h3.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .prose h3.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .prose h4 {
  font-size: clamp(1.25rem, 1.177rem + 0.323vw, 1.5rem);
  line-height: 1.35;
  font-weight: 600;
}
.hx .prose h4.vtrim:before {
  display: block;
  margin-top: -0.27em;
  content: "";
}
.hx .prose h4.vtrim:after {
  display: block;
  margin-bottom: -0.27em;
  content: "";
}
.hx .prose h5 {
  font-size: clamp(1.0625rem, 1.026rem + 0.161vw, 1.1875rem);
  line-height: 1.35;
  font-weight: 600;
}
.hx .prose h5.vtrim:before {
  display: block;
  margin-top: -0.27em;
  content: "";
}
.hx .prose h5.vtrim:after {
  display: block;
  margin-bottom: -0.27em;
  content: "";
}
.hx .hx-card {
    --hx-color-bg: var(--hx-base-bg);
    --hx-color-fg: var(--hx-base-fg);
    width: 100%;
    color: var(--hx-color-fg);
  }
.hx .hx-card--interactive {
  cursor: pointer;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .hx-card--interactive:hover {
  --tw-translate-y: -1px;
  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));
  --tw-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.08), 0px 2px 1px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0px 1px 3px 0px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 2px 1px -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);
}
.hx .hx-card--fill-solid {
  background-color: var(--hx-color-bg);
}
.hx .hx-card--media-right {
  flex-direction: row-reverse;
}
.hx .hx-card__body--compact {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.hx .hx-card__media {
  overflow: hidden;
}
.hx .hx-card__media > img, .hx .hx-card__media > a > img {
  height: 100%;
  width: 100%;
}
.hx .hx-card__media--right {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
.hx .hx-card__title--link {
  cursor: pointer;
}
.hx .hx-card__title--link:hover {
  text-decoration-line: underline;
}
/*  */
.hx .hx-pagination .btn {
  font-weight: 400;
}
.hx .hx-pagination .hx-pagination-counter span {
  text-wrap: nowrap;
}
.hx .hx-pagination .hx-pagination-unset > * {
  border-width: 0px !important;
  background-color: transparent !important;
  padding-left: 0.5em;
  padding-right: 0.5em;
  opacity: 0.75;
}
/* --------------------------------------------------------------------------
    SMALL CONTAINER
  -------------------------------------------------------------------------- */
@container (max-width: 599px) {

      /* Hide everything */
      .hx .hx-pagination li {
    display: none;
  }

      /* Show the follow elements */
      .hx .hx-pagination .hx-pagination-prev, .hx .hx-pagination .hx-pagination-next, .hx .hx-pagination .hx-pagination-counter {
    display: block;
  }

      /* "Next" button fills the container */
      .hx .hx-pagination .hx-pagination-next {
    flex-grow: 1;
  }
  }
/* Hide the "Previous" text for really small containers */
@container (max-width: 479px) {
    .hx .hx-pagination-prev span {
    display: none;
  }
  }
/* --------------------------------------------------------------------------
    TABLET-LIKE CONTAINERS
  -------------------------------------------------------------------------- */
@container (min-width: 600px) {

      /* Hide the counter from this point on */
      .hx .hx-pagination .hx-pagination-counter {
    display: none !important;
  }
  }
@container (min-width: 600px) and (max-width: 1023px) {

      /* Hide the "Previous" text until desktop */
      .hx .hx-pagination .hx-pagination-prev span {
    display: none !important;
  }
  }
@container (max-width: 1023px) {

      /* Hide the "extra" page numbers until desktop */
      .hx .hx-pagination .hx-pagination-extra {
    display: none !important;
  }
  }
/* --------------------------------------------------------------------------
    DESKTOP-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 1024px) {
    .hx .hx-pagination {
      /*  */
    }
  }
/*  */
/*  */
.hx .hx-breadcrumbs > ol > li {

        /* Hide the breadcrumb items by default, because specific rules are implemented for showing them */

        display: none !important;
      }
/* Default icon size */
.hx .hx-breadcrumbs > ol > li > svg, .hx .hx-breadcrumbs > ol > li > a > svg {
  height: 1.1em;
  width: 1.1em;
}
/* Dots icon should be smaller */
.hx .hx-breadcrumbs > ol > li .hx-breadcrumbs-dots-icon {
  height: 1em;
  width: 1em;
}
/* Normalizing flex layout with DaisyUI v5 */
.hx .hx-breadcrumbs > ol > li > a {
  display: flex;
  gap: 0.25em;
}
/* Separator styles */
.hx .hx-breadcrumbs > ol > li + li::before {
  margin-left: 0.4em !important;
  margin-right: 0.4em !important;
  height: auto !important;
  width: auto !important;
  transform: none !important;
  border-width: 0px !important;
  --tw-content: var(--separator) !important;
  content: var(--tw-content) !important;
}
/* Hide the "Home" text, unless it's the only item */
.hx .hx-breadcrumbs > ol:has(>li:nth-child(2)) > li:first-child span {
  display: none !important;
}
/* --------------------------------------------------------------------------
    TINY CONTAINER
  -------------------------------------------------------------------------- */
/* @container (max-width: 460px) {
    .hx-breadcrumbs > ol:has(>li:nth-child(3)) {
      > li:first-child {
        background: red;
      }
    }
  } */
/* --------------------------------------------------------------------------
    PHONE-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 360px) and (max-width: 479px) {
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(3)) {

        /* Show the "dots" icon if it has 3 or more items */
        /* > li:first-child .hx-breadcrumbs-dots-icon { @apply !inline-block; } */

        /* Hides the icon of the first item that comes after the dots */
        /* > li:last-child::before { @apply !hidden; }
        > li:last-child { @apply !ml-4; } */
      }
  }
/* Hide the "Home" item on mobile, unless it's the only item */
@container (max-width: 479px) {
        .hx .hx-breadcrumbs > ol:has(>li:nth-child(2)) > li:first-child {
    display: none !important;
  }
  }
/* --------------------------------------------------------------------------
    TABLET-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 480px) {

      /* Show the third from last item */
      .hx .hx-breadcrumbs > ol > li:nth-last-child(2) {
    display: flex !important;
  }
  }
@container (min-width: 480px) and (max-width: 1023px) {

      /* Show the "dots" icon if it has 4 or more items */
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(4)) > li:first-child .hx-breadcrumbs-dots-icon {
    display: inline-block !important;
  }

      /* Hides the icon of the first item that comes after the dots */
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(10)) > li:nth-child(9) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(10)) > li:nth-child(9)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(9)) > li:nth-child(8) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(9)) > li:nth-child(8)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(8)) > li:nth-child(7) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(8)) > li:nth-child(7)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(7)) > li:nth-child(6) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(7)) > li:nth-child(6)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(6)) > li:nth-child(5) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(6)) > li:nth-child(5)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(5)) > li:nth-child(4) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(5)) > li:nth-child(4)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(4)) > li:nth-child(3) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(4)) > li:nth-child(3)::before {
    display: none !important;
  }
  }
/* --------------------------------------------------------------------------
    DESKTOP-LIKE CONTAINER
  -------------------------------------------------------------------------- */
@container (min-width: 1024px) {

      /* Show the fourth from last item */
      .hx .hx-breadcrumbs > ol > li:nth-last-child(3) {
    display: flex !important;
  }

      /* Show the "dots" icon if it has 4 or more items */
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(5)) > li:first-child .hx-breadcrumbs-dots-icon {
    display: inline-block !important;
  }

      /* Hides the icon of the first item that comes after the dots */
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(10)) > li:nth-child(8) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(10)) > li:nth-child(8)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(9)) > li:nth-child(7) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(9)) > li:nth-child(7)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(8)) > li:nth-child(6) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(8)) > li:nth-child(6)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(7)) > li:nth-child(5) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(7)) > li:nth-child(5)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(6)) > li:nth-child(4) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(6)) > li:nth-child(4)::before {
    display: none !important;
  }
      .hx .hx-breadcrumbs > ol:has(>li:nth-child(5)) > li:nth-child(3) {
    margin-left: 8px !important;
  } .hx .hx-breadcrumbs > ol:has(>li:nth-child(5)) > li:nth-child(3)::before {
    display: none !important;
  }
  }
/* --------------------------------------------------------------------------
    BASE VARIABLES
  -------------------------------------------------------------------------- */
.hx .hx-form {
    --hx-size: 2.5em;
    --hx-color-bg: color-mix(in oklch, white 90%, transparent);
    --hx-color-fg: var(--hx-base-fg);
    --hx-color-b: color-mix(in oklch, var(--hx-base-fg) 25%, transparent);
    --hx-radius: 0.5rem;

    /* State & accents */
    --hx-opacity-disabled: 0.6;
    --hx-color-focus: #3b82f6;
    --hx-color-b-danger: #f87171;
    --hx-color-fg-danger: #dc2626;
    --hx-color-focus-danger: color-mix(in oklch, #ef4444 40%, transparent);
  }
/* Dark theme */
.hx [data-theme="dark"] .hx-form, .hx .hx-form[data-theme="dark"] {
      --hx-color-bg: color-mix(in oklch, black 90%, transparent);
    }
/* --------------------------------------------------------------------------
    FORM FIELD BASE LAYOUT
  -------------------------------------------------------------------------- */
.hx .hx-form-field {
    --hx-spacing-m: 0.8rem;
    --hx-spacing-p-x: 0.65rem;
    --hx-spacing-gap: 0.5rem;
    display: block;
    margin-bottom: var(--hx-spacing-m);
  }
.hx .hx-form-field:last-child {
    --hx-spacing-m: 0;
  }
.hx .hx-form-field--label-top {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.hx .hx-form-field--label-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 4px;
}
/* --------------------------------------------------------------------------
    FORM FIELD CONTROL (Inputs, select, textarea, file)
  -------------------------------------------------------------------------- */
.hx .hx-form-field--control {
  display: block;
  width: 100%;
  color: var(--hx-color-fg);
  outline-width: 0px;
}
.hx .hx-form-field--control:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.hx .hx-form-field--control {
  transition-property: box-shadow,outline-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;

    outline-color: var(--hx-color-focus);
}
.hx .hx-form-field--control-invalid {
    --hx-color-b: var(--hx-color-b-danger);
    --hx-color-focus: var(--hx-color-focus-danger);
  }
.hx .hx-form-field--control-disabled {
  cursor: not-allowed;
  opacity: var(--hx-opacity-disabled);
}
.hx .hx-form-field--control-border-full {
  border-radius: var(--hx-radius);
  border-width: 1px;
  border-color: var(--hx-color-b);
}
.hx .hx-form-field--control-border-bottom {
  border-radius: 0px;
  border-width: 0px;
  border-bottom-width: 1px;
  border-bottom-color: var(--hx-color-b);
}
.hx .hx-form-field--control-bg-fill {
  background-color: var(--hx-color-bg);
}
.hx .hx-form-field--control-bg-glass {
  --tw-backdrop-blur: blur(2px);
  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);
  background-color: color-mix(in oklch,var(--hx-color-bg) 80%,transparent);
}
.hx .hx-form-field--control-bg-transparent {
  background-color: transparent;
}
.hx .hx-form-field--text {
  height: var(--hx-size);
  padding-left: var(--hx-spacing-p-x);
  padding-right: var(--hx-spacing-p-x);
}
.hx .hx-form-field--text::placeholder {
  color: color-mix(in oklch,var(--hx-color-fg) 55%,transparent);
}
.hx .hx-form-field--file {
    --hx-floating-gap: 0;
    height: var(--hx-size);
    width: 100%;
    overflow: hidden;
    padding-left: 0px;
    padding-right: 0px;
    line-height: calc(var(--hx-size) - 2px);
    appearance: none;
  }
.hx .hx-form-field--file::file-selector-button {
  cursor: pointer;
  border-radius: 0px;
  height: 100%;
  padding-left: var(--hx-spacing-p-x);
  padding-right: var(--hx-spacing-p-x);
  padding-top: 0px;
  padding-bottom: 0px;
  font-weight: 500;
  line-height: 1;
  border-width: 0px;
  border-right-width: 1px;
  border-style: dotted;
  border-right-color: var(--hx-color-b);
  background-color: color-mix(in oklch,var(--hx-color-fg) 10%,transparent);
  color: var(--hx-color-fg);
  margin-right: var(--hx-spacing-gap);
}
.hx .hx-form-field--file:not(.hx-form-field--control-disabled):hover::file-selector-button {
  background-color: color-mix(in oklch,var(--hx-color-fg) 16%,transparent);
}
.hx .hx-form-field--file.hx-form-field--control-disabled::file-selector-button, .hx .hx-form-field--file:disabled::file-selector-button {
  cursor: not-allowed;
  opacity: var(--hx-opacity-disabled);
}
.hx .hx-form-field--textarea {
    --hx-textarea-pt: 0.65rem;
    --hx-textarea-pb: 0.875rem;
    padding-left: var(--hx-spacing-p-x);
    padding-right: var(--hx-spacing-p-x);
    padding-top: var(--hx-textarea-pt);
    padding-bottom: var(--hx-textarea-pb);
    min-height: calc(var(--hx-size) * 2);
    resize: vertical;
  }
.hx .hx-form-field--select {
  height: var(--hx-size);
  padding-left: var(--hx-spacing-p-x);
  padding-right: var(--hx-spacing-p-x);
  appearance: none;
  padding-right: calc(var(--hx-spacing-p-x) + 2rem);
}
/* --------------------------------------------------------------------------
    FORM FIELD — CHECKBOX / RADIO BASES
  -------------------------------------------------------------------------- */
.hx .hx-form-field--check, .hx .hx-form-field--radio {
    --hx-size: 1.05em;
    --hx-spacing-gap: 0.5rem;
    display: inline-block;
    vertical-align: middle;
    height: var(--hx-size);
    width: var(--hx-size);
    background-color: var(--hx-color-bg);
    border-width: 1px;
    border-color: var(--hx-color-b);
    accent-color: var(--hx-color-fg);
    outline-width: 0px;
  }
.hx .hx-form-field--check:focus-visible, .hx .hx-form-field--radio:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.hx .hx-form-field--check, .hx .hx-form-field--radio {
  transition-property: box-shadow,outline-color,background-color,border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;

    outline-color: var(--hx-color-focus);
}
.hx .hx-form-field--check {
  cursor: pointer;
  border-radius: calc(var(--hx-radius) - 2px);
}
.hx .hx-form-field--radio {
  cursor: pointer;
  border-radius: 9999px;
}
.hx .hx-form-field--check:disabled, .hx .hx-form-field--radio:disabled {
  cursor: not-allowed;
  opacity: var(--hx-opacity-disabled);
}
/* --------------------------------------------------------------------------
    FLOATING LABEL (Design variant)
  -------------------------------------------------------------------------- */
.hx .hx-form-field--label-floating {
    /* Sizing */
    --hx-float-size-mult: 1.35;
    --hx-float-label-size: 1em;
    --hx-float-label-size-active: 0.85em;

    /* Spacing */
    --hx-float-spacing-pt: 1.1em;
    --hx-float-textarea-spacing-pt: var(--hx-float-spacing-pt);

    /* Position */
    --hx-float-label-top: 50%;
    --hx-float-label-top-lift: 0.6em;
    --hx-float-textarea-size-mult: 2.25;

    /* Motion */
    --hx-float-motion-duration: 180ms;
    --hx-float-motion-ease: ease;

    /* Opacity: active/focused label should not dim */
    --hx-opacity-label: 0.85;
    --hx-opacity-label-active: 1;
    position: relative;
  }
/* Textarea tuning */
.hx .hx-form-field--label-floating:has(textarea.peer) {
      --hx-float-textarea-size-mult: 2.2;
      --hx-float-textarea-spacing-pt: 1.6em;
      --hx-float-textarea-label-top: 0.9em;
      --hx-float-textarea-label-size: 1em;
    }
.hx .hx-form-field--label-floating:has(textarea.peer) > label {
  top: var(--hx-float-textarea-label-top);
  --tw-translate-y: 0px;
  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));
  font-size: var(--hx-float-textarea-label-size);
}
/* Label element */
.hx .hx-form-field--label-floating > label.hx-form-field__label {
      /* Placement + interaction */
      pointer-events: none;
      position: absolute;
      left: 0px;
      z-index: 10;
      transform-origin: top left;

      /* Position */

      top: var(--hx-float-label-top);

      --tw-translate-y: -50%;

      transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

      /* Typography */

      line-height: 1;

      font-size: var(--hx-float-label-size);

      /* Tone + motion */

      color: color-mix(in oklch,var(--hx-color-fg) 85%,transparent);

      opacity: var(--hx-opacity-label);
      transition: top var(--hx-float-motion-duration) var(--hx-float-motion-ease),
                  transform var(--hx-float-motion-duration) var(--hx-float-motion-ease),
                  font-size var(--hx-float-motion-duration) var(--hx-float-motion-ease),
                  opacity 150ms var(--hx-float-motion-ease);
      will-change: top, transform, font-size;
    }
/* Peer control padding */
.hx .hx-form-field--label-floating .peer {
  padding-top: var(--hx-float-spacing-pt);
}
/* Control heights */
.hx .hx-form-field--label-floating input.peer, .hx .hx-form-field--label-floating select.peer {
  height: calc(var(--hx-size) * var(--hx-float-size-mult));
}
.hx .hx-form-field--label-floating textarea.peer {
  min-height: calc(var(--hx-size) * var(--hx-float-textarea-size-mult));
  padding-top: var(--hx-float-textarea-spacing-pt);
}
.hx .hx-form-field--label-floating:has(textarea.peer:focus), .hx .hx-form-field--label-floating:has(textarea.peer:not(:placeholder-shown)) {
      --hx-float-textarea-spacing-pt: 1.8em;
    }
/* Lift on focus/value/autofill */
.hx .hx-form-field--label-floating:has(.peer:focus) > label.hx-form-field__label, .hx .hx-form-field--label-floating:has(input.peer:not(:placeholder-shown)) > label.hx-form-field__label, .hx .hx-form-field--label-floating:has(textarea.peer:not(:placeholder-shown)) > label.hx-form-field__label, .hx .hx-form-field--label-floating:has(select.peer option:checked:not([value=""])) > label.hx-form-field__label, .hx .hx-form-field--label-floating:has(input.peer:-webkit-autofill) > label.hx-form-field__label {
  top: var(--hx-float-label-top-lift);
  --tw-translate-y: 0px;
  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));
      /* Use full-strength color when active/focused */
      color: var(--hx-color-fg);
      opacity: var(--hx-opacity-label-active);
      font-size: var(--hx-float-label-size-active);
}
/* --------------------------------------------------------------------------
    FORM FIELD AFFIX WRAPPER
  -------------------------------------------------------------------------- */
.hx .hx-form-field--affix {
  display: flex;
  width: 100%;
  align-items: center;
  height: var(--hx-size);
  overflow: hidden;
  cursor: text;
}
.hx .hx-form-field--affix:focus-within {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: var(--hx-color-focus);
}
.hx .hx-form-field--affix {
  transition-property: box-shadow,outline-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.hx .hx-form-field--affix-textarea {
  align-items: stretch;
}
.hx .hx-form-field--affix-select {
  position: relative;
}
.hx .hx-form-field--affix-border-full {
  border-radius: var(--hx-radius);
  border-width: 1px;
  border-color: var(--hx-color-b);
}
.hx .hx-form-field--affix-border-bottom {
  border-radius: 0px;
  border-width: 0px;
  border-bottom-width: 1px;
  border-bottom-color: var(--hx-color-b);
}
.hx .hx-form-field--affix-bg-fill {
  background-color: var(--hx-color-bg);
}
.hx .hx-form-field--affix-bg-glass {
  --tw-backdrop-blur: blur(2px);
  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);
  background-color: color-mix(in oklch,var(--hx-color-bg) 80%,transparent);
}
.hx .hx-form-field--affix-bg-transparent {
  background-color: transparent;
}
.hx .hx-form-field--affix-disabled {
  cursor: not-allowed;
  opacity: var(--hx-opacity-disabled);
}
/* --------------------------------------------------------------------------
    STATES — Focus/invalid/disabled label & desc
  -------------------------------------------------------------------------- */
.hx .hx-form-field {
    /* Focus (only when not invalid); exclude checkbox/radio groups */
  }
/* Exclude any wrapper that nests other fields (e.g., Symfony choice rows) */
.hx .hx-form-field:not(:has(.hx-form-field-group)):not(:has(.hx-form-field)):has(.peer:focus):not(:has(.peer[aria-invalid="true"])):not(:has(.peer:user-invalid)) > label.hx-form-field__label {
      --hx-color-fg: var(--hx-color-focus);
    }
/* Invalid label color — full-strength danger on label */
.hx .hx-form-field:has(.peer[aria-invalid="true"]) > label.hx-form-field__label, .hx .hx-form-field:has(.peer:user-invalid) > label.hx-form-field__label {
      --hx-color-fg: var(--hx-color-fg-danger);
    }
/* Invalid description color */
.hx .hx-form-field:has(.peer[aria-invalid="true"]), .hx .hx-form-field:has(.peer:user-invalid) .hx-form-field__desc {
      --hx-color-fg: var(--hx-color-fg-danger);
      opacity: 1;
    }
/* Variable overrides for invalid state; auto-applies to inputs consuming vars */
.hx .hx-form-field:has(.peer[aria-invalid="true"]), .hx .hx-form-field:has(.peer:user-invalid) {
      --hx-color-b: var(--hx-color-b-danger);
      --hx-color-focus: var(--hx-color-focus-danger);
    }
/* Disabled visuals */
.hx .hx-form-field:has(.peer:disabled) > label.hx-form-field__label {
  cursor: not-allowed;
  opacity: var(--hx-opacity-disabled);
}
/* Mirror disabled on the control itself */
.hx .hx-form-field .peer:disabled {
  cursor: not-allowed;
  opacity: var(--hx-opacity-disabled);
}
/* --------------------------------------------------------------------------
    GROUPED CHECKBOX/RADIO ROW SIZING
    Ensure each option row is at least input height; center content vertically.
  -------------------------------------------------------------------------- */
.hx .hx-form-field-group > li > .hx-form-field {
    min-height: var(--hx-size);
    display: flex;
    align-items: center;
  }
/* Make checkbox/radio controls fill the row height via local var override */
.hx .hx-form-field-group .hx-form-field-check, .hx .hx-form-field-group .hx-form-field-radio {
    --hx-size: var(--hx-size);
  }
/* Ensure border/focus vars apply even if ancestor scoping fails */
.hx .hx-form-field .peer[aria-invalid="true"], .hx .hx-form-field .peer:user-invalid {
    --hx-color-b: var(--hx-color-b-danger);
    --hx-color-focus: var(--hx-color-focus-danger);
  }
.hx .\[--gap\:10px\] {
  --gap: 10px;
}
.hx .\[--hx-color-bg-active\:hsla\(0\2c 0\%\2c 0\%\2c 0\.05\)\] {
  --hx-color-bg-active: hsla(0,0%,0%,0.05);
}
.hx .\[--hx-size\:1\.05em\] {
  --hx-size: 1.05em;
}
.hx .\[--hx-textarea-pb\:0\.875rem\] {
  --hx-textarea-pb: 0.875rem;
}
.hx .\[--hx-textarea-pt\:0\.65rem\] {
  --hx-textarea-pt: 0.65rem;
}
.hx .\[--item-min-width\:100px\] {
  --item-min-width: 100px;
}
.hx .\[--separator-color\:color-mix\(in_oklch\2c currentColor\2c transparent_75\%\)\] {
  --separator-color: color-mix(in oklch,currentColor,transparent 75%);
}
.hx .\[--separator-offset\:10px\] {
  --separator-offset: 10px;
}
.hx .\[--separator-size\:1px\] {
  --separator-size: 1px;
}
.hx .\[grid-area\:header\] {
  grid-area: header;
}
.hx .\[grid-area\:main\] {
  grid-area: main;
}
.hx .\[grid-template-areas\:\'header\'_\'main\'\] {
  grid-template-areas: 'header' 'main';
}
.hx .\[grid-template-areas\:\'header_main\'\] {
  grid-template-areas: 'header main';
}
.hx .\[grid-template-areas\:\'main_header\'\] {
  grid-template-areas: 'main header';
}
/* STUPID TW FIX */
.hx [data-theme] {
  color: unset;
  background-color: unset;
}
/* DATA-ATTRIBUTES */
.hx [data-hidden] {
  display: none !important;
}
/* TODO: Find a better place for this */
:root {
  --input-height: 2.5rem;
}
.hx .join :where(.\*\:join-item > *) {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  border-start-start-radius: 0;
}
.hx .join .\*\:join-item > *:not(:first-child):not(:last-child), .hx .join *:not(:first-child):not(:last-child) .\*\:join-item > * {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-end-start-radius: 0;
  border-start-start-radius: 0;
}
.hx .join .\*\:join-item > *:first-child:not(:last-child), .hx .join *:first-child:not(:last-child) .\*\:join-item > * {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}
.hx .join .dropdown .\*\:join-item > *:first-child:not(:last-child), .hx .join *:first-child:not(:last-child) .dropdown .\*\:join-item > * {
  border-start-end-radius: inherit;
  border-end-end-radius: inherit;
}
.hx .join :where(.\*\:join-item > *:first-child:not(:last-child)), .hx .join :where(*:first-child:not(:last-child) .\*\:join-item > *) {
  border-end-start-radius: inherit;
  border-start-start-radius: inherit;
}
.hx .join .\*\:join-item > *:last-child:not(:first-child), .hx .join *:last-child:not(:first-child) .\*\:join-item > * {
  border-end-start-radius: 0;
  border-start-start-radius: 0;
}
.hx .join :where(.\*\:join-item > *:last-child:not(:first-child)), .hx .join :where(*:last-child:not(:first-child) .\*\:join-item > *) {
  border-start-end-radius: inherit;
  border-end-end-radius: inherit;
}
@supports selector(:has(*)) {
  .hx :where(.join *:has(.\*\:join-item > *)) {
    border-radius: inherit;
  }
}
.hx .\*\:join-item > *:focus {
  isolation: isolate;
}
.hx .join.join-vertical .\*\:join-item > *:first-child:not(:last-child), .hx .join.join-vertical *:first-child:not(:last-child) .\*\:join-item > * {
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  border-start-start-radius: inherit;
  border-start-end-radius: inherit;
}
.hx .join.join-vertical .\*\:join-item > *:last-child:not(:first-child), .hx .join.join-vertical *:last-child:not(:first-child) .\*\:join-item > * {
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: inherit;
  border-end-end-radius: inherit;
}
.hx .join.join-horizontal .\*\:join-item > *:first-child:not(:last-child), .hx .join.join-horizontal *:first-child:not(:last-child) .\*\:join-item > * {
  border-end-end-radius: 0;
  border-start-end-radius: 0;
  border-end-start-radius: inherit;
  border-start-start-radius: inherit;
}
.hx .join.join-horizontal .\*\:join-item > *:last-child:not(:first-child), .hx .join.join-horizontal *:last-child:not(:first-child) .\*\:join-item > * {
  border-end-start-radius: 0;
  border-start-start-radius: 0;
  border-end-end-radius: inherit;
  border-start-end-radius: inherit;
}
@media not all and (min-width: 1024px) {
  .hx .max-lg\:\!modal-bottom {
    place-items: end !important;
  }
  .hx .max-lg\:\!modal-bottom :where(.modal-box) {
    width: 100% !important;
    max-width: none !important;
    --tw-translate-y: 2.5rem !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    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)) !important;
    border-top-left-radius: var(--rounded-box, 1rem) !important;
    border-top-right-radius: var(--rounded-box, 1rem) !important;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.hx .\[\&\>\.btn\]\:btn-circle>.btn {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .\[\&\>\.btn\]\:btn-lg>.btn {
  height: 4rem;
  min-height: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
}
.hx .btn-square:where(.\[\&\>\.btn\]\:btn-lg>.btn) {
  height: 4rem;
  width: 4rem;
  padding: 0px;
}
.hx .\[\&\>\.btn\]\:btn-circle>.btn:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .\[\&\>\.btn\]\:btn-circle>.btn:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .\[\&\>\.btn\]\:btn-circle>.btn:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .\[\&\>\.btn\]\:btn-circle>.btn:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .btn-circle:where(.\[\&\>\.btn\]\:btn-lg>.btn) {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  padding: 0px;
}
.hx .\*\:rounded-\[var\(--rounded-btn\)\] > * {
  border-radius: var(--rounded-btn);
}
.hx .\*\:px-4 > * {
  padding-left: 8px;
  padding-right: 8px;
}
.hx .\*\:font-medium > * {
  font-weight: 500;
}
.hx .\*\:text-neutral-600 > * {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.hx .placeholder\:text-\[color-mix\(in_oklch\2c var\(--hx-color-fg\)_55\%\2c transparent\)\]::placeholder {
  color: color-mix(in oklch,var(--hx-color-fg) 55%,transparent);
}
.hx .backdrop\:\!block::backdrop {
  display: block !important;
}
.hx .backdrop\:bg-black\/65::backdrop {
  background-color: rgb(0 0 0 / 0.65);
}
.hx .backdrop\:backdrop-blur-lg::backdrop {
  --tw-backdrop-blur: blur(16px);
  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);
}
.hx .first\:pl-0:first-child {
  padding-left: 0px;
}
.hx .last\:pr-0:last-child {
  padding-right: 0px;
}
.hx .hover\:border-blue-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.hx .hover\:border-green-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}
.hx .hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hx .hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hx .hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hx .hover\:bg-green-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.hx .hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hx .hover\:bg-slate-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.hx .hover\:text-indigo-900:hover {
  --tw-text-opacity: 1;
  color: rgb(49 46 129 / var(--tw-text-opacity, 1));
}
.hx .hover\:text-yellow-600:hover {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.hx .focus\:outline-0:focus {
  outline-width: 0px;
}
.hx .focus\:ring-0: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(0px + 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);
}
.hx .focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.hx .focus-visible\:outline:focus-visible {
  outline-style: solid;
}
.hx .focus-visible\:outline-0:focus-visible {
  outline-width: 0px;
}
.hx .focus-visible\:outline-2:focus-visible {
  outline-width: 2px;
}
.hx .focus-visible\:outline-offset-2:focus-visible {
  outline-offset: 2px;
}
.hx .group\/grid.flex .group-\[\.flex\]\/grid\:min-w-\[min\(100\%\2c var\(--item-min-width\)\)\] {
  min-width: min(100%, var(--item-min-width));
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:border-s-\[length\:var\(--separator-size\2c 1px\)\] {
  border-inline-start-width: var(--separator-size,1px);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:border-t-\[length\:var\(--separator-size\2c 1px\)\] {
  border-top-width: var(--separator-size,1px);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:border-transparent {
  border-color: transparent;
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:-left-\[var\(--separator-size\2c 1px\)\]::before {
  content: var(--tw-content);
  left: calc(var(--separator-size,1px) * -1);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:bottom-\[var\(--separator-offset\)\]::before {
  content: var(--tw-content);
  bottom: var(--separator-offset);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:top-\[var\(--separator-offset\)\]::before {
  content: var(--tw-content);
  top: var(--separator-offset);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:w-\[var\(--separator-size\2c 1px\)\]::before {
  content: var(--tw-content);
  width: var(--separator-size,1px);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:bg-\[var\(--separator-color\)\]::before {
  content: var(--tw-content);
  background-color: var(--separator-color);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:-top-\[var\(--separator-size\2c 1px\)\]::after {
  content: var(--tw-content);
  top: calc(var(--separator-size,1px) * -1);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:left-\[var\(--separator-offset\)\]::after {
  content: var(--tw-content);
  left: var(--separator-offset);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:right-\[var\(--separator-offset\)\]::after {
  content: var(--tw-content);
  right: var(--separator-offset);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:h-\[var\(--separator-size\2c 1px\)\]::after {
  content: var(--tw-content);
  height: var(--separator-size,1px);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:bg-\[var\(--separator-color\)\]::after {
  content: var(--tw-content);
  background-color: var(--separator-color);
}
.hx .group\/grid.has-separator .group-\[\.has-separator\]\/grid\:after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}
.hx .peer:checked ~ .peer-checked\:\!hidden {
  display: none !important;
}
.hx .peer:checked ~ .peer-checked\:\!max-h-none {
  max-height: none !important;
}
.hx .has-\[\>\:checked\]\:\!grid-rows-\[1fr\2c auto\]:has(>:checked) {
  grid-template-rows: 1fr auto !important;
}
.hx .has-\[\>\:checked\]\:overflow-visible:has(>:checked) {
  overflow: visible;
}
.hx .has-\[\:disabled\]\:opacity-70:has(:disabled) {
  opacity: 0.7;
}
.hx .has-\[\:disabled\]\:\*\:cursor-not-allowed > *:has(:disabled) {
  cursor: not-allowed;
}
.hx .has-\[\:checked\]\:\*\:bg-white > *:has(:checked) {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hx .has-\[\:checked\]\:\*\:text-secondary > *:has(:checked) {
  --tw-text-opacity: 1;
  color: rgb(32 48 121 / var(--tw-text-opacity, 1));
}
.hx .aria-hidden\:hidden[aria-hidden="true"] {
  display: none;
}
.hx .aria-selected\:bg-\[var\(--hx-color-bg-active\)\][aria-selected="true"] {
  background-color: var(--hx-color-bg-active);
}
.hx .aria-selected\:drop-shadow[aria-selected="true"] {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}
@media not all and (min-width: 1024px) {
  .hx .max-lg\:\!max-w-full {
    max-width: 100% !important;
  }
  .hx .max-lg\:\!rounded-b-none {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .hx .max-lg\:\!rounded-t-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }
}
@media (min-width: 480px) {
  .hx .sm\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .hx .sm\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .hx .sm\:col-span-11 {
    grid-column: span 11 / span 11;
  }
  .hx .sm\:col-span-12 {
    grid-column: span 12 / span 12;
  }
  .hx .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .hx .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .hx .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .hx .sm\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .hx .sm\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .hx .sm\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .hx .sm\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .hx .sm\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .hx .sm\:col-span-full {
    grid-column: 1 / -1;
  }
  .hx .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .hx .sm\:grid-cols-none {
    grid-template-columns: none;
  }
  .hx .sm\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }
}
@media (min-width: 768px) {
  .hx .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .hx .md\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .hx .md\:col-span-11 {
    grid-column: span 11 / span 11;
  }
  .hx .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }
  .hx .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .hx .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .hx .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .hx .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .hx .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .hx .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .hx .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .hx .md\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .hx .md\:col-span-full {
    grid-column: 1 / -1;
  }
  .hx .md\:hidden {
    display: none;
  }
  .hx .md\:w-auto {
    width: auto;
  }
  .hx .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .hx .md\:grid-cols-none {
    grid-template-columns: none;
  }
  .hx .md\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }
  .hx .md\:flex-row {
    flex-direction: row;
  }
  .hx .md\:unset {
    all: unset;
  }
}
@media (min-width: 1024px) {
  .hx .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .hx .lg\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .hx .lg\:col-span-11 {
    grid-column: span 11 / span 11;
  }
  .hx .lg\:col-span-12 {
    grid-column: span 12 / span 12;
  }
  .hx .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .hx .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .hx .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .hx .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .hx .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .hx .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .hx .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .hx .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .hx .lg\:col-span-full {
    grid-column: 1 / -1;
  }
  .hx .lg\:block {
    display: block;
  }
  .hx .lg\:hidden {
    display: none;
  }
  .hx .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .hx .lg\:grid-cols-none {
    grid-template-columns: none;
  }
  .hx .lg\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }
  .hx .lg\:unset {
    all: unset;
  }
}
@media (min-width: 1280px) {
  .hx .xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .hx .xl\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .hx .xl\:col-span-11 {
    grid-column: span 11 / span 11;
  }
  .hx .xl\:col-span-12 {
    grid-column: span 12 / span 12;
  }
  .hx .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .hx .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .hx .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .hx .xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .hx .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .hx .xl\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .hx .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .hx .xl\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .hx .xl\:col-span-full {
    grid-column: 1 / -1;
  }
  .hx .xl\:hidden {
    display: none;
  }
  .hx .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .hx .xl\:grid-cols-none {
    grid-template-columns: none;
  }
  .hx .xl\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }
  .hx .xl\:unset {
    all: unset;
  }
}
@media (prefers-color-scheme: dark) {
  .hx .dark\:bg-slate-100\/25 {
    background-color: rgb(241 245 249 / 0.25);
  }
  .hx .dark\:\[--hx-color-bg-active\:hsla\(0\2c 0\%\2c 100\%\2c 0\.05\)\] {
    --hx-color-bg-active: hsla(0,0%,100%,0.05);
  }
  .hx .dark\:\*\:text-neutral-100 > * {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
  }
}
.hx .group[open] .group-open\:\[\&\>\*\]\:pointer-events-auto>* {
  pointer-events: auto;
}
.hx .\[\&\>\.btn\]\:rounded-r-none>.btn {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.hx .\[\&\>\.btn\]\:rounded-t-none>.btn {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.hx .\[\&\>\.btn\]\:text-white>.btn {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hx .\[\&\>\.card-body\]\:p-4>.card-body {
  padding: 8px;
}
.hx .peer:checked ~ .peer-checked\:\[\&\>\[data-close\]\]\:inline-flex>[data-close] {
  display: inline-flex;
}
.hx .peer:checked ~ .peer-checked\:\[\&\>\[data-open\]\]\:hidden>[data-open] {
  display: none;
}
.hx .\[\&\>h3\]\:-mt-1>h3 {
  margin-top: -1px;
}
.hx .\[\&\>h3\]\:mb-3>h3 {
  margin-bottom: 4px;
}
.hx .\[\&\>h3\]\:text-h4>h3 {
  font-size: clamp(1.375rem, 1.266rem + 0.484vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
}
.hx .\[\&\>h3\]\:font-bold>h3 {
  font-weight: 700;
}
.hx .\[\&\>h3\]\:text-h4>h3.vtrim:before {
  display: block;
  margin-top: -0.2em;
  content: "";
}
.hx .\[\&\>h3\]\:text-h4>h3.vtrim:after {
  display: block;
  margin-bottom: -0.2em;
  content: "";
}
.hx .\[\&\>img\]\:h-full>img {
  height: 100%;
}
.hx .\[\&\>img\]\:w-full>img {
  width: 100%;
}
.hx .\[\&\>img\]\:object-cover>img {
  object-fit: cover;
}
.hx .\[\&\>img\]\:transition-transform>img {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hx .hover\:\[\&\>img\]\:scale-105>img: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));
}
.hx .\[\&\>input\:first-child\]\:mt-1>input:first-child {
  margin-top: 1px;
}
.hx .\[\&\>input\:first-child\]\:shrink-0>input:first-child {
  flex-shrink: 0;
}
.hx .\[\&\>label\>input\]\:hidden>label>input {
  display: none;
}
.hx .\[\&\>label\]\:items-center>label {
  align-items: center;
}
.hx .\[\&\>label\]\:justify-center>label {
  justify-content: center;
}
.hx .\[\&\>label\]\:px-3>label {
  padding-left: 4px;
  padding-right: 4px;
}
.hx .\[\&\>label\]\:py-0>label {
  padding-top: 0px;
  padding-bottom: 0px;
}
.hx .\[\&\>li\:first-child\]\:\!flex>li:first-child {
  display: flex !important;
}
.hx .\[\&\>li\:last-child\]\:\!flex>li:last-child {
  display: flex !important;
}
.hx .\[\&\[open\]\]\:grid[open] {
  display: grid;
}

/*# sourceMappingURL=hx-main.css.map */