@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Noto+Serif:wght@600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Open+Sans:wght@400;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto+Condensed:wght@700;900&display=swap');


/* ═══════════════════════════════════════════════════════════════════════════
   COPY PROTECTION STYLES
   Prevents unauthorized copying, right-click, text selection, and screenshots
   ═══════════════════════════════════════════════════════════════════════════ */
/* Disable text selection site-wide */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
/* Allow selection only in input fields and textareas */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
/* Prevent image dragging */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
/* Prevent video controls manipulation */
video {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/* Add watermark overlay for extra protection */
body::before {
  content: "© Talk Therapy Academy - Proprietary Content";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  font-weight: bold;
}
/* Dark mode watermark */
@media (prefers-color-scheme: dark) {
  body::before {
    color: rgba(255, 255, 255, 0.03);
  }
}
/* Prevent print screen capture styling */
@media print {
  body::after {
    content: "© Talk Therapy Academy - Unauthorized reproduction prohibited";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10pt;
    padding: 10px;
    background: #f0f0f0;
    border-top: 2px solid #000;
  }
}
/**
 * Mobile Responsive Fixes
 * Ensures all pages are mobile-friendly across the site
 */
/* ─── BASE MOBILE STYLES ─────────────────────────────────────────────────── */
/* Prevent horizontal scroll on mobile */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}
/* Ensure all containers respect viewport width */
* {
  max-width: 100%;
}
/* ─── TYPOGRAPHY MOBILE SCALING ─────────────────────────────────────────── */
/* Scale down large headings on mobile */
@media (max-width: 640px) {
  h1 {
    font-size: clamp(1.75rem, 5vw, 3rem) !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: clamp(1.25rem, 3.5vw, 2rem) !important;
  }

  h4 {
    font-size: clamp(1.125rem, 3vw, 1.5rem) !important;
  }
}
/* ─── BUTTON MOBILE FIXES ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Ensure buttons are tappable (min 44px height) */
  button,
  a[role="button"],
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Full-width buttons on mobile when in flex column */
  .flex-col button,
  .flex-col a[role="button"] {
    width: 100%;
  }
}
/* ─── SPACING MOBILE ADJUSTMENTS ────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Reduce padding on sections */
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Reduce vertical spacing */
  .py-24 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-16 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
/* ─── GRID MOBILE STACKING ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Force single column on mobile */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .md\\:grid-cols-2,
  .md\\:grid-cols-3,
  .lg\\:grid-cols-2,
  .lg\\:grid-cols-3,
  .lg\\:grid-cols-4 {
    grid-template-columns: 1fr !important;
  }

  /* Reduce grid gaps on mobile */
  .gap-8 {
    gap: 1.5rem !important;
  }

  .gap-12 {
    gap: 2rem !important;
  }
}
/* ─── IMAGE MOBILE OPTIMIZATION ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Reduce image container heights on mobile */
  .h-\\[600px\\],
  .h-\\[700px\\],
  .h-\\[800px\\] {
    height: auto !important;
    max-height: 400px !important;
  }
}
/* ─── CARD MOBILE FIXES ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Reduce card padding on mobile */
  .card,
  [class*="rounded-"] {
    padding: 1rem !important;
  }

  /* Reduce border radius on mobile */
  .rounded-3xl {
    border-radius: 1.5rem !important;
  }

  .rounded-2xl {
    border-radius: 1rem !important;
  }
}
/* ─── MODAL/DIALOG MOBILE FIXES ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Full-width modals on mobile */
  [role="dialog"],
  .dialog,
  .modal {
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    margin: 1rem !important;
  }
}
/* ─── TABLE MOBILE RESPONSIVENESS ───────────────────────────────────────── */
@media (max-width: 768px) {
  /* Make tables scrollable on mobile */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Stack table rows on very small screens */
  @media (max-width: 480px) {
    table,
    thead,
    tbody,
    th,
    td,
    tr {
      display: block;
    }

    thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }

    tr {
      margin-bottom: 1rem;
      border: 1px solid #ddd;
      border-radius: 0.5rem;
    }

    td {
      border: none;
      position: relative;
      padding-left: 50%;
    }

    td:before {
      position: absolute;
      left: 1rem;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: bold;
    }
  }
}
/* ─── FORM MOBILE OPTIMIZATION ──────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Full-width form inputs on mobile */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    width: 100% !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
  }

  /* Stack form fields vertically */
  form .flex {
    flex-direction: column !important;
  }

  form .flex > * {
    width: 100% !important;
  }
}
/* ─── NAVIGATION MOBILE FIXES ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Ensure mobile menu is accessible */
  nav {
    position: relative;
  }

  /* Mobile menu overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }

  /* Mobile menu content */
  .mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: white;
    z-index: 50;
    overflow-y: auto;
  }
}
/* ─── ACCESSIBILITY MOBILE ENHANCEMENTS ─────────────────────────────────── */
@media (max-width: 640px) {
  /* Larger tap targets for mobile */
  a,
  button,
  [role="button"],
  [onclick] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Increase font size for readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Increase spacing between interactive elements */
  a + a,
  button + button {
    margin-top: 0.5rem;
  }
}
/* ─── SPECIFIC PAGE FIXES ───────────────────────────────────────────────── */
/* Homepage Hero Mobile */
@media (max-width: 640px) {
  .hero-section {
    min-height: 70vh !important;
    padding-top: 5rem !important;
  }

  .hero-section h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero-section .cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-section .cta-buttons button,
  .hero-section .cta-buttons a {
    width: 100% !important;
  }
}
/* CyberBrain Mobile */
@media (max-width: 640px) {
  .cyberbrain-card {
    padding: 1rem !important;
  }

  .cyberbrain-title {
    font-size: 1.5rem !important;
  }

  .series-card {
    padding: 1rem !important;
  }
}
/* Course Cards Mobile */
@media (max-width: 640px) {
  .course-card {
    padding: 1rem !important;
  }

  .course-card img {
    height: 200px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Assessment Pages Mobile */
@media (max-width: 640px) {
  .assessment-container {
    padding: 1rem !important;
  }

  .question-card {
    padding: 1rem !important;
  }

  .answer-options {
    flex-direction: column !important;
  }

  .answer-option {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
}
/* Provider Cards Mobile */
@media (max-width: 640px) {
  .provider-card {
    padding: 1rem !important;
  }

  .provider-card img {
    width: 80px !important;
    height: 80px !important;
  }
}
/* ─── UTILITY CLASSES ───────────────────────────────────────────────────── */
/* Mobile-only visibility */
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }
}
/* Mobile text alignment */
@media (max-width: 640px) {
  .mobile-text-center {
    text-align: center !important;
  }

  .mobile-text-left {
    text-align: left !important;
  }
}
/* Mobile padding utilities */
@media (max-width: 640px) {
  .mobile-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mobile-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
/* ─── PERFORMANCE OPTIMIZATIONS ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Reduce animation complexity on mobile */
  * {
    animation-duration: 0.3s !important;
  }

  /* Disable parallax effects on mobile */
  [data-parallax] {
    transform: none !important;
  }

  /* Reduce blur effects on mobile for performance */
  .backdrop-blur-sm,
  .backdrop-blur-md,
  .backdrop-blur-lg {
    backdrop-filter: blur(4px) !important;
  }
}
/* ─── SAFE AREA INSETS (iOS Notch Support) ──────────────────────────────── */
@supports (padding: max(0px)) {
  header {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  footer {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: var(--font-sans); /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: var(--font-mono); /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root {
    /* Core Colors */
    --background: 38 44% 96%;
    --foreground: 0 0% 4%;
    --card: 0 0% 100%;
    --card-foreground: 20 16% 15%;
    --popover: 38 44% 96%;
    --popover-foreground: 0 0% 4%;
    /* Darkened primary for WCAG AA compliance (4.5:1 contrast ratio) */
    --primary: 96 12% 38%;
    --primary-foreground: 0 0% 100%;
    --secondary: 35 29% 87%;
    --secondary-foreground: 0 0% 39%;
    --muted: 37 30% 92%;
    --muted-foreground: 29 9% 44%;
    /* Darkened accent for better contrast */
    --accent: 17 47% 46%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 33 22% 84%;
    --input: 33 22% 84%;
    --ring: 96 12% 38%;

    /* Extended Colors */
    --chart-1: 97 12% 79%;
    --chart-2: 95 12% 64%;
    --chart-3: 96 12% 49%;
    --chart-4: 94 12% 34%;
    --chart-5: 98 11% 19%;

    /* Sidebar Colors */
    --sidebar: 37 30% 92%;
    --sidebar-foreground: 0 0% 4%;
    --sidebar-primary: 96 12% 38%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 17 47% 46%;
    --sidebar-accent-foreground: 0 0% 100%;
    --sidebar-border: 33 22% 84%;
    --sidebar-ring: 96 12% 38%;

    /* Typography - Noto Sans supports Latin, CJK, Thai, Vietnamese, and more */
    --font-sans: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Noto Serif", Georgia, serif;
    --font-serif: ui-serif, Georgia, "Times New Roman", serif;
    --font-mono: ui-monospace, "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;

    /* Border Radius */
    --radius: 0.5rem;

    /* Shadows */
    --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
    --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
    --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
    --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
    --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
    --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
    --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
    --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);

    /* ─── CYBERBRAIN THEME: DC UNIVERSE DARK ─── */
    /* Backgrounds */
    --cb-bg-void: #000000;
    --cb-bg-deep: #021a32;
    --cb-bg-surface: #0a2540;
    --cb-bg-card: #0d2d4a;
    --cb-bg-silver-block: #CBD5E2;
    --cb-bg-gradient-header: linear-gradient(135deg, #021a32 0%, #0a2540 100%);

    /* Accents — DC palette */
    --cb-accent-electric: #007bff;
    --cb-accent-electric-glow: rgba(0, 123, 255, 0.5);
    --cb-accent-gold: #f5c518;
    --cb-accent-red: #e63946;
    --cb-accent-green: #00A35B;
    /* legacy aliases kept for ComicReader / PayPal components */
    --cb-accent-fuchsia: #007bff;
    --cb-accent-electric-blue: #007bff;

    /* Text */
    --cb-text-primary: #FFFFFF;
    --cb-text-muted: rgba(255,255,255,0.6);
    --cb-text-dark: #000000;
    --cb-text-glow-base: rgba(255, 255, 255, 0.7);

    /* Typography */
    --cb-font-header: 'Oswald', 'Roboto Condensed', 'Impact', sans-serif;
    --cb-font-body: 'Open Sans', sans-serif;

    /* Special Effects */
    --cb-glow-electric: 0 0 12px rgba(0, 123, 255, 0.7), 0 0 30px rgba(0, 123, 255, 0.3);
    --cb-glow-gold: 0 0 12px rgba(245, 197, 24, 0.6);
    --cb-glow-fuchsia: 0 0 10px rgba(0, 123, 255, 0.6);
    --cb-glow-white: 0 0 10px rgba(255, 255, 255, 0.6);
    --cb-border-title: 2px solid rgba(0, 123, 255, 0.4);
  }
*{
  border-color: hsl(var(--border));
}
body{
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  
    font-family: var(--font-sans);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
  }
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 1400px){
  .container{
    max-width: 1400px;
  }
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none{
  pointer-events: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-2{
  inset: 0.5rem;
}
.inset-\[10px\]{
  inset: 10px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.-bottom-1{
  bottom: -0.25rem;
}
.-bottom-1\/4{
  bottom: -25%;
}
.-bottom-12{
  bottom: -3rem;
}
.-bottom-24{
  bottom: -6rem;
}
.-bottom-32{
  bottom: -8rem;
}
.-bottom-8{
  bottom: -2rem;
}
.-left-1\/4{
  left: -25%;
}
.-left-12{
  left: -3rem;
}
.-left-24{
  left: -6rem;
}
.-left-32{
  left: -8rem;
}
.-left-4{
  left: -1rem;
}
.-left-8{
  left: -2rem;
}
.-right-1{
  right: -0.25rem;
}
.-right-1\/4{
  right: -25%;
}
.-right-12{
  right: -3rem;
}
.-right-24{
  right: -6rem;
}
.-right-4{
  right: -1rem;
}
.-right-8{
  right: -2rem;
}
.-top-1{
  top: -0.25rem;
}
.-top-1\/4{
  top: -25%;
}
.-top-12{
  top: -3rem;
}
.-top-24{
  top: -6rem;
}
.-top-8{
  top: -2rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-1\/3{
  bottom: 33.333333%;
}
.bottom-10{
  bottom: 2.5rem;
}
.bottom-20{
  bottom: 5rem;
}
.bottom-24{
  bottom: 6rem;
}
.bottom-4{
  bottom: 1rem;
}
.bottom-6{
  bottom: 1.5rem;
}
.bottom-8{
  bottom: 2rem;
}
.bottom-full{
  bottom: 100%;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-10{
  left: 2.5rem;
}
.left-2{
  left: 0.5rem;
}
.left-2\.5{
  left: 0.625rem;
}
.left-3{
  left: 0.75rem;
}
.left-4{
  left: 1rem;
}
.left-5{
  left: 1.25rem;
}
.left-8{
  left: 2rem;
}
.left-\[50\%\]{
  left: 50%;
}
.left-full{
  left: 100%;
}
.right-0{
  right: 0px;
}
.right-10{
  right: 2.5rem;
}
.right-2{
  right: 0.5rem;
}
.right-3{
  right: 0.75rem;
}
.right-4{
  right: 1rem;
}
.right-6{
  right: 1.5rem;
}
.right-8{
  right: 2rem;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-1\/4{
  top: 25%;
}
.top-10{
  top: 2.5rem;
}
.top-16{
  top: 4rem;
}
.top-2{
  top: 0.5rem;
}
.top-2\.5{
  top: 0.625rem;
}
.top-20{
  top: 5rem;
}
.top-24{
  top: 6rem;
}
.top-3{
  top: 0.75rem;
}
.top-4{
  top: 1rem;
}
.top-8{
  top: 2rem;
}
.top-\[1px\]{
  top: 1px;
}
.top-\[50\%\]{
  top: 50%;
}
.top-\[60\%\]{
  top: 60%;
}
.top-full{
  top: 100%;
}
.isolate{
  isolation: isolate;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-30{
  z-index: 30;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[9999\]{
  z-index: 9999;
}
.-mx-1{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-ml-1{
  margin-left: -0.25rem;
}
.-ml-4{
  margin-left: -1rem;
}
.-ml-6{
  margin-left: -1.5rem;
}
.-mt-4{
  margin-top: -1rem;
}
.mb-0\.5{
  margin-bottom: 0.125rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-1\.5{
  margin-bottom: 0.375rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-14{
  margin-bottom: 3.5rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-0\.5{
  margin-left: 0.125rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-11{
  margin-left: 2.75rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-7{
  margin-left: 1.75rem;
}
.ml-auto{
  margin-left: auto;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-auto{
  margin-top: auto;
}
.line-clamp-1{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.size-4{
  width: 1rem;
  height: 1rem;
}
.size-\[--cell-size\]{
  width: var(--cell-size);
  height: var(--cell-size);
}
.h-0\.5{
  height: 0.125rem;
}
.h-1{
  height: 0.25rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-2\.5{
  height: 0.625rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-28{
  height: 7rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 1rem;
}
.h-40{
  height: 10rem;
}
.h-44{
  height: 11rem;
}
.h-48{
  height: 12rem;
}
.h-5{
  height: 1.25rem;
}
.h-52{
  height: 13rem;
}
.h-56{
  height: 14rem;
}
.h-6{
  height: 1.5rem;
}
.h-64{
  height: 16rem;
}
.h-7{
  height: 1.75rem;
}
.h-72{
  height: 18rem;
}
.h-8{
  height: 2rem;
}
.h-80{
  height: 20rem;
}
.h-9{
  height: 2.25rem;
}
.h-96{
  height: 24rem;
}
.h-\[--cell-size\]{
  height: var(--cell-size);
}
.h-\[1px\]{
  height: 1px;
}
.h-\[300px\]{
  height: 300px;
}
.h-\[400px\]{
  height: 400px;
}
.h-\[500px\]{
  height: 500px;
}
.h-\[600px\]{
  height: 600px;
}
.h-\[850px\]{
  height: 850px;
}
.h-\[85vh\]{
  height: 85vh;
}
.h-\[calc\(100vh-64px\)\]{
  height: calc(100vh - 64px);
}
.h-\[var\(--radix-navigation-menu-viewport-height\)\]{
  height: var(--radix-navigation-menu-viewport-height);
}
.h-\[var\(--radix-select-trigger-height\)\]{
  height: var(--radix-select-trigger-height);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.h-screen{
  height: 100vh;
}
.max-h-72{
  max-height: 18rem;
}
.max-h-80{
  max-height: 20rem;
}
.max-h-\[--radix-context-menu-content-available-height\]{
  max-height: var(--radix-context-menu-content-available-height);
}
.max-h-\[--radix-select-content-available-height\]{
  max-height: var(--radix-select-content-available-height);
}
.max-h-\[300px\]{
  max-height: 300px;
}
.max-h-\[600px\]{
  max-height: 600px;
}
.max-h-\[700px\]{
  max-height: 700px;
}
.max-h-\[90vh\]{
  max-height: 90vh;
}
.max-h-\[var\(--radix-dropdown-menu-content-available-height\)\]{
  max-height: var(--radix-dropdown-menu-content-available-height);
}
.max-h-full{
  max-height: 100%;
}
.min-h-\[150px\]{
  min-height: 150px;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[60vh\]{
  min-height: 60vh;
}
.min-h-\[70vh\]{
  min-height: 70vh;
}
.min-h-\[80px\]{
  min-height: 80px;
}
.min-h-\[80vh\]{
  min-height: 80vh;
}
.min-h-screen{
  min-height: 100vh;
}
.w-0\.5{
  width: 0.125rem;
}
.w-1\.5{
  width: 0.375rem;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-10{
  width: 2.5rem;
}
.w-11{
  width: 2.75rem;
}
.w-12{
  width: 3rem;
}
.w-14{
  width: 3.5rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\.5{
  width: 0.625rem;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-28{
  width: 7rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-3\/4{
  width: 75%;
}
.w-32{
  width: 8rem;
}
.w-4{
  width: 1rem;
}
.w-40{
  width: 10rem;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-52{
  width: 13rem;
}
.w-56{
  width: 14rem;
}
.w-6{
  width: 1.5rem;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-80{
  width: 20rem;
}
.w-9{
  width: 2.25rem;
}
.w-96{
  width: 24rem;
}
.w-\[--cell-size\]{
  width: var(--cell-size);
}
.w-\[100px\]{
  width: 100px;
}
.w-\[1200px\]{
  width: 1200px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[300px\]{
  width: 300px;
}
.w-\[400px\]{
  width: 400px;
}
.w-\[500px\]{
  width: 500px;
}
.w-\[600px\]{
  width: 600px;
}
.w-\[62\%\]{
  width: 62%;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.w-px{
  width: 1px;
}
.min-w-0{
  min-width: 0px;
}
.min-w-10{
  min-width: 2.5rem;
}
.min-w-11{
  min-width: 2.75rem;
}
.min-w-9{
  min-width: 2.25rem;
}
.min-w-\[--cell-size\]{
  min-width: var(--cell-size);
}
.min-w-\[12rem\]{
  min-width: 12rem;
}
.min-w-\[200px\]{
  min-width: 200px;
}
.min-w-\[20px\]{
  min-width: 20px;
}
.min-w-\[250px\]{
  min-width: 250px;
}
.min-w-\[60px\]{
  min-width: 60px;
}
.min-w-\[64px\]{
  min-width: 64px;
}
.min-w-\[8rem\]{
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\]{
  min-width: var(--radix-select-trigger-width);
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-6xl{
  max-width: 72rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[100px\]{
  max-width: 100px;
}
.max-w-\[120px\]{
  max-width: 120px;
}
.max-w-\[160px\]{
  max-width: 160px;
}
.max-w-\[220px\]{
  max-width: 220px;
}
.max-w-\[80\%\]{
  max-width: 80%;
}
.max-w-\[85\%\]{
  max-width: 85%;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-max{
  max-width: -moz-max-content;
  max-width: max-content;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-screen-2xl{
  max-width: 1536px;
}
.max-w-screen-lg{
  max-width: 1024px;
}
.max-w-screen-md{
  max-width: 768px;
}
.max-w-screen-sm{
  max-width: 640px;
}
.max-w-screen-xl{
  max-width: 1280px;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xl{
  max-width: 36rem;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.basis-full{
  flex-basis: 100%;
}
.caption-bottom{
  caption-side: bottom;
}
.border-collapse{
  border-collapse: collapse;
}
.origin-\[--radix-context-menu-content-transform-origin\]{
  transform-origin: var(--radix-context-menu-content-transform-origin);
}
.origin-\[--radix-dropdown-menu-content-transform-origin\]{
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
}
.origin-\[--radix-hover-card-content-transform-origin\]{
  transform-origin: var(--radix-hover-card-content-transform-origin);
}
.origin-\[--radix-menubar-content-transform-origin\]{
  transform-origin: var(--radix-menubar-content-transform-origin);
}
.origin-\[--radix-popover-content-transform-origin\]{
  transform-origin: var(--radix-popover-content-transform-origin);
}
.origin-\[--radix-select-content-transform-origin\]{
  transform-origin: var(--radix-select-content-transform-origin);
}
.origin-\[--radix-tooltip-content-transform-origin\]{
  transform-origin: var(--radix-tooltip-content-transform-origin);
}
.origin-top{
  transform-origin: top;
}
.-translate-x-1\/2{
  --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));
}
.-translate-x-full{
  --tw-translate-x: -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));
}
.-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));
}
.translate-x-0{
  --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));
}
.translate-x-\[-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));
}
.translate-y-\[-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));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --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));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-75{
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce{
  animation: bounce 1s infinite;
}
@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping{
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  animation: spin 1s linear infinite;
}
.cursor-default{
  cursor: default;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.touch-none{
  touch-action: none;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-none{
  resize: none;
}
.resize{
  resize: both;
}
.scroll-mt-32{
  scroll-margin-top: 8rem;
}
.list-inside{
  list-style-position: inside;
}
.list-decimal{
  list-style-type: decimal;
}
.list-disc{
  list-style-type: disc;
}
.list-none{
  list-style-type: none;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.break-before-page{
  -moz-column-break-before: page;
       break-before: page;
}
.break-inside-avoid{
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-10{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.items-stretch{
  align-items: stretch;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-0\.5{
  gap: 0.125rem;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-16{
  gap: 4rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-2\.5{
  gap: 0.625rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.-space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.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));
}
.divide-\[\#B2D8D8\]\/30 > :not([hidden]) ~ :not([hidden]){
  border-color: rgb(178 216 216 / 0.3);
}
.self-start{
  align-self: flex-start;
}
.self-center{
  align-self: center;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.whitespace-pre-line{
  white-space: pre-line;
}
.whitespace-pre-wrap{
  white-space: pre-wrap;
}
.break-words{
  overflow-wrap: break-word;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-\[16px\]{
  border-radius: 16px;
}
.rounded-\[inherit\]{
  border-radius: inherit;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: var(--radius);
}
.rounded-md{
  border-radius: calc(var(--radius) - 2px);
}
.rounded-none{
  border-radius: 0px;
}
.rounded-sm{
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b-2xl{
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-l-md{
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.rounded-r-lg{
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.rounded-r-md{
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.rounded-t-2xl{
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.rounded-t-\[10px\]{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.rounded-tl-sm{
  border-top-left-radius: calc(var(--radius) - 4px);
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-4{
  border-width: 4px;
}
.border-\[20px\]{
  border-width: 20px;
}
.border-\[2px\]{
  border-width: 2px;
}
.border-x{
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-y{
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-r{
  border-right-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-0{
  border-top-width: 0px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-dashed{
  border-style: dashed;
}
.border-none{
  border-style: none;
}
.border-\[\#00ffff\]{
  --tw-border-opacity: 1;
  border-color: rgb(0 255 255 / var(--tw-border-opacity, 1));
}
.border-\[\#06B6D4\]{
  --tw-border-opacity: 1;
  border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
}
.border-\[\#2C3E2E\]{
  --tw-border-opacity: 1;
  border-color: rgb(44 62 46 / var(--tw-border-opacity, 1));
}
.border-\[\#7A8C6E\]{
  --tw-border-opacity: 1;
  border-color: rgb(122 140 110 / var(--tw-border-opacity, 1));
}
.border-\[\#7A8C6E\]\/20{
  border-color: rgb(122 140 110 / 0.2);
}
.border-\[\#8FA888\]{
  --tw-border-opacity: 1;
  border-color: rgb(143 168 136 / var(--tw-border-opacity, 1));
}
.border-\[\#A8B5A0\]{
  --tw-border-opacity: 1;
  border-color: rgb(168 181 160 / var(--tw-border-opacity, 1));
}
.border-\[\#A8B5A0\]\/20{
  border-color: rgb(168 181 160 / 0.2);
}
.border-\[\#A8B5A0\]\/30{
  border-color: rgb(168 181 160 / 0.3);
}
.border-\[\#A8D4A8\]{
  --tw-border-opacity: 1;
  border-color: rgb(168 212 168 / var(--tw-border-opacity, 1));
}
.border-\[\#B2D8D8\]{
  --tw-border-opacity: 1;
  border-color: rgb(178 216 216 / var(--tw-border-opacity, 1));
}
.border-\[\#B8D4E8\]{
  --tw-border-opacity: 1;
  border-color: rgb(184 212 232 / var(--tw-border-opacity, 1));
}
.border-\[\#B8D4E8\]\/30{
  border-color: rgb(184 212 232 / 0.3);
}
.border-\[\#C4785A\]{
  --tw-border-opacity: 1;
  border-color: rgb(196 120 90 / var(--tw-border-opacity, 1));
}
.border-\[\#C4A882\]{
  --tw-border-opacity: 1;
  border-color: rgb(196 168 130 / var(--tw-border-opacity, 1));
}
.border-\[\#C4B5D0\]{
  --tw-border-opacity: 1;
  border-color: rgb(196 181 208 / var(--tw-border-opacity, 1));
}
.border-\[\#C8D5C0\]{
  --tw-border-opacity: 1;
  border-color: rgb(200 213 192 / var(--tw-border-opacity, 1));
}
.border-\[\#C8D8C4\]{
  --tw-border-opacity: 1;
  border-color: rgb(200 216 196 / var(--tw-border-opacity, 1));
}
.border-\[\#D4C5E0\]{
  --tw-border-opacity: 1;
  border-color: rgb(212 197 224 / var(--tw-border-opacity, 1));
}
.border-\[\#D4C5E0\]\/30{
  border-color: rgb(212 197 224 / 0.3);
}
.border-\[\#D8E4D0\]{
  --tw-border-opacity: 1;
  border-color: rgb(216 228 208 / var(--tw-border-opacity, 1));
}
.border-\[\#E8DFC8\]{
  --tw-border-opacity: 1;
  border-color: rgb(232 223 200 / var(--tw-border-opacity, 1));
}
.border-\[\#E8E4D8\]{
  --tw-border-opacity: 1;
  border-color: rgb(232 228 216 / var(--tw-border-opacity, 1));
}
.border-\[\#EEF3EC\]{
  --tw-border-opacity: 1;
  border-color: rgb(238 243 236 / var(--tw-border-opacity, 1));
}
.border-\[\#FFB7C5\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 183 197 / var(--tw-border-opacity, 1));
}
.border-\[\#FFB8B8\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 184 184 / var(--tw-border-opacity, 1));
}
.border-\[\#FFD88A\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 216 138 / var(--tw-border-opacity, 1));
}
.border-accent{
  border-color: hsl(var(--accent));
}
.border-accent-foreground{
  border-color: hsl(var(--accent-foreground));
}
.border-accent-foreground\/0{
  border-color: hsl(var(--accent-foreground) / 0);
}
.border-accent-foreground\/10{
  border-color: hsl(var(--accent-foreground) / 0.1);
}
.border-accent-foreground\/100{
  border-color: hsl(var(--accent-foreground) / 1);
}
.border-accent-foreground\/15{
  border-color: hsl(var(--accent-foreground) / 0.15);
}
.border-accent-foreground\/20{
  border-color: hsl(var(--accent-foreground) / 0.2);
}
.border-accent-foreground\/25{
  border-color: hsl(var(--accent-foreground) / 0.25);
}
.border-accent-foreground\/30{
  border-color: hsl(var(--accent-foreground) / 0.3);
}
.border-accent-foreground\/35{
  border-color: hsl(var(--accent-foreground) / 0.35);
}
.border-accent-foreground\/40{
  border-color: hsl(var(--accent-foreground) / 0.4);
}
.border-accent-foreground\/45{
  border-color: hsl(var(--accent-foreground) / 0.45);
}
.border-accent-foreground\/5{
  border-color: hsl(var(--accent-foreground) / 0.05);
}
.border-accent-foreground\/50{
  border-color: hsl(var(--accent-foreground) / 0.5);
}
.border-accent-foreground\/55{
  border-color: hsl(var(--accent-foreground) / 0.55);
}
.border-accent-foreground\/60{
  border-color: hsl(var(--accent-foreground) / 0.6);
}
.border-accent-foreground\/65{
  border-color: hsl(var(--accent-foreground) / 0.65);
}
.border-accent-foreground\/70{
  border-color: hsl(var(--accent-foreground) / 0.7);
}
.border-accent-foreground\/75{
  border-color: hsl(var(--accent-foreground) / 0.75);
}
.border-accent-foreground\/80{
  border-color: hsl(var(--accent-foreground) / 0.8);
}
.border-accent-foreground\/85{
  border-color: hsl(var(--accent-foreground) / 0.85);
}
.border-accent-foreground\/90{
  border-color: hsl(var(--accent-foreground) / 0.9);
}
.border-accent-foreground\/95{
  border-color: hsl(var(--accent-foreground) / 0.95);
}
.border-accent\/0{
  border-color: hsl(var(--accent) / 0);
}
.border-accent\/10{
  border-color: hsl(var(--accent) / 0.1);
}
.border-accent\/100{
  border-color: hsl(var(--accent) / 1);
}
.border-accent\/15{
  border-color: hsl(var(--accent) / 0.15);
}
.border-accent\/20{
  border-color: hsl(var(--accent) / 0.2);
}
.border-accent\/25{
  border-color: hsl(var(--accent) / 0.25);
}
.border-accent\/30{
  border-color: hsl(var(--accent) / 0.3);
}
.border-accent\/35{
  border-color: hsl(var(--accent) / 0.35);
}
.border-accent\/40{
  border-color: hsl(var(--accent) / 0.4);
}
.border-accent\/45{
  border-color: hsl(var(--accent) / 0.45);
}
.border-accent\/5{
  border-color: hsl(var(--accent) / 0.05);
}
.border-accent\/50{
  border-color: hsl(var(--accent) / 0.5);
}
.border-accent\/55{
  border-color: hsl(var(--accent) / 0.55);
}
.border-accent\/60{
  border-color: hsl(var(--accent) / 0.6);
}
.border-accent\/65{
  border-color: hsl(var(--accent) / 0.65);
}
.border-accent\/70{
  border-color: hsl(var(--accent) / 0.7);
}
.border-accent\/75{
  border-color: hsl(var(--accent) / 0.75);
}
.border-accent\/80{
  border-color: hsl(var(--accent) / 0.8);
}
.border-accent\/85{
  border-color: hsl(var(--accent) / 0.85);
}
.border-accent\/90{
  border-color: hsl(var(--accent) / 0.9);
}
.border-accent\/95{
  border-color: hsl(var(--accent) / 0.95);
}
.border-amber-200{
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}
.border-amber-300{
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.border-amber-400\/30{
  border-color: rgb(251 191 36 / 0.3);
}
.border-amber-600{
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}
.border-background{
  border-color: hsl(var(--background));
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-blue-400\/30{
  border-color: rgb(96 165 250 / 0.3);
}
.border-blue-500\/20{
  border-color: rgb(59 130 246 / 0.2);
}
.border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-border{
  border-color: hsl(var(--border));
}
.border-border\/30{
  border-color: hsl(var(--border) / 0.3);
}
.border-border\/50{
  border-color: hsl(var(--border) / 0.5);
}
.border-card{
  border-color: hsl(var(--card));
}
.border-current{
  border-color: currentColor;
}
.border-cyan-400{
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.border-cyan-500\/30{
  border-color: rgb(6 182 212 / 0.3);
}
.border-destructive{
  border-color: hsl(var(--destructive));
}
.border-destructive-foreground{
  border-color: hsl(var(--destructive-foreground));
}
.border-destructive-foreground\/0{
  border-color: hsl(var(--destructive-foreground) / 0);
}
.border-destructive-foreground\/10{
  border-color: hsl(var(--destructive-foreground) / 0.1);
}
.border-destructive-foreground\/100{
  border-color: hsl(var(--destructive-foreground) / 1);
}
.border-destructive-foreground\/15{
  border-color: hsl(var(--destructive-foreground) / 0.15);
}
.border-destructive-foreground\/20{
  border-color: hsl(var(--destructive-foreground) / 0.2);
}
.border-destructive-foreground\/25{
  border-color: hsl(var(--destructive-foreground) / 0.25);
}
.border-destructive-foreground\/30{
  border-color: hsl(var(--destructive-foreground) / 0.3);
}
.border-destructive-foreground\/35{
  border-color: hsl(var(--destructive-foreground) / 0.35);
}
.border-destructive-foreground\/40{
  border-color: hsl(var(--destructive-foreground) / 0.4);
}
.border-destructive-foreground\/45{
  border-color: hsl(var(--destructive-foreground) / 0.45);
}
.border-destructive-foreground\/5{
  border-color: hsl(var(--destructive-foreground) / 0.05);
}
.border-destructive-foreground\/50{
  border-color: hsl(var(--destructive-foreground) / 0.5);
}
.border-destructive-foreground\/55{
  border-color: hsl(var(--destructive-foreground) / 0.55);
}
.border-destructive-foreground\/60{
  border-color: hsl(var(--destructive-foreground) / 0.6);
}
.border-destructive-foreground\/65{
  border-color: hsl(var(--destructive-foreground) / 0.65);
}
.border-destructive-foreground\/70{
  border-color: hsl(var(--destructive-foreground) / 0.7);
}
.border-destructive-foreground\/75{
  border-color: hsl(var(--destructive-foreground) / 0.75);
}
.border-destructive-foreground\/80{
  border-color: hsl(var(--destructive-foreground) / 0.8);
}
.border-destructive-foreground\/85{
  border-color: hsl(var(--destructive-foreground) / 0.85);
}
.border-destructive-foreground\/90{
  border-color: hsl(var(--destructive-foreground) / 0.9);
}
.border-destructive-foreground\/95{
  border-color: hsl(var(--destructive-foreground) / 0.95);
}
.border-destructive\/0{
  border-color: hsl(var(--destructive) / 0);
}
.border-destructive\/10{
  border-color: hsl(var(--destructive) / 0.1);
}
.border-destructive\/100{
  border-color: hsl(var(--destructive) / 1);
}
.border-destructive\/15{
  border-color: hsl(var(--destructive) / 0.15);
}
.border-destructive\/20{
  border-color: hsl(var(--destructive) / 0.2);
}
.border-destructive\/25{
  border-color: hsl(var(--destructive) / 0.25);
}
.border-destructive\/30{
  border-color: hsl(var(--destructive) / 0.3);
}
.border-destructive\/35{
  border-color: hsl(var(--destructive) / 0.35);
}
.border-destructive\/40{
  border-color: hsl(var(--destructive) / 0.4);
}
.border-destructive\/45{
  border-color: hsl(var(--destructive) / 0.45);
}
.border-destructive\/5{
  border-color: hsl(var(--destructive) / 0.05);
}
.border-destructive\/50{
  border-color: hsl(var(--destructive) / 0.5);
}
.border-destructive\/55{
  border-color: hsl(var(--destructive) / 0.55);
}
.border-destructive\/60{
  border-color: hsl(var(--destructive) / 0.6);
}
.border-destructive\/65{
  border-color: hsl(var(--destructive) / 0.65);
}
.border-destructive\/70{
  border-color: hsl(var(--destructive) / 0.7);
}
.border-destructive\/75{
  border-color: hsl(var(--destructive) / 0.75);
}
.border-destructive\/80{
  border-color: hsl(var(--destructive) / 0.8);
}
.border-destructive\/85{
  border-color: hsl(var(--destructive) / 0.85);
}
.border-destructive\/90{
  border-color: hsl(var(--destructive) / 0.9);
}
.border-destructive\/95{
  border-color: hsl(var(--destructive) / 0.95);
}
.border-emerald-100{
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}
.border-emerald-200{
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}
.border-emerald-300{
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}
.border-emerald-400\/30{
  border-color: rgb(52 211 153 / 0.3);
}
.border-emerald-500\/30{
  border-color: rgb(16 185 129 / 0.3);
}
.border-emerald-500\/40{
  border-color: rgb(16 185 129 / 0.4);
}
.border-emerald-700{
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-gray-700\/30{
  border-color: rgb(55 65 81 / 0.3);
}
.border-gray-900{
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-green-500{
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-green-500\/20{
  border-color: rgb(34 197 94 / 0.2);
}
.border-green-600{
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.border-indigo-200{
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.border-input{
  border-color: hsl(var(--input));
}
.border-muted{
  border-color: hsl(var(--muted));
}
.border-muted-foreground{
  border-color: hsl(var(--muted-foreground));
}
.border-muted-foreground\/0{
  border-color: hsl(var(--muted-foreground) / 0);
}
.border-muted-foreground\/10{
  border-color: hsl(var(--muted-foreground) / 0.1);
}
.border-muted-foreground\/100{
  border-color: hsl(var(--muted-foreground) / 1);
}
.border-muted-foreground\/15{
  border-color: hsl(var(--muted-foreground) / 0.15);
}
.border-muted-foreground\/20{
  border-color: hsl(var(--muted-foreground) / 0.2);
}
.border-muted-foreground\/25{
  border-color: hsl(var(--muted-foreground) / 0.25);
}
.border-muted-foreground\/30{
  border-color: hsl(var(--muted-foreground) / 0.3);
}
.border-muted-foreground\/35{
  border-color: hsl(var(--muted-foreground) / 0.35);
}
.border-muted-foreground\/40{
  border-color: hsl(var(--muted-foreground) / 0.4);
}
.border-muted-foreground\/45{
  border-color: hsl(var(--muted-foreground) / 0.45);
}
.border-muted-foreground\/5{
  border-color: hsl(var(--muted-foreground) / 0.05);
}
.border-muted-foreground\/50{
  border-color: hsl(var(--muted-foreground) / 0.5);
}
.border-muted-foreground\/55{
  border-color: hsl(var(--muted-foreground) / 0.55);
}
.border-muted-foreground\/60{
  border-color: hsl(var(--muted-foreground) / 0.6);
}
.border-muted-foreground\/65{
  border-color: hsl(var(--muted-foreground) / 0.65);
}
.border-muted-foreground\/70{
  border-color: hsl(var(--muted-foreground) / 0.7);
}
.border-muted-foreground\/75{
  border-color: hsl(var(--muted-foreground) / 0.75);
}
.border-muted-foreground\/80{
  border-color: hsl(var(--muted-foreground) / 0.8);
}
.border-muted-foreground\/85{
  border-color: hsl(var(--muted-foreground) / 0.85);
}
.border-muted-foreground\/90{
  border-color: hsl(var(--muted-foreground) / 0.9);
}
.border-muted-foreground\/95{
  border-color: hsl(var(--muted-foreground) / 0.95);
}
.border-muted\/0{
  border-color: hsl(var(--muted) / 0);
}
.border-muted\/10{
  border-color: hsl(var(--muted) / 0.1);
}
.border-muted\/100{
  border-color: hsl(var(--muted) / 1);
}
.border-muted\/15{
  border-color: hsl(var(--muted) / 0.15);
}
.border-muted\/20{
  border-color: hsl(var(--muted) / 0.2);
}
.border-muted\/25{
  border-color: hsl(var(--muted) / 0.25);
}
.border-muted\/30{
  border-color: hsl(var(--muted) / 0.3);
}
.border-muted\/35{
  border-color: hsl(var(--muted) / 0.35);
}
.border-muted\/40{
  border-color: hsl(var(--muted) / 0.4);
}
.border-muted\/45{
  border-color: hsl(var(--muted) / 0.45);
}
.border-muted\/5{
  border-color: hsl(var(--muted) / 0.05);
}
.border-muted\/50{
  border-color: hsl(var(--muted) / 0.5);
}
.border-muted\/55{
  border-color: hsl(var(--muted) / 0.55);
}
.border-muted\/60{
  border-color: hsl(var(--muted) / 0.6);
}
.border-muted\/65{
  border-color: hsl(var(--muted) / 0.65);
}
.border-muted\/70{
  border-color: hsl(var(--muted) / 0.7);
}
.border-muted\/75{
  border-color: hsl(var(--muted) / 0.75);
}
.border-muted\/80{
  border-color: hsl(var(--muted) / 0.8);
}
.border-muted\/85{
  border-color: hsl(var(--muted) / 0.85);
}
.border-muted\/90{
  border-color: hsl(var(--muted) / 0.9);
}
.border-muted\/95{
  border-color: hsl(var(--muted) / 0.95);
}
.border-orange-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.border-orange-300{
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.border-orange-600{
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.border-primary{
  border-color: hsl(var(--primary));
}
.border-primary-foreground{
  border-color: hsl(var(--primary-foreground));
}
.border-primary-foreground\/0{
  border-color: hsl(var(--primary-foreground) / 0);
}
.border-primary-foreground\/10{
  border-color: hsl(var(--primary-foreground) / 0.1);
}
.border-primary-foreground\/100{
  border-color: hsl(var(--primary-foreground) / 1);
}
.border-primary-foreground\/15{
  border-color: hsl(var(--primary-foreground) / 0.15);
}
.border-primary-foreground\/20{
  border-color: hsl(var(--primary-foreground) / 0.2);
}
.border-primary-foreground\/25{
  border-color: hsl(var(--primary-foreground) / 0.25);
}
.border-primary-foreground\/30{
  border-color: hsl(var(--primary-foreground) / 0.3);
}
.border-primary-foreground\/35{
  border-color: hsl(var(--primary-foreground) / 0.35);
}
.border-primary-foreground\/40{
  border-color: hsl(var(--primary-foreground) / 0.4);
}
.border-primary-foreground\/45{
  border-color: hsl(var(--primary-foreground) / 0.45);
}
.border-primary-foreground\/5{
  border-color: hsl(var(--primary-foreground) / 0.05);
}
.border-primary-foreground\/50{
  border-color: hsl(var(--primary-foreground) / 0.5);
}
.border-primary-foreground\/55{
  border-color: hsl(var(--primary-foreground) / 0.55);
}
.border-primary-foreground\/60{
  border-color: hsl(var(--primary-foreground) / 0.6);
}
.border-primary-foreground\/65{
  border-color: hsl(var(--primary-foreground) / 0.65);
}
.border-primary-foreground\/70{
  border-color: hsl(var(--primary-foreground) / 0.7);
}
.border-primary-foreground\/75{
  border-color: hsl(var(--primary-foreground) / 0.75);
}
.border-primary-foreground\/80{
  border-color: hsl(var(--primary-foreground) / 0.8);
}
.border-primary-foreground\/85{
  border-color: hsl(var(--primary-foreground) / 0.85);
}
.border-primary-foreground\/90{
  border-color: hsl(var(--primary-foreground) / 0.9);
}
.border-primary-foreground\/95{
  border-color: hsl(var(--primary-foreground) / 0.95);
}
.border-primary\/0{
  border-color: hsl(var(--primary) / 0);
}
.border-primary\/10{
  border-color: hsl(var(--primary) / 0.1);
}
.border-primary\/100{
  border-color: hsl(var(--primary) / 1);
}
.border-primary\/15{
  border-color: hsl(var(--primary) / 0.15);
}
.border-primary\/20{
  border-color: hsl(var(--primary) / 0.2);
}
.border-primary\/25{
  border-color: hsl(var(--primary) / 0.25);
}
.border-primary\/30{
  border-color: hsl(var(--primary) / 0.3);
}
.border-primary\/35{
  border-color: hsl(var(--primary) / 0.35);
}
.border-primary\/40{
  border-color: hsl(var(--primary) / 0.4);
}
.border-primary\/45{
  border-color: hsl(var(--primary) / 0.45);
}
.border-primary\/5{
  border-color: hsl(var(--primary) / 0.05);
}
.border-primary\/50{
  border-color: hsl(var(--primary) / 0.5);
}
.border-primary\/55{
  border-color: hsl(var(--primary) / 0.55);
}
.border-primary\/60{
  border-color: hsl(var(--primary) / 0.6);
}
.border-primary\/65{
  border-color: hsl(var(--primary) / 0.65);
}
.border-primary\/70{
  border-color: hsl(var(--primary) / 0.7);
}
.border-primary\/75{
  border-color: hsl(var(--primary) / 0.75);
}
.border-primary\/80{
  border-color: hsl(var(--primary) / 0.8);
}
.border-primary\/85{
  border-color: hsl(var(--primary) / 0.85);
}
.border-primary\/90{
  border-color: hsl(var(--primary) / 0.9);
}
.border-primary\/95{
  border-color: hsl(var(--primary) / 0.95);
}
.border-purple-200{
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.border-purple-500{
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.border-purple-500\/20{
  border-color: rgb(168 85 247 / 0.2);
}
.border-purple-500\/30{
  border-color: rgb(168 85 247 / 0.3);
}
.border-red-100{
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-red-400{
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-500\/50{
  border-color: rgb(239 68 68 / 0.5);
}
.border-red-600{
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-red-700{
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.border-rose-100{
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}
.border-rose-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.border-secondary{
  border-color: hsl(var(--secondary));
}
.border-secondary-foreground{
  border-color: hsl(var(--secondary-foreground));
}
.border-secondary-foreground\/0{
  border-color: hsl(var(--secondary-foreground) / 0);
}
.border-secondary-foreground\/10{
  border-color: hsl(var(--secondary-foreground) / 0.1);
}
.border-secondary-foreground\/100{
  border-color: hsl(var(--secondary-foreground) / 1);
}
.border-secondary-foreground\/15{
  border-color: hsl(var(--secondary-foreground) / 0.15);
}
.border-secondary-foreground\/20{
  border-color: hsl(var(--secondary-foreground) / 0.2);
}
.border-secondary-foreground\/25{
  border-color: hsl(var(--secondary-foreground) / 0.25);
}
.border-secondary-foreground\/30{
  border-color: hsl(var(--secondary-foreground) / 0.3);
}
.border-secondary-foreground\/35{
  border-color: hsl(var(--secondary-foreground) / 0.35);
}
.border-secondary-foreground\/40{
  border-color: hsl(var(--secondary-foreground) / 0.4);
}
.border-secondary-foreground\/45{
  border-color: hsl(var(--secondary-foreground) / 0.45);
}
.border-secondary-foreground\/5{
  border-color: hsl(var(--secondary-foreground) / 0.05);
}
.border-secondary-foreground\/50{
  border-color: hsl(var(--secondary-foreground) / 0.5);
}
.border-secondary-foreground\/55{
  border-color: hsl(var(--secondary-foreground) / 0.55);
}
.border-secondary-foreground\/60{
  border-color: hsl(var(--secondary-foreground) / 0.6);
}
.border-secondary-foreground\/65{
  border-color: hsl(var(--secondary-foreground) / 0.65);
}
.border-secondary-foreground\/70{
  border-color: hsl(var(--secondary-foreground) / 0.7);
}
.border-secondary-foreground\/75{
  border-color: hsl(var(--secondary-foreground) / 0.75);
}
.border-secondary-foreground\/80{
  border-color: hsl(var(--secondary-foreground) / 0.8);
}
.border-secondary-foreground\/85{
  border-color: hsl(var(--secondary-foreground) / 0.85);
}
.border-secondary-foreground\/90{
  border-color: hsl(var(--secondary-foreground) / 0.9);
}
.border-secondary-foreground\/95{
  border-color: hsl(var(--secondary-foreground) / 0.95);
}
.border-secondary\/0{
  border-color: hsl(var(--secondary) / 0);
}
.border-secondary\/10{
  border-color: hsl(var(--secondary) / 0.1);
}
.border-secondary\/100{
  border-color: hsl(var(--secondary) / 1);
}
.border-secondary\/15{
  border-color: hsl(var(--secondary) / 0.15);
}
.border-secondary\/20{
  border-color: hsl(var(--secondary) / 0.2);
}
.border-secondary\/25{
  border-color: hsl(var(--secondary) / 0.25);
}
.border-secondary\/30{
  border-color: hsl(var(--secondary) / 0.3);
}
.border-secondary\/35{
  border-color: hsl(var(--secondary) / 0.35);
}
.border-secondary\/40{
  border-color: hsl(var(--secondary) / 0.4);
}
.border-secondary\/45{
  border-color: hsl(var(--secondary) / 0.45);
}
.border-secondary\/5{
  border-color: hsl(var(--secondary) / 0.05);
}
.border-secondary\/50{
  border-color: hsl(var(--secondary) / 0.5);
}
.border-secondary\/55{
  border-color: hsl(var(--secondary) / 0.55);
}
.border-secondary\/60{
  border-color: hsl(var(--secondary) / 0.6);
}
.border-secondary\/65{
  border-color: hsl(var(--secondary) / 0.65);
}
.border-secondary\/70{
  border-color: hsl(var(--secondary) / 0.7);
}
.border-secondary\/75{
  border-color: hsl(var(--secondary) / 0.75);
}
.border-secondary\/80{
  border-color: hsl(var(--secondary) / 0.8);
}
.border-secondary\/85{
  border-color: hsl(var(--secondary) / 0.85);
}
.border-secondary\/90{
  border-color: hsl(var(--secondary) / 0.9);
}
.border-secondary\/95{
  border-color: hsl(var(--secondary) / 0.95);
}
.border-teal-200{
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-violet-200{
  --tw-border-opacity: 1;
  border-color: rgb(221 214 254 / var(--tw-border-opacity, 1));
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10{
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20{
  border-color: rgb(255 255 255 / 0.2);
}
.border-white\/30{
  border-color: rgb(255 255 255 / 0.3);
}
.border-yellow-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.border-yellow-500{
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.border-yellow-600{
  --tw-border-opacity: 1;
  border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
}
.border-l-transparent{
  border-left-color: transparent;
}
.border-t-primary-foreground{
  border-top-color: hsl(var(--primary-foreground));
}
.border-t-transparent{
  border-top-color: transparent;
}
.bg-\[\#002147\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 33 71 / var(--tw-bg-opacity, 1));
}
.bg-\[\#06B6D4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1877F2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(24 119 242 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1A2E1C\]{
  --tw-bg-opacity: 1;
  background-color: rgb(26 46 28 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1a0a2e\]{
  --tw-bg-opacity: 1;
  background-color: rgb(26 10 46 / var(--tw-bg-opacity, 1));
}
.bg-\[\#2C3E2E\]{
  --tw-bg-opacity: 1;
  background-color: rgb(44 62 46 / var(--tw-bg-opacity, 1));
}
.bg-\[\#5865F2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(88 101 242 / var(--tw-bg-opacity, 1));
}
.bg-\[\#7A8C6E\]{
  --tw-bg-opacity: 1;
  background-color: rgb(122 140 110 / var(--tw-bg-opacity, 1));
}
.bg-\[\#7A8C6E\]\/10{
  background-color: rgb(122 140 110 / 0.1);
}
.bg-\[\#A8B5A0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(168 181 160 / var(--tw-bg-opacity, 1));
}
.bg-\[\#A8B5A0\]\/10{
  background-color: rgb(168 181 160 / 0.1);
}
.bg-\[\#A8B5A0\]\/20{
  background-color: rgb(168 181 160 / 0.2);
}
.bg-\[\#B2D8D8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(178 216 216 / var(--tw-bg-opacity, 1));
}
.bg-\[\#B2D8D8\]\/30{
  background-color: rgb(178 216 216 / 0.3);
}
.bg-\[\#B2E2F2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(178 226 242 / var(--tw-bg-opacity, 1));
}
.bg-\[\#B8D4E8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(184 212 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#C4785A\]{
  --tw-bg-opacity: 1;
  background-color: rgb(196 120 90 / var(--tw-bg-opacity, 1));
}
.bg-\[\#D4C5E0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(212 197 224 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E8E4D8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(232 228 216 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E8F4F8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(232 244 248 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E8F5E8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(232 245 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E8F5F5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(232 245 245 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F0E8F4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 232 244 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F0F4EE\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 244 238 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F0F5E8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 245 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F0F7F0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 240 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F5F1E8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 241 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F5F3ED\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 237 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F5F3EF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 239 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F5F5DC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 220 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F5F5DC\]\/40{
  background-color: rgb(245 245 220 / 0.4);
}
.bg-\[\#F5F9F5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 249 245 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F8F6F0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(248 246 240 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FAF7F2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 247 242 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFB7C5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 183 197 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFE8E8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 232 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFF8E8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 248 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFF9E6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 249 230 / var(--tw-bg-opacity, 1));
}
.bg-accent{
  background-color: hsl(var(--accent));
}
.bg-accent-foreground{
  background-color: hsl(var(--accent-foreground));
}
.bg-accent-foreground\/0{
  background-color: hsl(var(--accent-foreground) / 0);
}
.bg-accent-foreground\/10{
  background-color: hsl(var(--accent-foreground) / 0.1);
}
.bg-accent-foreground\/100{
  background-color: hsl(var(--accent-foreground) / 1);
}
.bg-accent-foreground\/15{
  background-color: hsl(var(--accent-foreground) / 0.15);
}
.bg-accent-foreground\/20{
  background-color: hsl(var(--accent-foreground) / 0.2);
}
.bg-accent-foreground\/25{
  background-color: hsl(var(--accent-foreground) / 0.25);
}
.bg-accent-foreground\/30{
  background-color: hsl(var(--accent-foreground) / 0.3);
}
.bg-accent-foreground\/35{
  background-color: hsl(var(--accent-foreground) / 0.35);
}
.bg-accent-foreground\/40{
  background-color: hsl(var(--accent-foreground) / 0.4);
}
.bg-accent-foreground\/45{
  background-color: hsl(var(--accent-foreground) / 0.45);
}
.bg-accent-foreground\/5{
  background-color: hsl(var(--accent-foreground) / 0.05);
}
.bg-accent-foreground\/50{
  background-color: hsl(var(--accent-foreground) / 0.5);
}
.bg-accent-foreground\/55{
  background-color: hsl(var(--accent-foreground) / 0.55);
}
.bg-accent-foreground\/60{
  background-color: hsl(var(--accent-foreground) / 0.6);
}
.bg-accent-foreground\/65{
  background-color: hsl(var(--accent-foreground) / 0.65);
}
.bg-accent-foreground\/70{
  background-color: hsl(var(--accent-foreground) / 0.7);
}
.bg-accent-foreground\/75{
  background-color: hsl(var(--accent-foreground) / 0.75);
}
.bg-accent-foreground\/80{
  background-color: hsl(var(--accent-foreground) / 0.8);
}
.bg-accent-foreground\/85{
  background-color: hsl(var(--accent-foreground) / 0.85);
}
.bg-accent-foreground\/90{
  background-color: hsl(var(--accent-foreground) / 0.9);
}
.bg-accent-foreground\/95{
  background-color: hsl(var(--accent-foreground) / 0.95);
}
.bg-accent\/0{
  background-color: hsl(var(--accent) / 0);
}
.bg-accent\/10{
  background-color: hsl(var(--accent) / 0.1);
}
.bg-accent\/100{
  background-color: hsl(var(--accent) / 1);
}
.bg-accent\/15{
  background-color: hsl(var(--accent) / 0.15);
}
.bg-accent\/20{
  background-color: hsl(var(--accent) / 0.2);
}
.bg-accent\/25{
  background-color: hsl(var(--accent) / 0.25);
}
.bg-accent\/30{
  background-color: hsl(var(--accent) / 0.3);
}
.bg-accent\/35{
  background-color: hsl(var(--accent) / 0.35);
}
.bg-accent\/40{
  background-color: hsl(var(--accent) / 0.4);
}
.bg-accent\/45{
  background-color: hsl(var(--accent) / 0.45);
}
.bg-accent\/5{
  background-color: hsl(var(--accent) / 0.05);
}
.bg-accent\/50{
  background-color: hsl(var(--accent) / 0.5);
}
.bg-accent\/55{
  background-color: hsl(var(--accent) / 0.55);
}
.bg-accent\/60{
  background-color: hsl(var(--accent) / 0.6);
}
.bg-accent\/65{
  background-color: hsl(var(--accent) / 0.65);
}
.bg-accent\/70{
  background-color: hsl(var(--accent) / 0.7);
}
.bg-accent\/75{
  background-color: hsl(var(--accent) / 0.75);
}
.bg-accent\/80{
  background-color: hsl(var(--accent) / 0.8);
}
.bg-accent\/85{
  background-color: hsl(var(--accent) / 0.85);
}
.bg-accent\/90{
  background-color: hsl(var(--accent) / 0.9);
}
.bg-accent\/95{
  background-color: hsl(var(--accent) / 0.95);
}
.bg-amber-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-amber-400{
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}
.bg-amber-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
.bg-amber-500{
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.bg-amber-500\/10{
  background-color: rgb(245 158 11 / 0.1);
}
.bg-amber-600{
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.bg-background{
  background-color: hsl(var(--background));
}
.bg-background\/80{
  background-color: hsl(var(--background) / 0.8);
}
.bg-background\/95{
  background-color: hsl(var(--background) / 0.95);
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/20{
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/30{
  background-color: rgb(0 0 0 / 0.3);
}
.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/60{
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/70{
  background-color: rgb(0 0 0 / 0.7);
}
.bg-black\/80{
  background-color: rgb(0 0 0 / 0.8);
}
.bg-black\/95{
  background-color: rgb(0 0 0 / 0.95);
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-500\/10{
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-border{
  background-color: hsl(var(--border));
}
.bg-card{
  background-color: hsl(var(--card));
}
.bg-card\/50{
  background-color: hsl(var(--card) / 0.5);
}
.bg-card\/90{
  background-color: hsl(var(--card) / 0.9);
}
.bg-card\/95{
  background-color: hsl(var(--card) / 0.95);
}
.bg-cyan-400{
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.bg-cyan-400\/20{
  background-color: rgb(34 211 238 / 0.2);
}
.bg-cyan-500{
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.bg-cyan-500\/10{
  background-color: rgb(6 182 212 / 0.1);
}
.bg-destructive{
  background-color: hsl(var(--destructive));
}
.bg-destructive-foreground{
  background-color: hsl(var(--destructive-foreground));
}
.bg-destructive-foreground\/0{
  background-color: hsl(var(--destructive-foreground) / 0);
}
.bg-destructive-foreground\/10{
  background-color: hsl(var(--destructive-foreground) / 0.1);
}
.bg-destructive-foreground\/100{
  background-color: hsl(var(--destructive-foreground) / 1);
}
.bg-destructive-foreground\/15{
  background-color: hsl(var(--destructive-foreground) / 0.15);
}
.bg-destructive-foreground\/20{
  background-color: hsl(var(--destructive-foreground) / 0.2);
}
.bg-destructive-foreground\/25{
  background-color: hsl(var(--destructive-foreground) / 0.25);
}
.bg-destructive-foreground\/30{
  background-color: hsl(var(--destructive-foreground) / 0.3);
}
.bg-destructive-foreground\/35{
  background-color: hsl(var(--destructive-foreground) / 0.35);
}
.bg-destructive-foreground\/40{
  background-color: hsl(var(--destructive-foreground) / 0.4);
}
.bg-destructive-foreground\/45{
  background-color: hsl(var(--destructive-foreground) / 0.45);
}
.bg-destructive-foreground\/5{
  background-color: hsl(var(--destructive-foreground) / 0.05);
}
.bg-destructive-foreground\/50{
  background-color: hsl(var(--destructive-foreground) / 0.5);
}
.bg-destructive-foreground\/55{
  background-color: hsl(var(--destructive-foreground) / 0.55);
}
.bg-destructive-foreground\/60{
  background-color: hsl(var(--destructive-foreground) / 0.6);
}
.bg-destructive-foreground\/65{
  background-color: hsl(var(--destructive-foreground) / 0.65);
}
.bg-destructive-foreground\/70{
  background-color: hsl(var(--destructive-foreground) / 0.7);
}
.bg-destructive-foreground\/75{
  background-color: hsl(var(--destructive-foreground) / 0.75);
}
.bg-destructive-foreground\/80{
  background-color: hsl(var(--destructive-foreground) / 0.8);
}
.bg-destructive-foreground\/85{
  background-color: hsl(var(--destructive-foreground) / 0.85);
}
.bg-destructive-foreground\/90{
  background-color: hsl(var(--destructive-foreground) / 0.9);
}
.bg-destructive-foreground\/95{
  background-color: hsl(var(--destructive-foreground) / 0.95);
}
.bg-destructive\/0{
  background-color: hsl(var(--destructive) / 0);
}
.bg-destructive\/10{
  background-color: hsl(var(--destructive) / 0.1);
}
.bg-destructive\/100{
  background-color: hsl(var(--destructive) / 1);
}
.bg-destructive\/15{
  background-color: hsl(var(--destructive) / 0.15);
}
.bg-destructive\/20{
  background-color: hsl(var(--destructive) / 0.2);
}
.bg-destructive\/25{
  background-color: hsl(var(--destructive) / 0.25);
}
.bg-destructive\/30{
  background-color: hsl(var(--destructive) / 0.3);
}
.bg-destructive\/35{
  background-color: hsl(var(--destructive) / 0.35);
}
.bg-destructive\/40{
  background-color: hsl(var(--destructive) / 0.4);
}
.bg-destructive\/45{
  background-color: hsl(var(--destructive) / 0.45);
}
.bg-destructive\/5{
  background-color: hsl(var(--destructive) / 0.05);
}
.bg-destructive\/50{
  background-color: hsl(var(--destructive) / 0.5);
}
.bg-destructive\/55{
  background-color: hsl(var(--destructive) / 0.55);
}
.bg-destructive\/60{
  background-color: hsl(var(--destructive) / 0.6);
}
.bg-destructive\/65{
  background-color: hsl(var(--destructive) / 0.65);
}
.bg-destructive\/70{
  background-color: hsl(var(--destructive) / 0.7);
}
.bg-destructive\/75{
  background-color: hsl(var(--destructive) / 0.75);
}
.bg-destructive\/80{
  background-color: hsl(var(--destructive) / 0.8);
}
.bg-destructive\/85{
  background-color: hsl(var(--destructive) / 0.85);
}
.bg-destructive\/90{
  background-color: hsl(var(--destructive) / 0.9);
}
.bg-destructive\/95{
  background-color: hsl(var(--destructive) / 0.95);
}
.bg-emerald-100{
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}
.bg-emerald-400{
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}
.bg-emerald-50{
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}
.bg-emerald-500{
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}
.bg-emerald-500\/10{
  background-color: rgb(16 185 129 / 0.1);
}
.bg-emerald-500\/20{
  background-color: rgb(16 185 129 / 0.2);
}
.bg-emerald-600{
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.bg-emerald-600\/80{
  background-color: rgb(5 150 105 / 0.8);
}
.bg-emerald-700{
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}
.bg-foreground{
  background-color: hsl(var(--foreground));
}
.bg-foreground\/40{
  background-color: hsl(var(--foreground) / 0.4);
}
.bg-foreground\/5{
  background-color: hsl(var(--foreground) / 0.05);
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-50\/50{
  background-color: rgb(249 250 251 / 0.5);
}
.bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-700\/50{
  background-color: rgb(55 65 81 / 0.5);
}
.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/10{
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-500\/30{
  background-color: rgb(34 197 94 / 0.3);
}
.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-green-600\/10{
  background-color: rgb(22 163 74 / 0.1);
}
.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.bg-muted{
  background-color: hsl(var(--muted));
}
.bg-muted-foreground{
  background-color: hsl(var(--muted-foreground));
}
.bg-muted-foreground\/0{
  background-color: hsl(var(--muted-foreground) / 0);
}
.bg-muted-foreground\/10{
  background-color: hsl(var(--muted-foreground) / 0.1);
}
.bg-muted-foreground\/100{
  background-color: hsl(var(--muted-foreground) / 1);
}
.bg-muted-foreground\/15{
  background-color: hsl(var(--muted-foreground) / 0.15);
}
.bg-muted-foreground\/20{
  background-color: hsl(var(--muted-foreground) / 0.2);
}
.bg-muted-foreground\/25{
  background-color: hsl(var(--muted-foreground) / 0.25);
}
.bg-muted-foreground\/30{
  background-color: hsl(var(--muted-foreground) / 0.3);
}
.bg-muted-foreground\/35{
  background-color: hsl(var(--muted-foreground) / 0.35);
}
.bg-muted-foreground\/40{
  background-color: hsl(var(--muted-foreground) / 0.4);
}
.bg-muted-foreground\/45{
  background-color: hsl(var(--muted-foreground) / 0.45);
}
.bg-muted-foreground\/5{
  background-color: hsl(var(--muted-foreground) / 0.05);
}
.bg-muted-foreground\/50{
  background-color: hsl(var(--muted-foreground) / 0.5);
}
.bg-muted-foreground\/55{
  background-color: hsl(var(--muted-foreground) / 0.55);
}
.bg-muted-foreground\/60{
  background-color: hsl(var(--muted-foreground) / 0.6);
}
.bg-muted-foreground\/65{
  background-color: hsl(var(--muted-foreground) / 0.65);
}
.bg-muted-foreground\/70{
  background-color: hsl(var(--muted-foreground) / 0.7);
}
.bg-muted-foreground\/75{
  background-color: hsl(var(--muted-foreground) / 0.75);
}
.bg-muted-foreground\/80{
  background-color: hsl(var(--muted-foreground) / 0.8);
}
.bg-muted-foreground\/85{
  background-color: hsl(var(--muted-foreground) / 0.85);
}
.bg-muted-foreground\/90{
  background-color: hsl(var(--muted-foreground) / 0.9);
}
.bg-muted-foreground\/95{
  background-color: hsl(var(--muted-foreground) / 0.95);
}
.bg-muted\/0{
  background-color: hsl(var(--muted) / 0);
}
.bg-muted\/10{
  background-color: hsl(var(--muted) / 0.1);
}
.bg-muted\/100{
  background-color: hsl(var(--muted) / 1);
}
.bg-muted\/15{
  background-color: hsl(var(--muted) / 0.15);
}
.bg-muted\/20{
  background-color: hsl(var(--muted) / 0.2);
}
.bg-muted\/25{
  background-color: hsl(var(--muted) / 0.25);
}
.bg-muted\/30{
  background-color: hsl(var(--muted) / 0.3);
}
.bg-muted\/35{
  background-color: hsl(var(--muted) / 0.35);
}
.bg-muted\/40{
  background-color: hsl(var(--muted) / 0.4);
}
.bg-muted\/45{
  background-color: hsl(var(--muted) / 0.45);
}
.bg-muted\/5{
  background-color: hsl(var(--muted) / 0.05);
}
.bg-muted\/50{
  background-color: hsl(var(--muted) / 0.5);
}
.bg-muted\/55{
  background-color: hsl(var(--muted) / 0.55);
}
.bg-muted\/60{
  background-color: hsl(var(--muted) / 0.6);
}
.bg-muted\/65{
  background-color: hsl(var(--muted) / 0.65);
}
.bg-muted\/70{
  background-color: hsl(var(--muted) / 0.7);
}
.bg-muted\/75{
  background-color: hsl(var(--muted) / 0.75);
}
.bg-muted\/80{
  background-color: hsl(var(--muted) / 0.8);
}
.bg-muted\/85{
  background-color: hsl(var(--muted) / 0.85);
}
.bg-muted\/90{
  background-color: hsl(var(--muted) / 0.9);
}
.bg-muted\/95{
  background-color: hsl(var(--muted) / 0.95);
}
.bg-orange-100{
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-orange-400{
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.bg-orange-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-500{
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-orange-600{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-pink-100{
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.bg-popover{
  background-color: hsl(var(--popover));
}
.bg-primary{
  background-color: hsl(var(--primary));
}
.bg-primary-foreground{
  background-color: hsl(var(--primary-foreground));
}
.bg-primary-foreground\/0{
  background-color: hsl(var(--primary-foreground) / 0);
}
.bg-primary-foreground\/10{
  background-color: hsl(var(--primary-foreground) / 0.1);
}
.bg-primary-foreground\/100{
  background-color: hsl(var(--primary-foreground) / 1);
}
.bg-primary-foreground\/15{
  background-color: hsl(var(--primary-foreground) / 0.15);
}
.bg-primary-foreground\/20{
  background-color: hsl(var(--primary-foreground) / 0.2);
}
.bg-primary-foreground\/25{
  background-color: hsl(var(--primary-foreground) / 0.25);
}
.bg-primary-foreground\/30{
  background-color: hsl(var(--primary-foreground) / 0.3);
}
.bg-primary-foreground\/35{
  background-color: hsl(var(--primary-foreground) / 0.35);
}
.bg-primary-foreground\/40{
  background-color: hsl(var(--primary-foreground) / 0.4);
}
.bg-primary-foreground\/45{
  background-color: hsl(var(--primary-foreground) / 0.45);
}
.bg-primary-foreground\/5{
  background-color: hsl(var(--primary-foreground) / 0.05);
}
.bg-primary-foreground\/50{
  background-color: hsl(var(--primary-foreground) / 0.5);
}
.bg-primary-foreground\/55{
  background-color: hsl(var(--primary-foreground) / 0.55);
}
.bg-primary-foreground\/60{
  background-color: hsl(var(--primary-foreground) / 0.6);
}
.bg-primary-foreground\/65{
  background-color: hsl(var(--primary-foreground) / 0.65);
}
.bg-primary-foreground\/70{
  background-color: hsl(var(--primary-foreground) / 0.7);
}
.bg-primary-foreground\/75{
  background-color: hsl(var(--primary-foreground) / 0.75);
}
.bg-primary-foreground\/80{
  background-color: hsl(var(--primary-foreground) / 0.8);
}
.bg-primary-foreground\/85{
  background-color: hsl(var(--primary-foreground) / 0.85);
}
.bg-primary-foreground\/90{
  background-color: hsl(var(--primary-foreground) / 0.9);
}
.bg-primary-foreground\/95{
  background-color: hsl(var(--primary-foreground) / 0.95);
}
.bg-primary\/0{
  background-color: hsl(var(--primary) / 0);
}
.bg-primary\/10{
  background-color: hsl(var(--primary) / 0.1);
}
.bg-primary\/100{
  background-color: hsl(var(--primary) / 1);
}
.bg-primary\/15{
  background-color: hsl(var(--primary) / 0.15);
}
.bg-primary\/20{
  background-color: hsl(var(--primary) / 0.2);
}
.bg-primary\/25{
  background-color: hsl(var(--primary) / 0.25);
}
.bg-primary\/30{
  background-color: hsl(var(--primary) / 0.3);
}
.bg-primary\/35{
  background-color: hsl(var(--primary) / 0.35);
}
.bg-primary\/40{
  background-color: hsl(var(--primary) / 0.4);
}
.bg-primary\/45{
  background-color: hsl(var(--primary) / 0.45);
}
.bg-primary\/5{
  background-color: hsl(var(--primary) / 0.05);
}
.bg-primary\/50{
  background-color: hsl(var(--primary) / 0.5);
}
.bg-primary\/55{
  background-color: hsl(var(--primary) / 0.55);
}
.bg-primary\/60{
  background-color: hsl(var(--primary) / 0.6);
}
.bg-primary\/65{
  background-color: hsl(var(--primary) / 0.65);
}
.bg-primary\/70{
  background-color: hsl(var(--primary) / 0.7);
}
.bg-primary\/75{
  background-color: hsl(var(--primary) / 0.75);
}
.bg-primary\/80{
  background-color: hsl(var(--primary) / 0.8);
}
.bg-primary\/85{
  background-color: hsl(var(--primary) / 0.85);
}
.bg-primary\/90{
  background-color: hsl(var(--primary) / 0.9);
}
.bg-primary\/95{
  background-color: hsl(var(--primary) / 0.95);
}
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-500{
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.bg-purple-600{
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-red-600\/80{
  background-color: rgb(220 38 38 / 0.8);
}
.bg-red-700{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.bg-rose-100{
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}
.bg-rose-400{
  --tw-bg-opacity: 1;
  background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
}
.bg-rose-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}
.bg-rose-500{
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}
.bg-secondary{
  background-color: hsl(var(--secondary));
}
.bg-secondary-foreground{
  background-color: hsl(var(--secondary-foreground));
}
.bg-secondary-foreground\/0{
  background-color: hsl(var(--secondary-foreground) / 0);
}
.bg-secondary-foreground\/10{
  background-color: hsl(var(--secondary-foreground) / 0.1);
}
.bg-secondary-foreground\/100{
  background-color: hsl(var(--secondary-foreground) / 1);
}
.bg-secondary-foreground\/15{
  background-color: hsl(var(--secondary-foreground) / 0.15);
}
.bg-secondary-foreground\/20{
  background-color: hsl(var(--secondary-foreground) / 0.2);
}
.bg-secondary-foreground\/25{
  background-color: hsl(var(--secondary-foreground) / 0.25);
}
.bg-secondary-foreground\/30{
  background-color: hsl(var(--secondary-foreground) / 0.3);
}
.bg-secondary-foreground\/35{
  background-color: hsl(var(--secondary-foreground) / 0.35);
}
.bg-secondary-foreground\/40{
  background-color: hsl(var(--secondary-foreground) / 0.4);
}
.bg-secondary-foreground\/45{
  background-color: hsl(var(--secondary-foreground) / 0.45);
}
.bg-secondary-foreground\/5{
  background-color: hsl(var(--secondary-foreground) / 0.05);
}
.bg-secondary-foreground\/50{
  background-color: hsl(var(--secondary-foreground) / 0.5);
}
.bg-secondary-foreground\/55{
  background-color: hsl(var(--secondary-foreground) / 0.55);
}
.bg-secondary-foreground\/60{
  background-color: hsl(var(--secondary-foreground) / 0.6);
}
.bg-secondary-foreground\/65{
  background-color: hsl(var(--secondary-foreground) / 0.65);
}
.bg-secondary-foreground\/70{
  background-color: hsl(var(--secondary-foreground) / 0.7);
}
.bg-secondary-foreground\/75{
  background-color: hsl(var(--secondary-foreground) / 0.75);
}
.bg-secondary-foreground\/80{
  background-color: hsl(var(--secondary-foreground) / 0.8);
}
.bg-secondary-foreground\/85{
  background-color: hsl(var(--secondary-foreground) / 0.85);
}
.bg-secondary-foreground\/90{
  background-color: hsl(var(--secondary-foreground) / 0.9);
}
.bg-secondary-foreground\/95{
  background-color: hsl(var(--secondary-foreground) / 0.95);
}
.bg-secondary\/0{
  background-color: hsl(var(--secondary) / 0);
}
.bg-secondary\/10{
  background-color: hsl(var(--secondary) / 0.1);
}
.bg-secondary\/100{
  background-color: hsl(var(--secondary) / 1);
}
.bg-secondary\/15{
  background-color: hsl(var(--secondary) / 0.15);
}
.bg-secondary\/20{
  background-color: hsl(var(--secondary) / 0.2);
}
.bg-secondary\/25{
  background-color: hsl(var(--secondary) / 0.25);
}
.bg-secondary\/30{
  background-color: hsl(var(--secondary) / 0.3);
}
.bg-secondary\/35{
  background-color: hsl(var(--secondary) / 0.35);
}
.bg-secondary\/40{
  background-color: hsl(var(--secondary) / 0.4);
}
.bg-secondary\/45{
  background-color: hsl(var(--secondary) / 0.45);
}
.bg-secondary\/5{
  background-color: hsl(var(--secondary) / 0.05);
}
.bg-secondary\/50{
  background-color: hsl(var(--secondary) / 0.5);
}
.bg-secondary\/55{
  background-color: hsl(var(--secondary) / 0.55);
}
.bg-secondary\/60{
  background-color: hsl(var(--secondary) / 0.6);
}
.bg-secondary\/65{
  background-color: hsl(var(--secondary) / 0.65);
}
.bg-secondary\/70{
  background-color: hsl(var(--secondary) / 0.7);
}
.bg-secondary\/75{
  background-color: hsl(var(--secondary) / 0.75);
}
.bg-secondary\/80{
  background-color: hsl(var(--secondary) / 0.8);
}
.bg-secondary\/85{
  background-color: hsl(var(--secondary) / 0.85);
}
.bg-secondary\/90{
  background-color: hsl(var(--secondary) / 0.9);
}
.bg-secondary\/95{
  background-color: hsl(var(--secondary) / 0.95);
}
.bg-teal-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-violet-100{
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}
.bg-violet-50{
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
}
.bg-violet-500{
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/5{
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/60{
  background-color: rgb(255 255 255 / 0.6);
}
.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/90{
  background-color: rgb(255 255 255 / 0.9);
}
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500\/90{
  background-color: rgb(234 179 8 / 0.9);
}
.bg-yellow-600{
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.bg-\[radial-gradient\(circle_at_30\%_50\%\2c rgba\(var\(--primary-rgb\)\2c 0\.1\)\2c transparent_50\%\)\]{
  background-image: radial-gradient(circle at 30% 50%,rgba(var(--primary-rgb),0.1),transparent 50%);
}
.bg-\[radial-gradient\(circle_at_70\%_30\%\2c rgba\(var\(--primary-rgb\)\2c 0\.08\)\2c transparent_50\%\)\]{
  background-image: radial-gradient(circle at 70% 30%,rgba(var(--primary-rgb),0.08),transparent 50%);
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#002147\]\/60{
  --tw-gradient-from: rgb(0 33 71 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 33 71 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#0044ff\]\/30{
  --tw-gradient-from: rgb(0 68 255 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 68 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#0066ff\]{
  --tw-gradient-from: #0066ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 102 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#00ffff\]{
  --tw-gradient-from: #00ffff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#7A8C6E\]{
  --tw-gradient-from: #7A8C6E var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(122 140 110 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#7A8C6E\]\/10{
  --tw-gradient-from: rgb(122 140 110 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(122 140 110 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#A8B5A0\]{
  --tw-gradient-from: #A8B5A0 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 181 160 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#A8B5A0\]\/10{
  --tw-gradient-from: rgb(168 181 160 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 181 160 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#B8D4E8\]{
  --tw-gradient-from: #B8D4E8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(184 212 232 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#B8D4E8\]\/10{
  --tw-gradient-from: rgb(184 212 232 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(184 212 232 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#D4C5E0\]\/10{
  --tw-gradient-from: rgb(212 197 224 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(212 197 224 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#F0F7F0\]{
  --tw-gradient-from: #F0F7F0 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(240 247 240 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#F5F1E8\]{
  --tw-gradient-from: #F5F1E8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 241 232 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#F5F3ED\]{
  --tw-gradient-from: #F5F3ED var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 243 237 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#F5F3EF\]{
  --tw-gradient-from: #F5F3EF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 243 239 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#F5F9F5\]{
  --tw-gradient-from: #F5F9F5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 249 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#FFF9F5\]{
  --tw-gradient-from: #FFF9F5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 249 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-500{
  --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-background{
  --tw-gradient-from: hsl(var(--background)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-background\/20{
  --tw-gradient-from: hsl(var(--background) / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/60{
  --tw-gradient-from: rgb(0 0 0 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400{
  --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.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);
}
.from-blue-500{
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-border{
  --tw-gradient-from: hsl(var(--border)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--border) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-50{
  --tw-gradient-from: #ecfeff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 254 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500{
  --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-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);
}
.from-gray-900{
  --tw-gradient-from: #111827 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900\/40{
  --tw-gradient-from: rgb(17 24 39 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900\/50{
  --tw-gradient-from: rgb(17 24 39 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900\/60{
  --tw-gradient-from: rgb(17 24 39 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500{
  --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-muted{
  --tw-gradient-from: hsl(var(--muted)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--muted) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-muted\/50{
  --tw-gradient-from: hsl(var(--muted) / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--muted) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-700{
  --tw-gradient-from: #c2410c var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(194 65 12 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-900\/90{
  --tw-gradient-from: rgb(124 45 18 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(124 45 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500{
  --tw-gradient-from: #ec4899 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary{
  --tw-gradient-from: hsl(var(--primary)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary\/10{
  --tw-gradient-from: hsl(var(--primary) / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary\/5{
  --tw-gradient-from: hsl(var(--primary) / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500{
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600{
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-900\/20{
  --tw-gradient-from: rgb(88 28 135 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(88 28 135 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-900\/50{
  --tw-gradient-from: rgb(88 28 135 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(88 28 135 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-50{
  --tw-gradient-from: #fef2f2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(254 242 242 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-700{
  --tw-gradient-from: #b91c1c var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(185 28 28 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-900\/90{
  --tw-gradient-from: rgb(127 29 29 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(127 29 29 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-violet-500{
  --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-400{
  --tw-gradient-from: #facc15 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 204 21 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-\[\#002147\]\/10{
  --tw-gradient-to: rgb(0 33 71 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 33 71 / 0.1) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-\[\#A8B5A0\]{
  --tw-gradient-to: rgb(168 181 160 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #A8B5A0 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-\[\#C4785A\]{
  --tw-gradient-to: rgb(196 120 90 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #C4785A var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-\[\#E8F4F8\]{
  --tw-gradient-to: rgb(232 244 248 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #E8F4F8 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-\[\#FFFFFF\]{
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-accent{
  --tw-gradient-to: hsl(var(--accent) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--accent)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-accent\/10{
  --tw-gradient-to: hsl(var(--accent) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--accent) / 0.1) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-accent\/5{
  --tw-gradient-to: hsl(var(--accent) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--accent) / 0.05) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-background{
  --tw-gradient-to: hsl(var(--background) / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-gray-900\/20{
  --tw-gradient-to: rgb(17 24 39 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(17 24 39 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-orange-600{
  --tw-gradient-to: rgb(234 88 12 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #ea580c var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-50{
  --tw-gradient-to: rgb(250 245 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #faf5ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-500{
  --tw-gradient-to: rgb(168 85 247 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #a855f7 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-900\/20{
  --tw-gradient-to: rgb(88 28 135 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(88 28 135 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-red-600{
  --tw-gradient-to: rgb(220 38 38 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #dc2626 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent{
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white{
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[\#003d99\]{
  --tw-gradient-to: #003d99 var(--tw-gradient-to-position);
}
.to-\[\#0088ff\]{
  --tw-gradient-to: #0088ff var(--tw-gradient-to-position);
}
.to-\[\#00ffff\]\/10{
  --tw-gradient-to: rgb(0 255 255 / 0.1) var(--tw-gradient-to-position);
}
.to-\[\#5A6B54\]{
  --tw-gradient-to: #5A6B54 var(--tw-gradient-to-position);
}
.to-\[\#5A6B54\]\/10{
  --tw-gradient-to: rgb(90 107 84 / 0.1) var(--tw-gradient-to-position);
}
.to-\[\#7A8C6E\]{
  --tw-gradient-to: #7A8C6E var(--tw-gradient-to-position);
}
.to-\[\#8FA888\]{
  --tw-gradient-to: #8FA888 var(--tw-gradient-to-position);
}
.to-\[\#9AC2D8\]{
  --tw-gradient-to: #9AC2D8 var(--tw-gradient-to-position);
}
.to-\[\#A8B5A0\]{
  --tw-gradient-to: #A8B5A0 var(--tw-gradient-to-position);
}
.to-\[\#A8B5A0\]\/10{
  --tw-gradient-to: rgb(168 181 160 / 0.1) var(--tw-gradient-to-position);
}
.to-\[\#B8D4E8\]\/10{
  --tw-gradient-to: rgb(184 212 232 / 0.1) var(--tw-gradient-to-position);
}
.to-\[\#E8F5E8\]{
  --tw-gradient-to: #E8F5E8 var(--tw-gradient-to-position);
}
.to-\[\#F0E8F4\]{
  --tw-gradient-to: #F0E8F4 var(--tw-gradient-to-position);
}
.to-\[\#F0F5F0\]{
  --tw-gradient-to: #F0F5F0 var(--tw-gradient-to-position);
}
.to-\[\#FFF9F5\]{
  --tw-gradient-to: #FFF9F5 var(--tw-gradient-to-position);
}
.to-accent{
  --tw-gradient-to: hsl(var(--accent)) var(--tw-gradient-to-position);
}
.to-accent\/10{
  --tw-gradient-to: hsl(var(--accent) / 0.1) var(--tw-gradient-to-position);
}
.to-accent\/5{
  --tw-gradient-to: hsl(var(--accent) / 0.05) var(--tw-gradient-to-position);
}
.to-amber-600{
  --tw-gradient-to: #d97706 var(--tw-gradient-to-position);
}
.to-background{
  --tw-gradient-to: hsl(var(--background)) var(--tw-gradient-to-position);
}
.to-cyan-50{
  --tw-gradient-to: #ecfeff var(--tw-gradient-to-position);
}
.to-cyan-500{
  --tw-gradient-to: #06b6d4 var(--tw-gradient-to-position);
}
.to-cyan-600{
  --tw-gradient-to: #0891b2 var(--tw-gradient-to-position);
}
.to-cyan-900\/20{
  --tw-gradient-to: rgb(22 78 99 / 0.2) var(--tw-gradient-to-position);
}
.to-cyan-900\/50{
  --tw-gradient-to: rgb(22 78 99 / 0.5) var(--tw-gradient-to-position);
}
.to-emerald-500{
  --tw-gradient-to: #10b981 var(--tw-gradient-to-position);
}
.to-gray-900\/95{
  --tw-gradient-to: rgb(17 24 39 / 0.95) var(--tw-gradient-to-position);
}
.to-green-400{
  --tw-gradient-to: #4ade80 var(--tw-gradient-to-position);
}
.to-indigo-500{
  --tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
}
.to-muted{
  --tw-gradient-to: hsl(var(--muted)) var(--tw-gradient-to-position);
}
.to-muted\/20{
  --tw-gradient-to: hsl(var(--muted) / 0.2) var(--tw-gradient-to-position);
}
.to-muted\/50{
  --tw-gradient-to: hsl(var(--muted) / 0.5) var(--tw-gradient-to-position);
}
.to-orange-50{
  --tw-gradient-to: #fff7ed var(--tw-gradient-to-position);
}
.to-orange-500{
  --tw-gradient-to: #f97316 var(--tw-gradient-to-position);
}
.to-pink-50{
  --tw-gradient-to: #fdf2f8 var(--tw-gradient-to-position);
}
.to-pink-500{
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-primary\/5{
  --tw-gradient-to: hsl(var(--primary) / 0.05) var(--tw-gradient-to-position);
}
.to-primary\/80{
  --tw-gradient-to: hsl(var(--primary) / 0.8) var(--tw-gradient-to-position);
}
.to-primary\/90{
  --tw-gradient-to: hsl(var(--primary) / 0.9) var(--tw-gradient-to-position);
}
.to-purple-50{
  --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
}
.to-purple-500{
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.to-red-400{
  --tw-gradient-to: #f87171 var(--tw-gradient-to-position);
}
.to-rose-500{
  --tw-gradient-to: #f43f5e var(--tw-gradient-to-position);
}
.to-rose-600{
  --tw-gradient-to: #e11d48 var(--tw-gradient-to-position);
}
.to-secondary{
  --tw-gradient-to: hsl(var(--secondary)) var(--tw-gradient-to-position);
}
.to-secondary\/10{
  --tw-gradient-to: hsl(var(--secondary) / 0.1) var(--tw-gradient-to-position);
}
.to-secondary\/5{
  --tw-gradient-to: hsl(var(--secondary) / 0.05) var(--tw-gradient-to-position);
}
.to-teal-50{
  --tw-gradient-to: #f0fdfa var(--tw-gradient-to-position);
}
.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-white{
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.bg-clip-text{
  -webkit-background-clip: text;
          background-clip: text;
}
.fill-accent{
  fill: hsl(var(--accent));
}
.fill-amber-400{
  fill: #fbbf24;
}
.fill-current{
  fill: currentColor;
}
.fill-primary-foreground{
  fill: hsl(var(--primary-foreground));
}
.fill-white{
  fill: #fff;
}
.fill-yellow-400{
  fill: #facc15;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-top{
  -o-object-position: top;
     object-position: top;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-1\.5{
  padding: 0.375rem;
}
.p-10{
  padding: 2.5rem;
}
.p-12{
  padding: 3rem;
}
.p-16{
  padding: 4rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-3\.5{
  padding: 0.875rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-7{
  padding: 1.75rem;
}
.p-8{
  padding: 2rem;
}
.p-\[1px\]{
  padding: 1px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-20{
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[--cell-size\]{
  padding-left: var(--cell-size);
  padding-right: var(--cell-size);
}
.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32{
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-12{
  padding-bottom: 3rem;
}
.pb-16{
  padding-bottom: 4rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-24{
  padding-bottom: 6rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-2\.5{
  padding-left: 0.625rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pl-8{
  padding-left: 2rem;
}
.pl-9{
  padding-left: 2.25rem;
}
.pr-1{
  padding-right: 0.25rem;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-2\.5{
  padding-right: 0.625rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-10{
  padding-top: 2.5rem;
}
.pt-12{
  padding-top: 3rem;
}
.pt-16{
  padding-top: 4rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-20{
  padding-top: 5rem;
}
.pt-24{
  padding-top: 6rem;
}
.pt-28{
  padding-top: 7rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-32{
  padding-top: 8rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.font-mono{
  font-family: var(--font-mono);
}
.font-sans{
  font-family: var(--font-sans);
}
.font-serif{
  font-family: var(--font-serif);
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}
.text-\[0\.8rem\]{
  font-size: 0.8rem;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[11px\]{
  font-size: 11px;
}
.text-\[9px\]{
  font-size: 9px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black{
  font-weight: 900;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.leading-\[1\.1\]{
  line-height: 1.1;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-snug{
  line-height: 1.375;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-\[\#002147\]{
  --tw-text-opacity: 1;
  color: rgb(0 33 71 / var(--tw-text-opacity, 1));
}
.text-\[\#002147\]\/50{
  color: rgb(0 33 71 / 0.5);
}
.text-\[\#002147\]\/60{
  color: rgb(0 33 71 / 0.6);
}
.text-\[\#00ffff\]{
  --tw-text-opacity: 1;
  color: rgb(0 255 255 / var(--tw-text-opacity, 1));
}
.text-\[\#06B6D4\]{
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.text-\[\#2C3E2E\]{
  --tw-text-opacity: 1;
  color: rgb(44 62 46 / var(--tw-text-opacity, 1));
}
.text-\[\#2C3E2F\]{
  --tw-text-opacity: 1;
  color: rgb(44 62 47 / var(--tw-text-opacity, 1));
}
.text-\[\#3A5A3E\]{
  --tw-text-opacity: 1;
  color: rgb(58 90 62 / var(--tw-text-opacity, 1));
}
.text-\[\#5A6B54\]{
  --tw-text-opacity: 1;
  color: rgb(90 107 84 / var(--tw-text-opacity, 1));
}
.text-\[\#5A6B5C\]{
  --tw-text-opacity: 1;
  color: rgb(90 107 92 / var(--tw-text-opacity, 1));
}
.text-\[\#6B5A3E\]{
  --tw-text-opacity: 1;
  color: rgb(107 90 62 / var(--tw-text-opacity, 1));
}
.text-\[\#7A8B7C\]{
  --tw-text-opacity: 1;
  color: rgb(122 139 124 / var(--tw-text-opacity, 1));
}
.text-\[\#7A8C6E\]{
  --tw-text-opacity: 1;
  color: rgb(122 140 110 / var(--tw-text-opacity, 1));
}
.text-\[\#A8B5A0\]{
  --tw-text-opacity: 1;
  color: rgb(168 181 160 / var(--tw-text-opacity, 1));
}
.text-\[\#B2D8D8\]{
  --tw-text-opacity: 1;
  color: rgb(178 216 216 / var(--tw-text-opacity, 1));
}
.text-\[\#B8D4E8\]{
  --tw-text-opacity: 1;
  color: rgb(184 212 232 / var(--tw-text-opacity, 1));
}
.text-\[\#C4785A\]{
  --tw-text-opacity: 1;
  color: rgb(196 120 90 / var(--tw-text-opacity, 1));
}
.text-\[\#C8D8C4\]{
  --tw-text-opacity: 1;
  color: rgb(200 216 196 / var(--tw-text-opacity, 1));
}
.text-\[\#D4C5E0\]{
  --tw-text-opacity: 1;
  color: rgb(212 197 224 / var(--tw-text-opacity, 1));
}
.text-\[\#FF1493\]{
  --tw-text-opacity: 1;
  color: rgb(255 20 147 / var(--tw-text-opacity, 1));
}
.text-\[\#FFB7C5\]{
  --tw-text-opacity: 1;
  color: rgb(255 183 197 / var(--tw-text-opacity, 1));
}
.text-accent{
  color: hsl(var(--accent));
}
.text-accent-foreground{
  color: hsl(var(--accent-foreground));
}
.text-accent-foreground\/0{
  color: hsl(var(--accent-foreground) / 0);
}
.text-accent-foreground\/10{
  color: hsl(var(--accent-foreground) / 0.1);
}
.text-accent-foreground\/100{
  color: hsl(var(--accent-foreground) / 1);
}
.text-accent-foreground\/15{
  color: hsl(var(--accent-foreground) / 0.15);
}
.text-accent-foreground\/20{
  color: hsl(var(--accent-foreground) / 0.2);
}
.text-accent-foreground\/25{
  color: hsl(var(--accent-foreground) / 0.25);
}
.text-accent-foreground\/30{
  color: hsl(var(--accent-foreground) / 0.3);
}
.text-accent-foreground\/35{
  color: hsl(var(--accent-foreground) / 0.35);
}
.text-accent-foreground\/40{
  color: hsl(var(--accent-foreground) / 0.4);
}
.text-accent-foreground\/45{
  color: hsl(var(--accent-foreground) / 0.45);
}
.text-accent-foreground\/5{
  color: hsl(var(--accent-foreground) / 0.05);
}
.text-accent-foreground\/50{
  color: hsl(var(--accent-foreground) / 0.5);
}
.text-accent-foreground\/55{
  color: hsl(var(--accent-foreground) / 0.55);
}
.text-accent-foreground\/60{
  color: hsl(var(--accent-foreground) / 0.6);
}
.text-accent-foreground\/65{
  color: hsl(var(--accent-foreground) / 0.65);
}
.text-accent-foreground\/70{
  color: hsl(var(--accent-foreground) / 0.7);
}
.text-accent-foreground\/75{
  color: hsl(var(--accent-foreground) / 0.75);
}
.text-accent-foreground\/80{
  color: hsl(var(--accent-foreground) / 0.8);
}
.text-accent-foreground\/85{
  color: hsl(var(--accent-foreground) / 0.85);
}
.text-accent-foreground\/90{
  color: hsl(var(--accent-foreground) / 0.9);
}
.text-accent-foreground\/95{
  color: hsl(var(--accent-foreground) / 0.95);
}
.text-accent\/0{
  color: hsl(var(--accent) / 0);
}
.text-accent\/10{
  color: hsl(var(--accent) / 0.1);
}
.text-accent\/100{
  color: hsl(var(--accent) / 1);
}
.text-accent\/15{
  color: hsl(var(--accent) / 0.15);
}
.text-accent\/20{
  color: hsl(var(--accent) / 0.2);
}
.text-accent\/25{
  color: hsl(var(--accent) / 0.25);
}
.text-accent\/30{
  color: hsl(var(--accent) / 0.3);
}
.text-accent\/35{
  color: hsl(var(--accent) / 0.35);
}
.text-accent\/40{
  color: hsl(var(--accent) / 0.4);
}
.text-accent\/45{
  color: hsl(var(--accent) / 0.45);
}
.text-accent\/5{
  color: hsl(var(--accent) / 0.05);
}
.text-accent\/50{
  color: hsl(var(--accent) / 0.5);
}
.text-accent\/55{
  color: hsl(var(--accent) / 0.55);
}
.text-accent\/60{
  color: hsl(var(--accent) / 0.6);
}
.text-accent\/65{
  color: hsl(var(--accent) / 0.65);
}
.text-accent\/70{
  color: hsl(var(--accent) / 0.7);
}
.text-accent\/75{
  color: hsl(var(--accent) / 0.75);
}
.text-accent\/80{
  color: hsl(var(--accent) / 0.8);
}
.text-accent\/85{
  color: hsl(var(--accent) / 0.85);
}
.text-accent\/90{
  color: hsl(var(--accent) / 0.9);
}
.text-accent\/95{
  color: hsl(var(--accent) / 0.95);
}
.text-amber-400{
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.text-amber-500{
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-600{
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-amber-700{
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-500\/40{
  color: rgb(59 130 246 / 0.4);
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-blue-900{
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-border{
  color: hsl(var(--border));
}
.text-card-foreground{
  color: hsl(var(--card-foreground));
}
.text-current{
  color: currentColor;
}
.text-cyan-400{
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.text-cyan-500{
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.text-cyan-600{
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.text-destructive{
  color: hsl(var(--destructive));
}
.text-destructive-foreground{
  color: hsl(var(--destructive-foreground));
}
.text-destructive-foreground\/0{
  color: hsl(var(--destructive-foreground) / 0);
}
.text-destructive-foreground\/10{
  color: hsl(var(--destructive-foreground) / 0.1);
}
.text-destructive-foreground\/100{
  color: hsl(var(--destructive-foreground) / 1);
}
.text-destructive-foreground\/15{
  color: hsl(var(--destructive-foreground) / 0.15);
}
.text-destructive-foreground\/20{
  color: hsl(var(--destructive-foreground) / 0.2);
}
.text-destructive-foreground\/25{
  color: hsl(var(--destructive-foreground) / 0.25);
}
.text-destructive-foreground\/30{
  color: hsl(var(--destructive-foreground) / 0.3);
}
.text-destructive-foreground\/35{
  color: hsl(var(--destructive-foreground) / 0.35);
}
.text-destructive-foreground\/40{
  color: hsl(var(--destructive-foreground) / 0.4);
}
.text-destructive-foreground\/45{
  color: hsl(var(--destructive-foreground) / 0.45);
}
.text-destructive-foreground\/5{
  color: hsl(var(--destructive-foreground) / 0.05);
}
.text-destructive-foreground\/50{
  color: hsl(var(--destructive-foreground) / 0.5);
}
.text-destructive-foreground\/55{
  color: hsl(var(--destructive-foreground) / 0.55);
}
.text-destructive-foreground\/60{
  color: hsl(var(--destructive-foreground) / 0.6);
}
.text-destructive-foreground\/65{
  color: hsl(var(--destructive-foreground) / 0.65);
}
.text-destructive-foreground\/70{
  color: hsl(var(--destructive-foreground) / 0.7);
}
.text-destructive-foreground\/75{
  color: hsl(var(--destructive-foreground) / 0.75);
}
.text-destructive-foreground\/80{
  color: hsl(var(--destructive-foreground) / 0.8);
}
.text-destructive-foreground\/85{
  color: hsl(var(--destructive-foreground) / 0.85);
}
.text-destructive-foreground\/90{
  color: hsl(var(--destructive-foreground) / 0.9);
}
.text-destructive-foreground\/95{
  color: hsl(var(--destructive-foreground) / 0.95);
}
.text-destructive\/0{
  color: hsl(var(--destructive) / 0);
}
.text-destructive\/10{
  color: hsl(var(--destructive) / 0.1);
}
.text-destructive\/100{
  color: hsl(var(--destructive) / 1);
}
.text-destructive\/15{
  color: hsl(var(--destructive) / 0.15);
}
.text-destructive\/20{
  color: hsl(var(--destructive) / 0.2);
}
.text-destructive\/25{
  color: hsl(var(--destructive) / 0.25);
}
.text-destructive\/30{
  color: hsl(var(--destructive) / 0.3);
}
.text-destructive\/35{
  color: hsl(var(--destructive) / 0.35);
}
.text-destructive\/40{
  color: hsl(var(--destructive) / 0.4);
}
.text-destructive\/45{
  color: hsl(var(--destructive) / 0.45);
}
.text-destructive\/5{
  color: hsl(var(--destructive) / 0.05);
}
.text-destructive\/50{
  color: hsl(var(--destructive) / 0.5);
}
.text-destructive\/55{
  color: hsl(var(--destructive) / 0.55);
}
.text-destructive\/60{
  color: hsl(var(--destructive) / 0.6);
}
.text-destructive\/65{
  color: hsl(var(--destructive) / 0.65);
}
.text-destructive\/70{
  color: hsl(var(--destructive) / 0.7);
}
.text-destructive\/75{
  color: hsl(var(--destructive) / 0.75);
}
.text-destructive\/80{
  color: hsl(var(--destructive) / 0.8);
}
.text-destructive\/85{
  color: hsl(var(--destructive) / 0.85);
}
.text-destructive\/90{
  color: hsl(var(--destructive) / 0.9);
}
.text-destructive\/95{
  color: hsl(var(--destructive) / 0.95);
}
.text-emerald-400{
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-emerald-500{
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.text-emerald-600{
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-emerald-700{
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}
.text-emerald-800{
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.text-foreground{
  color: hsl(var(--foreground));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-200{
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.text-green-400{
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-500\/40{
  color: rgb(34 197 94 / 0.4);
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-green-800{
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-green-900{
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.text-indigo-700{
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.text-muted{
  color: hsl(var(--muted));
}
.text-muted-foreground{
  color: hsl(var(--muted-foreground));
}
.text-muted-foreground\/0{
  color: hsl(var(--muted-foreground) / 0);
}
.text-muted-foreground\/10{
  color: hsl(var(--muted-foreground) / 0.1);
}
.text-muted-foreground\/100{
  color: hsl(var(--muted-foreground) / 1);
}
.text-muted-foreground\/15{
  color: hsl(var(--muted-foreground) / 0.15);
}
.text-muted-foreground\/20{
  color: hsl(var(--muted-foreground) / 0.2);
}
.text-muted-foreground\/25{
  color: hsl(var(--muted-foreground) / 0.25);
}
.text-muted-foreground\/30{
  color: hsl(var(--muted-foreground) / 0.3);
}
.text-muted-foreground\/35{
  color: hsl(var(--muted-foreground) / 0.35);
}
.text-muted-foreground\/40{
  color: hsl(var(--muted-foreground) / 0.4);
}
.text-muted-foreground\/45{
  color: hsl(var(--muted-foreground) / 0.45);
}
.text-muted-foreground\/5{
  color: hsl(var(--muted-foreground) / 0.05);
}
.text-muted-foreground\/50{
  color: hsl(var(--muted-foreground) / 0.5);
}
.text-muted-foreground\/55{
  color: hsl(var(--muted-foreground) / 0.55);
}
.text-muted-foreground\/60{
  color: hsl(var(--muted-foreground) / 0.6);
}
.text-muted-foreground\/65{
  color: hsl(var(--muted-foreground) / 0.65);
}
.text-muted-foreground\/70{
  color: hsl(var(--muted-foreground) / 0.7);
}
.text-muted-foreground\/75{
  color: hsl(var(--muted-foreground) / 0.75);
}
.text-muted-foreground\/80{
  color: hsl(var(--muted-foreground) / 0.8);
}
.text-muted-foreground\/85{
  color: hsl(var(--muted-foreground) / 0.85);
}
.text-muted-foreground\/90{
  color: hsl(var(--muted-foreground) / 0.9);
}
.text-muted-foreground\/95{
  color: hsl(var(--muted-foreground) / 0.95);
}
.text-muted\/0{
  color: hsl(var(--muted) / 0);
}
.text-muted\/10{
  color: hsl(var(--muted) / 0.1);
}
.text-muted\/100{
  color: hsl(var(--muted) / 1);
}
.text-muted\/15{
  color: hsl(var(--muted) / 0.15);
}
.text-muted\/20{
  color: hsl(var(--muted) / 0.2);
}
.text-muted\/25{
  color: hsl(var(--muted) / 0.25);
}
.text-muted\/30{
  color: hsl(var(--muted) / 0.3);
}
.text-muted\/35{
  color: hsl(var(--muted) / 0.35);
}
.text-muted\/40{
  color: hsl(var(--muted) / 0.4);
}
.text-muted\/45{
  color: hsl(var(--muted) / 0.45);
}
.text-muted\/5{
  color: hsl(var(--muted) / 0.05);
}
.text-muted\/50{
  color: hsl(var(--muted) / 0.5);
}
.text-muted\/55{
  color: hsl(var(--muted) / 0.55);
}
.text-muted\/60{
  color: hsl(var(--muted) / 0.6);
}
.text-muted\/65{
  color: hsl(var(--muted) / 0.65);
}
.text-muted\/70{
  color: hsl(var(--muted) / 0.7);
}
.text-muted\/75{
  color: hsl(var(--muted) / 0.75);
}
.text-muted\/80{
  color: hsl(var(--muted) / 0.8);
}
.text-muted\/85{
  color: hsl(var(--muted) / 0.85);
}
.text-muted\/90{
  color: hsl(var(--muted) / 0.9);
}
.text-muted\/95{
  color: hsl(var(--muted) / 0.95);
}
.text-orange-400{
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-500{
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-orange-600{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-orange-700{
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.text-orange-800{
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.text-orange-900{
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.text-pink-400{
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.text-pink-500{
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-pink-600{
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.text-pink-800{
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.text-popover-foreground{
  color: hsl(var(--popover-foreground));
}
.text-primary{
  color: hsl(var(--primary));
}
.text-primary-foreground{
  color: hsl(var(--primary-foreground));
}
.text-primary-foreground\/0{
  color: hsl(var(--primary-foreground) / 0);
}
.text-primary-foreground\/10{
  color: hsl(var(--primary-foreground) / 0.1);
}
.text-primary-foreground\/100{
  color: hsl(var(--primary-foreground) / 1);
}
.text-primary-foreground\/15{
  color: hsl(var(--primary-foreground) / 0.15);
}
.text-primary-foreground\/20{
  color: hsl(var(--primary-foreground) / 0.2);
}
.text-primary-foreground\/25{
  color: hsl(var(--primary-foreground) / 0.25);
}
.text-primary-foreground\/30{
  color: hsl(var(--primary-foreground) / 0.3);
}
.text-primary-foreground\/35{
  color: hsl(var(--primary-foreground) / 0.35);
}
.text-primary-foreground\/40{
  color: hsl(var(--primary-foreground) / 0.4);
}
.text-primary-foreground\/45{
  color: hsl(var(--primary-foreground) / 0.45);
}
.text-primary-foreground\/5{
  color: hsl(var(--primary-foreground) / 0.05);
}
.text-primary-foreground\/50{
  color: hsl(var(--primary-foreground) / 0.5);
}
.text-primary-foreground\/55{
  color: hsl(var(--primary-foreground) / 0.55);
}
.text-primary-foreground\/60{
  color: hsl(var(--primary-foreground) / 0.6);
}
.text-primary-foreground\/65{
  color: hsl(var(--primary-foreground) / 0.65);
}
.text-primary-foreground\/70{
  color: hsl(var(--primary-foreground) / 0.7);
}
.text-primary-foreground\/75{
  color: hsl(var(--primary-foreground) / 0.75);
}
.text-primary-foreground\/80{
  color: hsl(var(--primary-foreground) / 0.8);
}
.text-primary-foreground\/85{
  color: hsl(var(--primary-foreground) / 0.85);
}
.text-primary-foreground\/90{
  color: hsl(var(--primary-foreground) / 0.9);
}
.text-primary-foreground\/95{
  color: hsl(var(--primary-foreground) / 0.95);
}
.text-primary\/0{
  color: hsl(var(--primary) / 0);
}
.text-primary\/10{
  color: hsl(var(--primary) / 0.1);
}
.text-primary\/100{
  color: hsl(var(--primary) / 1);
}
.text-primary\/15{
  color: hsl(var(--primary) / 0.15);
}
.text-primary\/20{
  color: hsl(var(--primary) / 0.2);
}
.text-primary\/25{
  color: hsl(var(--primary) / 0.25);
}
.text-primary\/30{
  color: hsl(var(--primary) / 0.3);
}
.text-primary\/35{
  color: hsl(var(--primary) / 0.35);
}
.text-primary\/40{
  color: hsl(var(--primary) / 0.4);
}
.text-primary\/45{
  color: hsl(var(--primary) / 0.45);
}
.text-primary\/5{
  color: hsl(var(--primary) / 0.05);
}
.text-primary\/50{
  color: hsl(var(--primary) / 0.5);
}
.text-primary\/55{
  color: hsl(var(--primary) / 0.55);
}
.text-primary\/60{
  color: hsl(var(--primary) / 0.6);
}
.text-primary\/65{
  color: hsl(var(--primary) / 0.65);
}
.text-primary\/70{
  color: hsl(var(--primary) / 0.7);
}
.text-primary\/75{
  color: hsl(var(--primary) / 0.75);
}
.text-primary\/80{
  color: hsl(var(--primary) / 0.8);
}
.text-primary\/85{
  color: hsl(var(--primary) / 0.85);
}
.text-primary\/90{
  color: hsl(var(--primary) / 0.9);
}
.text-primary\/95{
  color: hsl(var(--primary) / 0.95);
}
.text-purple-400{
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.text-purple-500{
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-700{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-purple-800{
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.text-red-400{
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-red-900{
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}
.text-rose-600{
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}
.text-rose-700{
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}
.text-secondary{
  color: hsl(var(--secondary));
}
.text-secondary-foreground{
  color: hsl(var(--secondary-foreground));
}
.text-secondary-foreground\/0{
  color: hsl(var(--secondary-foreground) / 0);
}
.text-secondary-foreground\/10{
  color: hsl(var(--secondary-foreground) / 0.1);
}
.text-secondary-foreground\/100{
  color: hsl(var(--secondary-foreground) / 1);
}
.text-secondary-foreground\/15{
  color: hsl(var(--secondary-foreground) / 0.15);
}
.text-secondary-foreground\/20{
  color: hsl(var(--secondary-foreground) / 0.2);
}
.text-secondary-foreground\/25{
  color: hsl(var(--secondary-foreground) / 0.25);
}
.text-secondary-foreground\/30{
  color: hsl(var(--secondary-foreground) / 0.3);
}
.text-secondary-foreground\/35{
  color: hsl(var(--secondary-foreground) / 0.35);
}
.text-secondary-foreground\/40{
  color: hsl(var(--secondary-foreground) / 0.4);
}
.text-secondary-foreground\/45{
  color: hsl(var(--secondary-foreground) / 0.45);
}
.text-secondary-foreground\/5{
  color: hsl(var(--secondary-foreground) / 0.05);
}
.text-secondary-foreground\/50{
  color: hsl(var(--secondary-foreground) / 0.5);
}
.text-secondary-foreground\/55{
  color: hsl(var(--secondary-foreground) / 0.55);
}
.text-secondary-foreground\/60{
  color: hsl(var(--secondary-foreground) / 0.6);
}
.text-secondary-foreground\/65{
  color: hsl(var(--secondary-foreground) / 0.65);
}
.text-secondary-foreground\/70{
  color: hsl(var(--secondary-foreground) / 0.7);
}
.text-secondary-foreground\/75{
  color: hsl(var(--secondary-foreground) / 0.75);
}
.text-secondary-foreground\/80{
  color: hsl(var(--secondary-foreground) / 0.8);
}
.text-secondary-foreground\/85{
  color: hsl(var(--secondary-foreground) / 0.85);
}
.text-secondary-foreground\/90{
  color: hsl(var(--secondary-foreground) / 0.9);
}
.text-secondary-foreground\/95{
  color: hsl(var(--secondary-foreground) / 0.95);
}
.text-secondary\/0{
  color: hsl(var(--secondary) / 0);
}
.text-secondary\/10{
  color: hsl(var(--secondary) / 0.1);
}
.text-secondary\/100{
  color: hsl(var(--secondary) / 1);
}
.text-secondary\/15{
  color: hsl(var(--secondary) / 0.15);
}
.text-secondary\/20{
  color: hsl(var(--secondary) / 0.2);
}
.text-secondary\/25{
  color: hsl(var(--secondary) / 0.25);
}
.text-secondary\/30{
  color: hsl(var(--secondary) / 0.3);
}
.text-secondary\/35{
  color: hsl(var(--secondary) / 0.35);
}
.text-secondary\/40{
  color: hsl(var(--secondary) / 0.4);
}
.text-secondary\/45{
  color: hsl(var(--secondary) / 0.45);
}
.text-secondary\/5{
  color: hsl(var(--secondary) / 0.05);
}
.text-secondary\/50{
  color: hsl(var(--secondary) / 0.5);
}
.text-secondary\/55{
  color: hsl(var(--secondary) / 0.55);
}
.text-secondary\/60{
  color: hsl(var(--secondary) / 0.6);
}
.text-secondary\/65{
  color: hsl(var(--secondary) / 0.65);
}
.text-secondary\/70{
  color: hsl(var(--secondary) / 0.7);
}
.text-secondary\/75{
  color: hsl(var(--secondary) / 0.75);
}
.text-secondary\/80{
  color: hsl(var(--secondary) / 0.8);
}
.text-secondary\/85{
  color: hsl(var(--secondary) / 0.85);
}
.text-secondary\/90{
  color: hsl(var(--secondary) / 0.9);
}
.text-secondary\/95{
  color: hsl(var(--secondary) / 0.95);
}
.text-teal-700{
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.text-transparent{
  color: transparent;
}
.text-violet-600{
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity, 1));
}
.text-violet-700{
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/30{
  color: rgb(255 255 255 / 0.3);
}
.text-white\/40{
  color: rgb(255 255 255 / 0.4);
}
.text-white\/50{
  color: rgb(255 255 255 / 0.5);
}
.text-white\/60{
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70{
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}
.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}
.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-700{
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.text-yellow-800{
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.text-yellow-900{
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.line-through{
  text-decoration-line: line-through;
}
.underline-offset-2{
  text-underline-offset: 2px;
}
.underline-offset-4{
  text-underline-offset: 4px;
}
.accent-\[\#7A8C6E\]{
  accent-color: #7A8C6E;
}
.opacity-0{
  opacity: 0;
}
.opacity-10{
  opacity: 0.1;
}
.opacity-20{
  opacity: 0.2;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-30{
  opacity: 0.3;
}
.opacity-40{
  opacity: 0.4;
}
.opacity-5{
  opacity: 0.05;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-70{
  opacity: 0.7;
}
.opacity-75{
  opacity: 0.75;
}
.opacity-80{
  opacity: 0.8;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_10px_rgba\(6\2c 182\2c 212\2c 0\.6\)\]{
  --tw-shadow: 0 0 10px rgba(6,182,212,0.6);
  --tw-shadow-colored: 0 0 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[3px_3px_0px_\#FFB7C5\]{
  --tw-shadow: 3px 3px 0px #FFB7C5;
  --tw-shadow-colored: 3px 3px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[3px_3px_0px_0px_rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
  --tw-shadow: 3px 3px 0px 0px rgba(0,0,0,0.3);
  --tw-shadow-colored: 3px 3px 0px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[3px_3px_0px_0px_rgba\(255\2c 183\2c 197\2c 0\.8\)\]{
  --tw-shadow: 3px 3px 0px 0px rgba(255,183,197,0.8);
  --tw-shadow-colored: 3px 3px 0px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[3px_3px_0px_rgba\(0\2c 0\2c 0\2c 0\.1\)\]{
  --tw-shadow: 3px 3px 0px rgba(0,0,0,0.1);
  --tw-shadow-colored: 3px 3px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[4px_4px_0px_rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
  --tw-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  --tw-shadow-colored: 4px 4px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[6px_6px_0px_rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
  --tw-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  --tw-shadow-colored: 6px 6px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none{
  --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);
}
.shadow-sm{
  --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);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-primary\/20{
  --tw-shadow-color: hsl(var(--primary) / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-primary\/30{
  --tw-shadow-color: hsl(var(--primary) / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline{
  outline-style: solid;
}
.ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.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);
}
.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-current{
  --tw-ring-color: currentColor;
}
.ring-ring{
  --tw-ring-color: hsl(var(--ring));
}
.ring-offset-1{
  --tw-ring-offset-width: 1px;
}
.ring-offset-background{
  --tw-ring-offset-color: hsl(var(--background));
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-3xl{
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[120px\]{
  --tw-blur: blur(120px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow{
  --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);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur{
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000{
  transition-duration: 1000ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-700{
  transition-duration: 700ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@keyframes enter{
  from{
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit{
  to{
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in{
  --tw-enter-opacity: 0;
}
.fade-in-0{
  --tw-enter-opacity: 0;
}
.fade-in-80{
  --tw-enter-opacity: 0.8;
}
.zoom-in-95{
  --tw-enter-scale: .95;
}
.duration-1000{
  animation-duration: 1000ms;
}
.duration-200{
  animation-duration: 200ms;
}
.duration-300{
  animation-duration: 300ms;
}
.duration-500{
  animation-duration: 500ms;
}
.duration-700{
  animation-duration: 700ms;
}
.ease-in-out{
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.running{
  animation-play-state: running;
}
/* ═══ CYBERBRAIN UTILITY CLASSES — DC UNIVERSE DARK ═══ */
/* Backgrounds */
.cb-bg-dark-blue {
    background-color: var(--cb-bg-deep);
  }
.cb-bg-void {
    background-color: var(--cb-bg-void);
  }
.cb-bg-surface {
    background-color: var(--cb-bg-surface);
  }
.cb-bg-silver {
    background-color: var(--cb-bg-silver-block);
  }
/* Accent Colors */
.cb-text-fuchsia,
  .cb-text-electric-blue {
    color: var(--cb-accent-electric);
  }
.cb-text-gold {
    color: var(--cb-accent-gold);
  }
.cb-text-green {
    color: var(--cb-accent-green);
  }
.cb-text-primary {
    color: var(--cb-text-primary);
  }
.cb-text-dark {
    color: var(--cb-text-dark);
  }
/* Typography */
.cb-font-header {
    font-family: var(--cb-font-header);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
.cb-font-body {
    font-family: var(--cb-font-body);
  }
/* Glows */
.cb-glow-electric,
  .cb-glow-fuchsia {
    text-shadow: var(--cb-glow-electric);
  }
.cb-glow-white {
    text-shadow: var(--cb-glow-white);
  }
/* Borders */
.cb-border-title {
    border: var(--cb-border-title);
  }
/* Animations */
.animate-in {
    animation-duration: 0.2s;
    animation-fill-mode: both;
  }
.fade-in {
    animation-name: fadeIn;
  }
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
.\[--cell-size\:2rem\]{
  --cell-size: 2rem;
}
/* Custom utility classes */
/* Unless told otherwise, keep it for smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* ─────────────────────────────────────────────────────────────────
   Breathable List Layout — accessibility-first spacing for users
   with anxiety. Applies to all reading/course content areas.
   Minimum 4.5:1 contrast maintained throughout.
───────────────────────────────────────────────────────────────── */
/* Reading lesson content — prose area */
.reading-content ol,
.reading-content ul {
  padding-left: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.reading-content ol {
  list-style-type: decimal;
}
.reading-content ul {
  list-style-type: disc;
}
/* Each list item gets generous breathing room */
.reading-content ol > li,
.reading-content ul > li {
  margin-bottom: 20px;
  padding-bottom: 4px;
  line-height: 1.85;
  color: #1a2e1c;
}
/* Nested lists — slightly tighter but still breathable */
.reading-content ol ol > li,
.reading-content ol ul > li,
.reading-content ul ol > li,
.reading-content ul ul > li {
  margin-bottom: 12px;
}
/* Numbered list marker — Deep Navy, bold, easy to scan */
.reading-content ol > li::marker {
  color: #002147;
  font-weight: 700;
  font-size: 0.95em;
}
/* Bullet marker — Soft Teal */
.reading-content ul > li::marker {
  color: #B2D8D8;
  font-size: 1.1em;
}
/* Separator line between numbered items for extra visual clarity */
.reading-content ol > li + li {
  border-top: 1px solid #B2D8D8;
  padding-top: 16px;
}
/* Prose plugin overrides — ensure Tailwind prose doesn't collapse spacing */
.reading-content.prose ol > li,
.reading-content.prose ul > li,
.reading-content .prose ol > li,
.reading-content .prose ul > li {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.file\:border-0::file-selector-button{
  border-width: 0px;
}
.file\:bg-transparent::file-selector-button{
  background-color: transparent;
}
.file\:text-sm::file-selector-button{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.file\:font-medium::file-selector-button{
  font-weight: 500;
}
.file\:text-foreground::file-selector-button{
  color: hsl(var(--foreground));
}
.placeholder\:text-\[\#A8B5A0\]::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(168 181 160 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#A8B5A0\]::placeholder{
  --tw-text-opacity: 1;
  color: rgb(168 181 160 / var(--tw-text-opacity, 1));
}
.placeholder\:text-muted-foreground::-moz-placeholder{
  color: hsl(var(--muted-foreground));
}
.placeholder\:text-muted-foreground::placeholder{
  color: hsl(var(--muted-foreground));
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:inset-y-0::after{
  content: var(--tw-content);
  top: 0px;
  bottom: 0px;
}
.after\:bottom-0::after{
  content: var(--tw-content);
  bottom: 0px;
}
.after\:left-0::after{
  content: var(--tw-content);
  left: 0px;
}
.after\:left-1\/2::after{
  content: var(--tw-content);
  left: 50%;
}
.after\:h-px::after{
  content: var(--tw-content);
  height: 1px;
}
.after\:w-0::after{
  content: var(--tw-content);
  width: 0px;
}
.after\:w-1::after{
  content: var(--tw-content);
  width: 0.25rem;
}
.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}
.after\:-translate-x-1\/2::after{
  content: var(--tw-content);
  --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));
}
.after\:bg-primary::after{
  content: var(--tw-content);
  background-color: hsl(var(--primary));
}
.after\:transition-all::after{
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.after\:duration-300::after{
  content: var(--tw-content);
  transition-duration: 300ms;
}
.after\:ease-out::after{
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.after\:duration-300::after{
  content: var(--tw-content);
  animation-duration: 300ms;
}
.after\:ease-out::after{
  content: var(--tw-content);
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.first\:rounded-l-md:first-child{
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.first\:border-l:first-child{
  border-left-width: 1px;
}
.last\:rounded-r-md:last-child{
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.last\:border-0:last-child{
  border-width: 0px;
}
.hover\:-translate-y-1:hover{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[1\.02\]:hover{
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-\[\#0A66C2\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(10 102 194 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#1877F2\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(24 119 242 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#1DA1F2\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(29 161 242 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#7A8C6E\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(122 140 110 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#A8B5A0\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(168 181 160 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#A8B5A0\]\/50:hover{
  border-color: rgb(168 181 160 / 0.5);
}
.hover\:border-\[\#B8D4E8\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(184 212 232 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#C4785A\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(196 120 90 / var(--tw-border-opacity, 1));
}
.hover\:border-\[\#D4C5E0\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(212 197 224 / var(--tw-border-opacity, 1));
}
.hover\:border-accent:hover{
  border-color: hsl(var(--accent));
}
.hover\:border-accent-foreground:hover{
  border-color: hsl(var(--accent-foreground));
}
.hover\:border-accent-foreground\/0:hover{
  border-color: hsl(var(--accent-foreground) / 0);
}
.hover\:border-accent-foreground\/10:hover{
  border-color: hsl(var(--accent-foreground) / 0.1);
}
.hover\:border-accent-foreground\/100:hover{
  border-color: hsl(var(--accent-foreground) / 1);
}
.hover\:border-accent-foreground\/15:hover{
  border-color: hsl(var(--accent-foreground) / 0.15);
}
.hover\:border-accent-foreground\/20:hover{
  border-color: hsl(var(--accent-foreground) / 0.2);
}
.hover\:border-accent-foreground\/25:hover{
  border-color: hsl(var(--accent-foreground) / 0.25);
}
.hover\:border-accent-foreground\/30:hover{
  border-color: hsl(var(--accent-foreground) / 0.3);
}
.hover\:border-accent-foreground\/35:hover{
  border-color: hsl(var(--accent-foreground) / 0.35);
}
.hover\:border-accent-foreground\/40:hover{
  border-color: hsl(var(--accent-foreground) / 0.4);
}
.hover\:border-accent-foreground\/45:hover{
  border-color: hsl(var(--accent-foreground) / 0.45);
}
.hover\:border-accent-foreground\/5:hover{
  border-color: hsl(var(--accent-foreground) / 0.05);
}
.hover\:border-accent-foreground\/50:hover{
  border-color: hsl(var(--accent-foreground) / 0.5);
}
.hover\:border-accent-foreground\/55:hover{
  border-color: hsl(var(--accent-foreground) / 0.55);
}
.hover\:border-accent-foreground\/60:hover{
  border-color: hsl(var(--accent-foreground) / 0.6);
}
.hover\:border-accent-foreground\/65:hover{
  border-color: hsl(var(--accent-foreground) / 0.65);
}
.hover\:border-accent-foreground\/70:hover{
  border-color: hsl(var(--accent-foreground) / 0.7);
}
.hover\:border-accent-foreground\/75:hover{
  border-color: hsl(var(--accent-foreground) / 0.75);
}
.hover\:border-accent-foreground\/80:hover{
  border-color: hsl(var(--accent-foreground) / 0.8);
}
.hover\:border-accent-foreground\/85:hover{
  border-color: hsl(var(--accent-foreground) / 0.85);
}
.hover\:border-accent-foreground\/90:hover{
  border-color: hsl(var(--accent-foreground) / 0.9);
}
.hover\:border-accent-foreground\/95:hover{
  border-color: hsl(var(--accent-foreground) / 0.95);
}
.hover\:border-accent\/0:hover{
  border-color: hsl(var(--accent) / 0);
}
.hover\:border-accent\/10:hover{
  border-color: hsl(var(--accent) / 0.1);
}
.hover\:border-accent\/100:hover{
  border-color: hsl(var(--accent) / 1);
}
.hover\:border-accent\/15:hover{
  border-color: hsl(var(--accent) / 0.15);
}
.hover\:border-accent\/20:hover{
  border-color: hsl(var(--accent) / 0.2);
}
.hover\:border-accent\/25:hover{
  border-color: hsl(var(--accent) / 0.25);
}
.hover\:border-accent\/30:hover{
  border-color: hsl(var(--accent) / 0.3);
}
.hover\:border-accent\/35:hover{
  border-color: hsl(var(--accent) / 0.35);
}
.hover\:border-accent\/40:hover{
  border-color: hsl(var(--accent) / 0.4);
}
.hover\:border-accent\/45:hover{
  border-color: hsl(var(--accent) / 0.45);
}
.hover\:border-accent\/5:hover{
  border-color: hsl(var(--accent) / 0.05);
}
.hover\:border-accent\/50:hover{
  border-color: hsl(var(--accent) / 0.5);
}
.hover\:border-accent\/55:hover{
  border-color: hsl(var(--accent) / 0.55);
}
.hover\:border-accent\/60:hover{
  border-color: hsl(var(--accent) / 0.6);
}
.hover\:border-accent\/65:hover{
  border-color: hsl(var(--accent) / 0.65);
}
.hover\:border-accent\/70:hover{
  border-color: hsl(var(--accent) / 0.7);
}
.hover\:border-accent\/75:hover{
  border-color: hsl(var(--accent) / 0.75);
}
.hover\:border-accent\/80:hover{
  border-color: hsl(var(--accent) / 0.8);
}
.hover\:border-accent\/85:hover{
  border-color: hsl(var(--accent) / 0.85);
}
.hover\:border-accent\/90:hover{
  border-color: hsl(var(--accent) / 0.9);
}
.hover\:border-accent\/95:hover{
  border-color: hsl(var(--accent) / 0.95);
}
.hover\:border-amber-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.hover\:border-cyan-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
}
.hover\:border-destructive:hover{
  border-color: hsl(var(--destructive));
}
.hover\:border-destructive-foreground:hover{
  border-color: hsl(var(--destructive-foreground));
}
.hover\:border-destructive-foreground\/0:hover{
  border-color: hsl(var(--destructive-foreground) / 0);
}
.hover\:border-destructive-foreground\/10:hover{
  border-color: hsl(var(--destructive-foreground) / 0.1);
}
.hover\:border-destructive-foreground\/100:hover{
  border-color: hsl(var(--destructive-foreground) / 1);
}
.hover\:border-destructive-foreground\/15:hover{
  border-color: hsl(var(--destructive-foreground) / 0.15);
}
.hover\:border-destructive-foreground\/20:hover{
  border-color: hsl(var(--destructive-foreground) / 0.2);
}
.hover\:border-destructive-foreground\/25:hover{
  border-color: hsl(var(--destructive-foreground) / 0.25);
}
.hover\:border-destructive-foreground\/30:hover{
  border-color: hsl(var(--destructive-foreground) / 0.3);
}
.hover\:border-destructive-foreground\/35:hover{
  border-color: hsl(var(--destructive-foreground) / 0.35);
}
.hover\:border-destructive-foreground\/40:hover{
  border-color: hsl(var(--destructive-foreground) / 0.4);
}
.hover\:border-destructive-foreground\/45:hover{
  border-color: hsl(var(--destructive-foreground) / 0.45);
}
.hover\:border-destructive-foreground\/5:hover{
  border-color: hsl(var(--destructive-foreground) / 0.05);
}
.hover\:border-destructive-foreground\/50:hover{
  border-color: hsl(var(--destructive-foreground) / 0.5);
}
.hover\:border-destructive-foreground\/55:hover{
  border-color: hsl(var(--destructive-foreground) / 0.55);
}
.hover\:border-destructive-foreground\/60:hover{
  border-color: hsl(var(--destructive-foreground) / 0.6);
}
.hover\:border-destructive-foreground\/65:hover{
  border-color: hsl(var(--destructive-foreground) / 0.65);
}
.hover\:border-destructive-foreground\/70:hover{
  border-color: hsl(var(--destructive-foreground) / 0.7);
}
.hover\:border-destructive-foreground\/75:hover{
  border-color: hsl(var(--destructive-foreground) / 0.75);
}
.hover\:border-destructive-foreground\/80:hover{
  border-color: hsl(var(--destructive-foreground) / 0.8);
}
.hover\:border-destructive-foreground\/85:hover{
  border-color: hsl(var(--destructive-foreground) / 0.85);
}
.hover\:border-destructive-foreground\/90:hover{
  border-color: hsl(var(--destructive-foreground) / 0.9);
}
.hover\:border-destructive-foreground\/95:hover{
  border-color: hsl(var(--destructive-foreground) / 0.95);
}
.hover\:border-destructive\/0:hover{
  border-color: hsl(var(--destructive) / 0);
}
.hover\:border-destructive\/10:hover{
  border-color: hsl(var(--destructive) / 0.1);
}
.hover\:border-destructive\/100:hover{
  border-color: hsl(var(--destructive) / 1);
}
.hover\:border-destructive\/15:hover{
  border-color: hsl(var(--destructive) / 0.15);
}
.hover\:border-destructive\/20:hover{
  border-color: hsl(var(--destructive) / 0.2);
}
.hover\:border-destructive\/25:hover{
  border-color: hsl(var(--destructive) / 0.25);
}
.hover\:border-destructive\/30:hover{
  border-color: hsl(var(--destructive) / 0.3);
}
.hover\:border-destructive\/35:hover{
  border-color: hsl(var(--destructive) / 0.35);
}
.hover\:border-destructive\/40:hover{
  border-color: hsl(var(--destructive) / 0.4);
}
.hover\:border-destructive\/45:hover{
  border-color: hsl(var(--destructive) / 0.45);
}
.hover\:border-destructive\/5:hover{
  border-color: hsl(var(--destructive) / 0.05);
}
.hover\:border-destructive\/50:hover{
  border-color: hsl(var(--destructive) / 0.5);
}
.hover\:border-destructive\/55:hover{
  border-color: hsl(var(--destructive) / 0.55);
}
.hover\:border-destructive\/60:hover{
  border-color: hsl(var(--destructive) / 0.6);
}
.hover\:border-destructive\/65:hover{
  border-color: hsl(var(--destructive) / 0.65);
}
.hover\:border-destructive\/70:hover{
  border-color: hsl(var(--destructive) / 0.7);
}
.hover\:border-destructive\/75:hover{
  border-color: hsl(var(--destructive) / 0.75);
}
.hover\:border-destructive\/80:hover{
  border-color: hsl(var(--destructive) / 0.8);
}
.hover\:border-destructive\/85:hover{
  border-color: hsl(var(--destructive) / 0.85);
}
.hover\:border-destructive\/90:hover{
  border-color: hsl(var(--destructive) / 0.9);
}
.hover\:border-destructive\/95:hover{
  border-color: hsl(var(--destructive) / 0.95);
}
.hover\:border-gray-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.hover\:border-green-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.hover\:border-muted:hover{
  border-color: hsl(var(--muted));
}
.hover\:border-muted-foreground:hover{
  border-color: hsl(var(--muted-foreground));
}
.hover\:border-muted-foreground\/0:hover{
  border-color: hsl(var(--muted-foreground) / 0);
}
.hover\:border-muted-foreground\/10:hover{
  border-color: hsl(var(--muted-foreground) / 0.1);
}
.hover\:border-muted-foreground\/100:hover{
  border-color: hsl(var(--muted-foreground) / 1);
}
.hover\:border-muted-foreground\/15:hover{
  border-color: hsl(var(--muted-foreground) / 0.15);
}
.hover\:border-muted-foreground\/20:hover{
  border-color: hsl(var(--muted-foreground) / 0.2);
}
.hover\:border-muted-foreground\/25:hover{
  border-color: hsl(var(--muted-foreground) / 0.25);
}
.hover\:border-muted-foreground\/30:hover{
  border-color: hsl(var(--muted-foreground) / 0.3);
}
.hover\:border-muted-foreground\/35:hover{
  border-color: hsl(var(--muted-foreground) / 0.35);
}
.hover\:border-muted-foreground\/40:hover{
  border-color: hsl(var(--muted-foreground) / 0.4);
}
.hover\:border-muted-foreground\/45:hover{
  border-color: hsl(var(--muted-foreground) / 0.45);
}
.hover\:border-muted-foreground\/5:hover{
  border-color: hsl(var(--muted-foreground) / 0.05);
}
.hover\:border-muted-foreground\/50:hover{
  border-color: hsl(var(--muted-foreground) / 0.5);
}
.hover\:border-muted-foreground\/55:hover{
  border-color: hsl(var(--muted-foreground) / 0.55);
}
.hover\:border-muted-foreground\/60:hover{
  border-color: hsl(var(--muted-foreground) / 0.6);
}
.hover\:border-muted-foreground\/65:hover{
  border-color: hsl(var(--muted-foreground) / 0.65);
}
.hover\:border-muted-foreground\/70:hover{
  border-color: hsl(var(--muted-foreground) / 0.7);
}
.hover\:border-muted-foreground\/75:hover{
  border-color: hsl(var(--muted-foreground) / 0.75);
}
.hover\:border-muted-foreground\/80:hover{
  border-color: hsl(var(--muted-foreground) / 0.8);
}
.hover\:border-muted-foreground\/85:hover{
  border-color: hsl(var(--muted-foreground) / 0.85);
}
.hover\:border-muted-foreground\/90:hover{
  border-color: hsl(var(--muted-foreground) / 0.9);
}
.hover\:border-muted-foreground\/95:hover{
  border-color: hsl(var(--muted-foreground) / 0.95);
}
.hover\:border-muted\/0:hover{
  border-color: hsl(var(--muted) / 0);
}
.hover\:border-muted\/10:hover{
  border-color: hsl(var(--muted) / 0.1);
}
.hover\:border-muted\/100:hover{
  border-color: hsl(var(--muted) / 1);
}
.hover\:border-muted\/15:hover{
  border-color: hsl(var(--muted) / 0.15);
}
.hover\:border-muted\/20:hover{
  border-color: hsl(var(--muted) / 0.2);
}
.hover\:border-muted\/25:hover{
  border-color: hsl(var(--muted) / 0.25);
}
.hover\:border-muted\/30:hover{
  border-color: hsl(var(--muted) / 0.3);
}
.hover\:border-muted\/35:hover{
  border-color: hsl(var(--muted) / 0.35);
}
.hover\:border-muted\/40:hover{
  border-color: hsl(var(--muted) / 0.4);
}
.hover\:border-muted\/45:hover{
  border-color: hsl(var(--muted) / 0.45);
}
.hover\:border-muted\/5:hover{
  border-color: hsl(var(--muted) / 0.05);
}
.hover\:border-muted\/50:hover{
  border-color: hsl(var(--muted) / 0.5);
}
.hover\:border-muted\/55:hover{
  border-color: hsl(var(--muted) / 0.55);
}
.hover\:border-muted\/60:hover{
  border-color: hsl(var(--muted) / 0.6);
}
.hover\:border-muted\/65:hover{
  border-color: hsl(var(--muted) / 0.65);
}
.hover\:border-muted\/70:hover{
  border-color: hsl(var(--muted) / 0.7);
}
.hover\:border-muted\/75:hover{
  border-color: hsl(var(--muted) / 0.75);
}
.hover\:border-muted\/80:hover{
  border-color: hsl(var(--muted) / 0.8);
}
.hover\:border-muted\/85:hover{
  border-color: hsl(var(--muted) / 0.85);
}
.hover\:border-muted\/90:hover{
  border-color: hsl(var(--muted) / 0.9);
}
.hover\:border-muted\/95:hover{
  border-color: hsl(var(--muted) / 0.95);
}
.hover\:border-orange-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.hover\:border-pink-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.hover\:border-primary:hover{
  border-color: hsl(var(--primary));
}
.hover\:border-primary-foreground:hover{
  border-color: hsl(var(--primary-foreground));
}
.hover\:border-primary-foreground\/0:hover{
  border-color: hsl(var(--primary-foreground) / 0);
}
.hover\:border-primary-foreground\/10:hover{
  border-color: hsl(var(--primary-foreground) / 0.1);
}
.hover\:border-primary-foreground\/100:hover{
  border-color: hsl(var(--primary-foreground) / 1);
}
.hover\:border-primary-foreground\/15:hover{
  border-color: hsl(var(--primary-foreground) / 0.15);
}
.hover\:border-primary-foreground\/20:hover{
  border-color: hsl(var(--primary-foreground) / 0.2);
}
.hover\:border-primary-foreground\/25:hover{
  border-color: hsl(var(--primary-foreground) / 0.25);
}
.hover\:border-primary-foreground\/30:hover{
  border-color: hsl(var(--primary-foreground) / 0.3);
}
.hover\:border-primary-foreground\/35:hover{
  border-color: hsl(var(--primary-foreground) / 0.35);
}
.hover\:border-primary-foreground\/40:hover{
  border-color: hsl(var(--primary-foreground) / 0.4);
}
.hover\:border-primary-foreground\/45:hover{
  border-color: hsl(var(--primary-foreground) / 0.45);
}
.hover\:border-primary-foreground\/5:hover{
  border-color: hsl(var(--primary-foreground) / 0.05);
}
.hover\:border-primary-foreground\/50:hover{
  border-color: hsl(var(--primary-foreground) / 0.5);
}
.hover\:border-primary-foreground\/55:hover{
  border-color: hsl(var(--primary-foreground) / 0.55);
}
.hover\:border-primary-foreground\/60:hover{
  border-color: hsl(var(--primary-foreground) / 0.6);
}
.hover\:border-primary-foreground\/65:hover{
  border-color: hsl(var(--primary-foreground) / 0.65);
}
.hover\:border-primary-foreground\/70:hover{
  border-color: hsl(var(--primary-foreground) / 0.7);
}
.hover\:border-primary-foreground\/75:hover{
  border-color: hsl(var(--primary-foreground) / 0.75);
}
.hover\:border-primary-foreground\/80:hover{
  border-color: hsl(var(--primary-foreground) / 0.8);
}
.hover\:border-primary-foreground\/85:hover{
  border-color: hsl(var(--primary-foreground) / 0.85);
}
.hover\:border-primary-foreground\/90:hover{
  border-color: hsl(var(--primary-foreground) / 0.9);
}
.hover\:border-primary-foreground\/95:hover{
  border-color: hsl(var(--primary-foreground) / 0.95);
}
.hover\:border-primary\/0:hover{
  border-color: hsl(var(--primary) / 0);
}
.hover\:border-primary\/10:hover{
  border-color: hsl(var(--primary) / 0.1);
}
.hover\:border-primary\/100:hover{
  border-color: hsl(var(--primary) / 1);
}
.hover\:border-primary\/15:hover{
  border-color: hsl(var(--primary) / 0.15);
}
.hover\:border-primary\/20:hover{
  border-color: hsl(var(--primary) / 0.2);
}
.hover\:border-primary\/25:hover{
  border-color: hsl(var(--primary) / 0.25);
}
.hover\:border-primary\/30:hover{
  border-color: hsl(var(--primary) / 0.3);
}
.hover\:border-primary\/35:hover{
  border-color: hsl(var(--primary) / 0.35);
}
.hover\:border-primary\/40:hover{
  border-color: hsl(var(--primary) / 0.4);
}
.hover\:border-primary\/45:hover{
  border-color: hsl(var(--primary) / 0.45);
}
.hover\:border-primary\/5:hover{
  border-color: hsl(var(--primary) / 0.05);
}
.hover\:border-primary\/50:hover{
  border-color: hsl(var(--primary) / 0.5);
}
.hover\:border-primary\/55:hover{
  border-color: hsl(var(--primary) / 0.55);
}
.hover\:border-primary\/60:hover{
  border-color: hsl(var(--primary) / 0.6);
}
.hover\:border-primary\/65:hover{
  border-color: hsl(var(--primary) / 0.65);
}
.hover\:border-primary\/70:hover{
  border-color: hsl(var(--primary) / 0.7);
}
.hover\:border-primary\/75:hover{
  border-color: hsl(var(--primary) / 0.75);
}
.hover\:border-primary\/80:hover{
  border-color: hsl(var(--primary) / 0.8);
}
.hover\:border-primary\/85:hover{
  border-color: hsl(var(--primary) / 0.85);
}
.hover\:border-primary\/90:hover{
  border-color: hsl(var(--primary) / 0.9);
}
.hover\:border-primary\/95:hover{
  border-color: hsl(var(--primary) / 0.95);
}
.hover\:border-purple-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-500\/30:hover{
  border-color: rgb(168 85 247 / 0.3);
}
.hover\:border-rose-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}
.hover\:border-secondary:hover{
  border-color: hsl(var(--secondary));
}
.hover\:border-secondary-foreground:hover{
  border-color: hsl(var(--secondary-foreground));
}
.hover\:border-secondary-foreground\/0:hover{
  border-color: hsl(var(--secondary-foreground) / 0);
}
.hover\:border-secondary-foreground\/10:hover{
  border-color: hsl(var(--secondary-foreground) / 0.1);
}
.hover\:border-secondary-foreground\/100:hover{
  border-color: hsl(var(--secondary-foreground) / 1);
}
.hover\:border-secondary-foreground\/15:hover{
  border-color: hsl(var(--secondary-foreground) / 0.15);
}
.hover\:border-secondary-foreground\/20:hover{
  border-color: hsl(var(--secondary-foreground) / 0.2);
}
.hover\:border-secondary-foreground\/25:hover{
  border-color: hsl(var(--secondary-foreground) / 0.25);
}
.hover\:border-secondary-foreground\/30:hover{
  border-color: hsl(var(--secondary-foreground) / 0.3);
}
.hover\:border-secondary-foreground\/35:hover{
  border-color: hsl(var(--secondary-foreground) / 0.35);
}
.hover\:border-secondary-foreground\/40:hover{
  border-color: hsl(var(--secondary-foreground) / 0.4);
}
.hover\:border-secondary-foreground\/45:hover{
  border-color: hsl(var(--secondary-foreground) / 0.45);
}
.hover\:border-secondary-foreground\/5:hover{
  border-color: hsl(var(--secondary-foreground) / 0.05);
}
.hover\:border-secondary-foreground\/50:hover{
  border-color: hsl(var(--secondary-foreground) / 0.5);
}
.hover\:border-secondary-foreground\/55:hover{
  border-color: hsl(var(--secondary-foreground) / 0.55);
}
.hover\:border-secondary-foreground\/60:hover{
  border-color: hsl(var(--secondary-foreground) / 0.6);
}
.hover\:border-secondary-foreground\/65:hover{
  border-color: hsl(var(--secondary-foreground) / 0.65);
}
.hover\:border-secondary-foreground\/70:hover{
  border-color: hsl(var(--secondary-foreground) / 0.7);
}
.hover\:border-secondary-foreground\/75:hover{
  border-color: hsl(var(--secondary-foreground) / 0.75);
}
.hover\:border-secondary-foreground\/80:hover{
  border-color: hsl(var(--secondary-foreground) / 0.8);
}
.hover\:border-secondary-foreground\/85:hover{
  border-color: hsl(var(--secondary-foreground) / 0.85);
}
.hover\:border-secondary-foreground\/90:hover{
  border-color: hsl(var(--secondary-foreground) / 0.9);
}
.hover\:border-secondary-foreground\/95:hover{
  border-color: hsl(var(--secondary-foreground) / 0.95);
}
.hover\:border-secondary\/0:hover{
  border-color: hsl(var(--secondary) / 0);
}
.hover\:border-secondary\/10:hover{
  border-color: hsl(var(--secondary) / 0.1);
}
.hover\:border-secondary\/100:hover{
  border-color: hsl(var(--secondary) / 1);
}
.hover\:border-secondary\/15:hover{
  border-color: hsl(var(--secondary) / 0.15);
}
.hover\:border-secondary\/20:hover{
  border-color: hsl(var(--secondary) / 0.2);
}
.hover\:border-secondary\/25:hover{
  border-color: hsl(var(--secondary) / 0.25);
}
.hover\:border-secondary\/30:hover{
  border-color: hsl(var(--secondary) / 0.3);
}
.hover\:border-secondary\/35:hover{
  border-color: hsl(var(--secondary) / 0.35);
}
.hover\:border-secondary\/40:hover{
  border-color: hsl(var(--secondary) / 0.4);
}
.hover\:border-secondary\/45:hover{
  border-color: hsl(var(--secondary) / 0.45);
}
.hover\:border-secondary\/5:hover{
  border-color: hsl(var(--secondary) / 0.05);
}
.hover\:border-secondary\/50:hover{
  border-color: hsl(var(--secondary) / 0.5);
}
.hover\:border-secondary\/55:hover{
  border-color: hsl(var(--secondary) / 0.55);
}
.hover\:border-secondary\/60:hover{
  border-color: hsl(var(--secondary) / 0.6);
}
.hover\:border-secondary\/65:hover{
  border-color: hsl(var(--secondary) / 0.65);
}
.hover\:border-secondary\/70:hover{
  border-color: hsl(var(--secondary) / 0.7);
}
.hover\:border-secondary\/75:hover{
  border-color: hsl(var(--secondary) / 0.75);
}
.hover\:border-secondary\/80:hover{
  border-color: hsl(var(--secondary) / 0.8);
}
.hover\:border-secondary\/85:hover{
  border-color: hsl(var(--secondary) / 0.85);
}
.hover\:border-secondary\/90:hover{
  border-color: hsl(var(--secondary) / 0.9);
}
.hover\:border-secondary\/95:hover{
  border-color: hsl(var(--secondary) / 0.95);
}
.hover\:border-transparent:hover{
  border-color: transparent;
}
.hover\:bg-\[\#06B6D4\]\/20:hover{
  background-color: rgb(6 182 212 / 0.2);
}
.hover\:bg-\[\#0891B2\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#0A66C2\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(10 102 194 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#166FE5\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 111 229 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#1877F2\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(24 119 242 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#1DA1F2\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 161 242 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#4752C4\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(71 82 196 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#5A6B54\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(90 107 84 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#7A8C6E\]\/10:hover{
  background-color: rgb(122 140 110 / 0.1);
}
.hover\:bg-\[\#9ecece\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(158 206 206 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#A8B5A0\]\/10:hover{
  background-color: rgb(168 181 160 / 0.1);
}
.hover\:bg-\[\#A8B5A0\]\/5:hover{
  background-color: rgb(168 181 160 / 0.05);
}
.hover\:bg-\[\#B2D8D8\]\/10:hover{
  background-color: rgb(178 216 216 / 0.1);
}
.hover\:bg-\[\#C4785A\]\/90:hover{
  background-color: rgb(196 120 90 / 0.9);
}
.hover\:bg-\[\#F0F4EE\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(240 244 238 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#F5F1E8\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 241 232 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#F5F3ED\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 237 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#F5F9F5\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 249 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#FFF9F5\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 249 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-accent:hover{
  background-color: hsl(var(--accent));
}
.hover\:bg-accent-foreground:hover{
  background-color: hsl(var(--accent-foreground));
}
.hover\:bg-accent-foreground\/0:hover{
  background-color: hsl(var(--accent-foreground) / 0);
}
.hover\:bg-accent-foreground\/10:hover{
  background-color: hsl(var(--accent-foreground) / 0.1);
}
.hover\:bg-accent-foreground\/100:hover{
  background-color: hsl(var(--accent-foreground) / 1);
}
.hover\:bg-accent-foreground\/15:hover{
  background-color: hsl(var(--accent-foreground) / 0.15);
}
.hover\:bg-accent-foreground\/20:hover{
  background-color: hsl(var(--accent-foreground) / 0.2);
}
.hover\:bg-accent-foreground\/25:hover{
  background-color: hsl(var(--accent-foreground) / 0.25);
}
.hover\:bg-accent-foreground\/30:hover{
  background-color: hsl(var(--accent-foreground) / 0.3);
}
.hover\:bg-accent-foreground\/35:hover{
  background-color: hsl(var(--accent-foreground) / 0.35);
}
.hover\:bg-accent-foreground\/40:hover{
  background-color: hsl(var(--accent-foreground) / 0.4);
}
.hover\:bg-accent-foreground\/45:hover{
  background-color: hsl(var(--accent-foreground) / 0.45);
}
.hover\:bg-accent-foreground\/5:hover{
  background-color: hsl(var(--accent-foreground) / 0.05);
}
.hover\:bg-accent-foreground\/50:hover{
  background-color: hsl(var(--accent-foreground) / 0.5);
}
.hover\:bg-accent-foreground\/55:hover{
  background-color: hsl(var(--accent-foreground) / 0.55);
}
.hover\:bg-accent-foreground\/60:hover{
  background-color: hsl(var(--accent-foreground) / 0.6);
}
.hover\:bg-accent-foreground\/65:hover{
  background-color: hsl(var(--accent-foreground) / 0.65);
}
.hover\:bg-accent-foreground\/70:hover{
  background-color: hsl(var(--accent-foreground) / 0.7);
}
.hover\:bg-accent-foreground\/75:hover{
  background-color: hsl(var(--accent-foreground) / 0.75);
}
.hover\:bg-accent-foreground\/80:hover{
  background-color: hsl(var(--accent-foreground) / 0.8);
}
.hover\:bg-accent-foreground\/85:hover{
  background-color: hsl(var(--accent-foreground) / 0.85);
}
.hover\:bg-accent-foreground\/90:hover{
  background-color: hsl(var(--accent-foreground) / 0.9);
}
.hover\:bg-accent-foreground\/95:hover{
  background-color: hsl(var(--accent-foreground) / 0.95);
}
.hover\:bg-accent\/0:hover{
  background-color: hsl(var(--accent) / 0);
}
.hover\:bg-accent\/10:hover{
  background-color: hsl(var(--accent) / 0.1);
}
.hover\:bg-accent\/100:hover{
  background-color: hsl(var(--accent) / 1);
}
.hover\:bg-accent\/15:hover{
  background-color: hsl(var(--accent) / 0.15);
}
.hover\:bg-accent\/20:hover{
  background-color: hsl(var(--accent) / 0.2);
}
.hover\:bg-accent\/25:hover{
  background-color: hsl(var(--accent) / 0.25);
}
.hover\:bg-accent\/30:hover{
  background-color: hsl(var(--accent) / 0.3);
}
.hover\:bg-accent\/35:hover{
  background-color: hsl(var(--accent) / 0.35);
}
.hover\:bg-accent\/40:hover{
  background-color: hsl(var(--accent) / 0.4);
}
.hover\:bg-accent\/45:hover{
  background-color: hsl(var(--accent) / 0.45);
}
.hover\:bg-accent\/5:hover{
  background-color: hsl(var(--accent) / 0.05);
}
.hover\:bg-accent\/50:hover{
  background-color: hsl(var(--accent) / 0.5);
}
.hover\:bg-accent\/55:hover{
  background-color: hsl(var(--accent) / 0.55);
}
.hover\:bg-accent\/60:hover{
  background-color: hsl(var(--accent) / 0.6);
}
.hover\:bg-accent\/65:hover{
  background-color: hsl(var(--accent) / 0.65);
}
.hover\:bg-accent\/70:hover{
  background-color: hsl(var(--accent) / 0.7);
}
.hover\:bg-accent\/75:hover{
  background-color: hsl(var(--accent) / 0.75);
}
.hover\:bg-accent\/80:hover{
  background-color: hsl(var(--accent) / 0.8);
}
.hover\:bg-accent\/85:hover{
  background-color: hsl(var(--accent) / 0.85);
}
.hover\:bg-accent\/90:hover{
  background-color: hsl(var(--accent) / 0.9);
}
.hover\:bg-accent\/95:hover{
  background-color: hsl(var(--accent) / 0.95);
}
.hover\:bg-black:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.hover\:bg-black\/80:hover{
  background-color: rgb(0 0 0 / 0.8);
}
.hover\:bg-blue-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-card\/90:hover{
  background-color: hsl(var(--card) / 0.9);
}
.hover\:bg-destructive:hover{
  background-color: hsl(var(--destructive));
}
.hover\:bg-destructive-foreground:hover{
  background-color: hsl(var(--destructive-foreground));
}
.hover\:bg-destructive-foreground\/0:hover{
  background-color: hsl(var(--destructive-foreground) / 0);
}
.hover\:bg-destructive-foreground\/10:hover{
  background-color: hsl(var(--destructive-foreground) / 0.1);
}
.hover\:bg-destructive-foreground\/100:hover{
  background-color: hsl(var(--destructive-foreground) / 1);
}
.hover\:bg-destructive-foreground\/15:hover{
  background-color: hsl(var(--destructive-foreground) / 0.15);
}
.hover\:bg-destructive-foreground\/20:hover{
  background-color: hsl(var(--destructive-foreground) / 0.2);
}
.hover\:bg-destructive-foreground\/25:hover{
  background-color: hsl(var(--destructive-foreground) / 0.25);
}
.hover\:bg-destructive-foreground\/30:hover{
  background-color: hsl(var(--destructive-foreground) / 0.3);
}
.hover\:bg-destructive-foreground\/35:hover{
  background-color: hsl(var(--destructive-foreground) / 0.35);
}
.hover\:bg-destructive-foreground\/40:hover{
  background-color: hsl(var(--destructive-foreground) / 0.4);
}
.hover\:bg-destructive-foreground\/45:hover{
  background-color: hsl(var(--destructive-foreground) / 0.45);
}
.hover\:bg-destructive-foreground\/5:hover{
  background-color: hsl(var(--destructive-foreground) / 0.05);
}
.hover\:bg-destructive-foreground\/50:hover{
  background-color: hsl(var(--destructive-foreground) / 0.5);
}
.hover\:bg-destructive-foreground\/55:hover{
  background-color: hsl(var(--destructive-foreground) / 0.55);
}
.hover\:bg-destructive-foreground\/60:hover{
  background-color: hsl(var(--destructive-foreground) / 0.6);
}
.hover\:bg-destructive-foreground\/65:hover{
  background-color: hsl(var(--destructive-foreground) / 0.65);
}
.hover\:bg-destructive-foreground\/70:hover{
  background-color: hsl(var(--destructive-foreground) / 0.7);
}
.hover\:bg-destructive-foreground\/75:hover{
  background-color: hsl(var(--destructive-foreground) / 0.75);
}
.hover\:bg-destructive-foreground\/80:hover{
  background-color: hsl(var(--destructive-foreground) / 0.8);
}
.hover\:bg-destructive-foreground\/85:hover{
  background-color: hsl(var(--destructive-foreground) / 0.85);
}
.hover\:bg-destructive-foreground\/90:hover{
  background-color: hsl(var(--destructive-foreground) / 0.9);
}
.hover\:bg-destructive-foreground\/95:hover{
  background-color: hsl(var(--destructive-foreground) / 0.95);
}
.hover\:bg-destructive\/0:hover{
  background-color: hsl(var(--destructive) / 0);
}
.hover\:bg-destructive\/10:hover{
  background-color: hsl(var(--destructive) / 0.1);
}
.hover\:bg-destructive\/100:hover{
  background-color: hsl(var(--destructive) / 1);
}
.hover\:bg-destructive\/15:hover{
  background-color: hsl(var(--destructive) / 0.15);
}
.hover\:bg-destructive\/20:hover{
  background-color: hsl(var(--destructive) / 0.2);
}
.hover\:bg-destructive\/25:hover{
  background-color: hsl(var(--destructive) / 0.25);
}
.hover\:bg-destructive\/30:hover{
  background-color: hsl(var(--destructive) / 0.3);
}
.hover\:bg-destructive\/35:hover{
  background-color: hsl(var(--destructive) / 0.35);
}
.hover\:bg-destructive\/40:hover{
  background-color: hsl(var(--destructive) / 0.4);
}
.hover\:bg-destructive\/45:hover{
  background-color: hsl(var(--destructive) / 0.45);
}
.hover\:bg-destructive\/5:hover{
  background-color: hsl(var(--destructive) / 0.05);
}
.hover\:bg-destructive\/50:hover{
  background-color: hsl(var(--destructive) / 0.5);
}
.hover\:bg-destructive\/55:hover{
  background-color: hsl(var(--destructive) / 0.55);
}
.hover\:bg-destructive\/60:hover{
  background-color: hsl(var(--destructive) / 0.6);
}
.hover\:bg-destructive\/65:hover{
  background-color: hsl(var(--destructive) / 0.65);
}
.hover\:bg-destructive\/70:hover{
  background-color: hsl(var(--destructive) / 0.7);
}
.hover\:bg-destructive\/75:hover{
  background-color: hsl(var(--destructive) / 0.75);
}
.hover\:bg-destructive\/80:hover{
  background-color: hsl(var(--destructive) / 0.8);
}
.hover\:bg-destructive\/85:hover{
  background-color: hsl(var(--destructive) / 0.85);
}
.hover\:bg-destructive\/90:hover{
  background-color: hsl(var(--destructive) / 0.9);
}
.hover\:bg-destructive\/95:hover{
  background-color: hsl(var(--destructive) / 0.95);
}
.hover\:bg-emerald-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hover\:bg-muted:hover{
  background-color: hsl(var(--muted));
}
.hover\:bg-muted-foreground:hover{
  background-color: hsl(var(--muted-foreground));
}
.hover\:bg-muted-foreground\/0:hover{
  background-color: hsl(var(--muted-foreground) / 0);
}
.hover\:bg-muted-foreground\/10:hover{
  background-color: hsl(var(--muted-foreground) / 0.1);
}
.hover\:bg-muted-foreground\/100:hover{
  background-color: hsl(var(--muted-foreground) / 1);
}
.hover\:bg-muted-foreground\/15:hover{
  background-color: hsl(var(--muted-foreground) / 0.15);
}
.hover\:bg-muted-foreground\/20:hover{
  background-color: hsl(var(--muted-foreground) / 0.2);
}
.hover\:bg-muted-foreground\/25:hover{
  background-color: hsl(var(--muted-foreground) / 0.25);
}
.hover\:bg-muted-foreground\/30:hover{
  background-color: hsl(var(--muted-foreground) / 0.3);
}
.hover\:bg-muted-foreground\/35:hover{
  background-color: hsl(var(--muted-foreground) / 0.35);
}
.hover\:bg-muted-foreground\/40:hover{
  background-color: hsl(var(--muted-foreground) / 0.4);
}
.hover\:bg-muted-foreground\/45:hover{
  background-color: hsl(var(--muted-foreground) / 0.45);
}
.hover\:bg-muted-foreground\/5:hover{
  background-color: hsl(var(--muted-foreground) / 0.05);
}
.hover\:bg-muted-foreground\/50:hover{
  background-color: hsl(var(--muted-foreground) / 0.5);
}
.hover\:bg-muted-foreground\/55:hover{
  background-color: hsl(var(--muted-foreground) / 0.55);
}
.hover\:bg-muted-foreground\/60:hover{
  background-color: hsl(var(--muted-foreground) / 0.6);
}
.hover\:bg-muted-foreground\/65:hover{
  background-color: hsl(var(--muted-foreground) / 0.65);
}
.hover\:bg-muted-foreground\/70:hover{
  background-color: hsl(var(--muted-foreground) / 0.7);
}
.hover\:bg-muted-foreground\/75:hover{
  background-color: hsl(var(--muted-foreground) / 0.75);
}
.hover\:bg-muted-foreground\/80:hover{
  background-color: hsl(var(--muted-foreground) / 0.8);
}
.hover\:bg-muted-foreground\/85:hover{
  background-color: hsl(var(--muted-foreground) / 0.85);
}
.hover\:bg-muted-foreground\/90:hover{
  background-color: hsl(var(--muted-foreground) / 0.9);
}
.hover\:bg-muted-foreground\/95:hover{
  background-color: hsl(var(--muted-foreground) / 0.95);
}
.hover\:bg-muted\/0:hover{
  background-color: hsl(var(--muted) / 0);
}
.hover\:bg-muted\/10:hover{
  background-color: hsl(var(--muted) / 0.1);
}
.hover\:bg-muted\/100:hover{
  background-color: hsl(var(--muted) / 1);
}
.hover\:bg-muted\/15:hover{
  background-color: hsl(var(--muted) / 0.15);
}
.hover\:bg-muted\/20:hover{
  background-color: hsl(var(--muted) / 0.2);
}
.hover\:bg-muted\/25:hover{
  background-color: hsl(var(--muted) / 0.25);
}
.hover\:bg-muted\/30:hover{
  background-color: hsl(var(--muted) / 0.3);
}
.hover\:bg-muted\/35:hover{
  background-color: hsl(var(--muted) / 0.35);
}
.hover\:bg-muted\/40:hover{
  background-color: hsl(var(--muted) / 0.4);
}
.hover\:bg-muted\/45:hover{
  background-color: hsl(var(--muted) / 0.45);
}
.hover\:bg-muted\/5:hover{
  background-color: hsl(var(--muted) / 0.05);
}
.hover\:bg-muted\/50:hover{
  background-color: hsl(var(--muted) / 0.5);
}
.hover\:bg-muted\/55:hover{
  background-color: hsl(var(--muted) / 0.55);
}
.hover\:bg-muted\/60:hover{
  background-color: hsl(var(--muted) / 0.6);
}
.hover\:bg-muted\/65:hover{
  background-color: hsl(var(--muted) / 0.65);
}
.hover\:bg-muted\/70:hover{
  background-color: hsl(var(--muted) / 0.7);
}
.hover\:bg-muted\/75:hover{
  background-color: hsl(var(--muted) / 0.75);
}
.hover\:bg-muted\/80:hover{
  background-color: hsl(var(--muted) / 0.8);
}
.hover\:bg-muted\/85:hover{
  background-color: hsl(var(--muted) / 0.85);
}
.hover\:bg-muted\/90:hover{
  background-color: hsl(var(--muted) / 0.9);
}
.hover\:bg-muted\/95:hover{
  background-color: hsl(var(--muted) / 0.95);
}
.hover\:bg-primary:hover{
  background-color: hsl(var(--primary));
}
.hover\:bg-primary-foreground:hover{
  background-color: hsl(var(--primary-foreground));
}
.hover\:bg-primary-foreground\/0:hover{
  background-color: hsl(var(--primary-foreground) / 0);
}
.hover\:bg-primary-foreground\/10:hover{
  background-color: hsl(var(--primary-foreground) / 0.1);
}
.hover\:bg-primary-foreground\/100:hover{
  background-color: hsl(var(--primary-foreground) / 1);
}
.hover\:bg-primary-foreground\/15:hover{
  background-color: hsl(var(--primary-foreground) / 0.15);
}
.hover\:bg-primary-foreground\/20:hover{
  background-color: hsl(var(--primary-foreground) / 0.2);
}
.hover\:bg-primary-foreground\/25:hover{
  background-color: hsl(var(--primary-foreground) / 0.25);
}
.hover\:bg-primary-foreground\/30:hover{
  background-color: hsl(var(--primary-foreground) / 0.3);
}
.hover\:bg-primary-foreground\/35:hover{
  background-color: hsl(var(--primary-foreground) / 0.35);
}
.hover\:bg-primary-foreground\/40:hover{
  background-color: hsl(var(--primary-foreground) / 0.4);
}
.hover\:bg-primary-foreground\/45:hover{
  background-color: hsl(var(--primary-foreground) / 0.45);
}
.hover\:bg-primary-foreground\/5:hover{
  background-color: hsl(var(--primary-foreground) / 0.05);
}
.hover\:bg-primary-foreground\/50:hover{
  background-color: hsl(var(--primary-foreground) / 0.5);
}
.hover\:bg-primary-foreground\/55:hover{
  background-color: hsl(var(--primary-foreground) / 0.55);
}
.hover\:bg-primary-foreground\/60:hover{
  background-color: hsl(var(--primary-foreground) / 0.6);
}
.hover\:bg-primary-foreground\/65:hover{
  background-color: hsl(var(--primary-foreground) / 0.65);
}
.hover\:bg-primary-foreground\/70:hover{
  background-color: hsl(var(--primary-foreground) / 0.7);
}
.hover\:bg-primary-foreground\/75:hover{
  background-color: hsl(var(--primary-foreground) / 0.75);
}
.hover\:bg-primary-foreground\/80:hover{
  background-color: hsl(var(--primary-foreground) / 0.8);
}
.hover\:bg-primary-foreground\/85:hover{
  background-color: hsl(var(--primary-foreground) / 0.85);
}
.hover\:bg-primary-foreground\/90:hover{
  background-color: hsl(var(--primary-foreground) / 0.9);
}
.hover\:bg-primary-foreground\/95:hover{
  background-color: hsl(var(--primary-foreground) / 0.95);
}
.hover\:bg-primary\/0:hover{
  background-color: hsl(var(--primary) / 0);
}
.hover\:bg-primary\/10:hover{
  background-color: hsl(var(--primary) / 0.1);
}
.hover\:bg-primary\/100:hover{
  background-color: hsl(var(--primary) / 1);
}
.hover\:bg-primary\/15:hover{
  background-color: hsl(var(--primary) / 0.15);
}
.hover\:bg-primary\/20:hover{
  background-color: hsl(var(--primary) / 0.2);
}
.hover\:bg-primary\/25:hover{
  background-color: hsl(var(--primary) / 0.25);
}
.hover\:bg-primary\/30:hover{
  background-color: hsl(var(--primary) / 0.3);
}
.hover\:bg-primary\/35:hover{
  background-color: hsl(var(--primary) / 0.35);
}
.hover\:bg-primary\/40:hover{
  background-color: hsl(var(--primary) / 0.4);
}
.hover\:bg-primary\/45:hover{
  background-color: hsl(var(--primary) / 0.45);
}
.hover\:bg-primary\/5:hover{
  background-color: hsl(var(--primary) / 0.05);
}
.hover\:bg-primary\/50:hover{
  background-color: hsl(var(--primary) / 0.5);
}
.hover\:bg-primary\/55:hover{
  background-color: hsl(var(--primary) / 0.55);
}
.hover\:bg-primary\/60:hover{
  background-color: hsl(var(--primary) / 0.6);
}
.hover\:bg-primary\/65:hover{
  background-color: hsl(var(--primary) / 0.65);
}
.hover\:bg-primary\/70:hover{
  background-color: hsl(var(--primary) / 0.7);
}
.hover\:bg-primary\/75:hover{
  background-color: hsl(var(--primary) / 0.75);
}
.hover\:bg-primary\/80:hover{
  background-color: hsl(var(--primary) / 0.8);
}
.hover\:bg-primary\/85:hover{
  background-color: hsl(var(--primary) / 0.85);
}
.hover\:bg-primary\/90:hover{
  background-color: hsl(var(--primary) / 0.9);
}
.hover\:bg-primary\/95:hover{
  background-color: hsl(var(--primary) / 0.95);
}
.hover\:bg-purple-500\/10:hover{
  background-color: rgb(168 85 247 / 0.1);
}
.hover\:bg-red-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-secondary:hover{
  background-color: hsl(var(--secondary));
}
.hover\:bg-secondary-foreground:hover{
  background-color: hsl(var(--secondary-foreground));
}
.hover\:bg-secondary-foreground\/0:hover{
  background-color: hsl(var(--secondary-foreground) / 0);
}
.hover\:bg-secondary-foreground\/10:hover{
  background-color: hsl(var(--secondary-foreground) / 0.1);
}
.hover\:bg-secondary-foreground\/100:hover{
  background-color: hsl(var(--secondary-foreground) / 1);
}
.hover\:bg-secondary-foreground\/15:hover{
  background-color: hsl(var(--secondary-foreground) / 0.15);
}
.hover\:bg-secondary-foreground\/20:hover{
  background-color: hsl(var(--secondary-foreground) / 0.2);
}
.hover\:bg-secondary-foreground\/25:hover{
  background-color: hsl(var(--secondary-foreground) / 0.25);
}
.hover\:bg-secondary-foreground\/30:hover{
  background-color: hsl(var(--secondary-foreground) / 0.3);
}
.hover\:bg-secondary-foreground\/35:hover{
  background-color: hsl(var(--secondary-foreground) / 0.35);
}
.hover\:bg-secondary-foreground\/40:hover{
  background-color: hsl(var(--secondary-foreground) / 0.4);
}
.hover\:bg-secondary-foreground\/45:hover{
  background-color: hsl(var(--secondary-foreground) / 0.45);
}
.hover\:bg-secondary-foreground\/5:hover{
  background-color: hsl(var(--secondary-foreground) / 0.05);
}
.hover\:bg-secondary-foreground\/50:hover{
  background-color: hsl(var(--secondary-foreground) / 0.5);
}
.hover\:bg-secondary-foreground\/55:hover{
  background-color: hsl(var(--secondary-foreground) / 0.55);
}
.hover\:bg-secondary-foreground\/60:hover{
  background-color: hsl(var(--secondary-foreground) / 0.6);
}
.hover\:bg-secondary-foreground\/65:hover{
  background-color: hsl(var(--secondary-foreground) / 0.65);
}
.hover\:bg-secondary-foreground\/70:hover{
  background-color: hsl(var(--secondary-foreground) / 0.7);
}
.hover\:bg-secondary-foreground\/75:hover{
  background-color: hsl(var(--secondary-foreground) / 0.75);
}
.hover\:bg-secondary-foreground\/80:hover{
  background-color: hsl(var(--secondary-foreground) / 0.8);
}
.hover\:bg-secondary-foreground\/85:hover{
  background-color: hsl(var(--secondary-foreground) / 0.85);
}
.hover\:bg-secondary-foreground\/90:hover{
  background-color: hsl(var(--secondary-foreground) / 0.9);
}
.hover\:bg-secondary-foreground\/95:hover{
  background-color: hsl(var(--secondary-foreground) / 0.95);
}
.hover\:bg-secondary\/0:hover{
  background-color: hsl(var(--secondary) / 0);
}
.hover\:bg-secondary\/10:hover{
  background-color: hsl(var(--secondary) / 0.1);
}
.hover\:bg-secondary\/100:hover{
  background-color: hsl(var(--secondary) / 1);
}
.hover\:bg-secondary\/15:hover{
  background-color: hsl(var(--secondary) / 0.15);
}
.hover\:bg-secondary\/20:hover{
  background-color: hsl(var(--secondary) / 0.2);
}
.hover\:bg-secondary\/25:hover{
  background-color: hsl(var(--secondary) / 0.25);
}
.hover\:bg-secondary\/30:hover{
  background-color: hsl(var(--secondary) / 0.3);
}
.hover\:bg-secondary\/35:hover{
  background-color: hsl(var(--secondary) / 0.35);
}
.hover\:bg-secondary\/40:hover{
  background-color: hsl(var(--secondary) / 0.4);
}
.hover\:bg-secondary\/45:hover{
  background-color: hsl(var(--secondary) / 0.45);
}
.hover\:bg-secondary\/5:hover{
  background-color: hsl(var(--secondary) / 0.05);
}
.hover\:bg-secondary\/50:hover{
  background-color: hsl(var(--secondary) / 0.5);
}
.hover\:bg-secondary\/55:hover{
  background-color: hsl(var(--secondary) / 0.55);
}
.hover\:bg-secondary\/60:hover{
  background-color: hsl(var(--secondary) / 0.6);
}
.hover\:bg-secondary\/65:hover{
  background-color: hsl(var(--secondary) / 0.65);
}
.hover\:bg-secondary\/70:hover{
  background-color: hsl(var(--secondary) / 0.7);
}
.hover\:bg-secondary\/75:hover{
  background-color: hsl(var(--secondary) / 0.75);
}
.hover\:bg-secondary\/80:hover{
  background-color: hsl(var(--secondary) / 0.8);
}
.hover\:bg-secondary\/85:hover{
  background-color: hsl(var(--secondary) / 0.85);
}
.hover\:bg-secondary\/90:hover{
  background-color: hsl(var(--secondary) / 0.9);
}
.hover\:bg-secondary\/95:hover{
  background-color: hsl(var(--secondary) / 0.95);
}
.hover\:bg-white\/10:hover{
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/20:hover{
  background-color: rgb(255 255 255 / 0.2);
}
.hover\:bg-white\/90:hover{
  background-color: rgb(255 255 255 / 0.9);
}
.hover\:bg-gradient-to-br:hover{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.hover\:from-\[\#00dddd\]:hover{
  --tw-gradient-from: #00dddd var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 221 221 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-\[\#5A6B54\]:hover{
  --tw-gradient-from: #5A6B54 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(90 107 84 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-\[\#833AB4\]:hover{
  --tw-gradient-from: #833AB4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(131 58 180 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-\[\#8FA888\]:hover{
  --tw-gradient-from: #8FA888 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(143 168 136 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-\[\#9AC2D8\]:hover{
  --tw-gradient-from: #9AC2D8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(154 194 216 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-cyan-600:hover{
  --tw-gradient-from: #0891b2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-purple-700:hover{
  --tw-gradient-from: #7e22ce var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(126 34 206 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:via-\[\#FD1D1D\]:hover{
  --tw-gradient-to: rgb(253 29 29 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #FD1D1D var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.hover\:via-purple-600:hover{
  --tw-gradient-to: rgb(147 51 234 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #9333ea var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.hover\:to-\[\#0066dd\]:hover{
  --tw-gradient-to: #0066dd var(--tw-gradient-to-position);
}
.hover\:to-\[\#7A8C6E\]:hover{
  --tw-gradient-to: #7A8C6E var(--tw-gradient-to-position);
}
.hover\:to-\[\#7A9A77\]:hover{
  --tw-gradient-to: #7A9A77 var(--tw-gradient-to-position);
}
.hover\:to-\[\#7AB0C8\]:hover{
  --tw-gradient-to: #7AB0C8 var(--tw-gradient-to-position);
}
.hover\:to-\[\#F77737\]:hover{
  --tw-gradient-to: #F77737 var(--tw-gradient-to-position);
}
.hover\:to-cyan-700:hover{
  --tw-gradient-to: #0e7490 var(--tw-gradient-to-position);
}
.hover\:to-pink-600:hover{
  --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
}
.hover\:to-purple-600:hover{
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.hover\:text-\[\#002147\]\/70:hover{
  color: rgb(0 33 71 / 0.7);
}
.hover\:text-\[\#3A5A3E\]:hover{
  --tw-text-opacity: 1;
  color: rgb(58 90 62 / var(--tw-text-opacity, 1));
}
.hover\:text-\[\#5A6B54\]:hover{
  --tw-text-opacity: 1;
  color: rgb(90 107 84 / var(--tw-text-opacity, 1));
}
.hover\:text-accent:hover{
  color: hsl(var(--accent));
}
.hover\:text-accent-foreground:hover{
  color: hsl(var(--accent-foreground));
}
.hover\:text-accent-foreground\/0:hover{
  color: hsl(var(--accent-foreground) / 0);
}
.hover\:text-accent-foreground\/10:hover{
  color: hsl(var(--accent-foreground) / 0.1);
}
.hover\:text-accent-foreground\/100:hover{
  color: hsl(var(--accent-foreground) / 1);
}
.hover\:text-accent-foreground\/15:hover{
  color: hsl(var(--accent-foreground) / 0.15);
}
.hover\:text-accent-foreground\/20:hover{
  color: hsl(var(--accent-foreground) / 0.2);
}
.hover\:text-accent-foreground\/25:hover{
  color: hsl(var(--accent-foreground) / 0.25);
}
.hover\:text-accent-foreground\/30:hover{
  color: hsl(var(--accent-foreground) / 0.3);
}
.hover\:text-accent-foreground\/35:hover{
  color: hsl(var(--accent-foreground) / 0.35);
}
.hover\:text-accent-foreground\/40:hover{
  color: hsl(var(--accent-foreground) / 0.4);
}
.hover\:text-accent-foreground\/45:hover{
  color: hsl(var(--accent-foreground) / 0.45);
}
.hover\:text-accent-foreground\/5:hover{
  color: hsl(var(--accent-foreground) / 0.05);
}
.hover\:text-accent-foreground\/50:hover{
  color: hsl(var(--accent-foreground) / 0.5);
}
.hover\:text-accent-foreground\/55:hover{
  color: hsl(var(--accent-foreground) / 0.55);
}
.hover\:text-accent-foreground\/60:hover{
  color: hsl(var(--accent-foreground) / 0.6);
}
.hover\:text-accent-foreground\/65:hover{
  color: hsl(var(--accent-foreground) / 0.65);
}
.hover\:text-accent-foreground\/70:hover{
  color: hsl(var(--accent-foreground) / 0.7);
}
.hover\:text-accent-foreground\/75:hover{
  color: hsl(var(--accent-foreground) / 0.75);
}
.hover\:text-accent-foreground\/80:hover{
  color: hsl(var(--accent-foreground) / 0.8);
}
.hover\:text-accent-foreground\/85:hover{
  color: hsl(var(--accent-foreground) / 0.85);
}
.hover\:text-accent-foreground\/90:hover{
  color: hsl(var(--accent-foreground) / 0.9);
}
.hover\:text-accent-foreground\/95:hover{
  color: hsl(var(--accent-foreground) / 0.95);
}
.hover\:text-accent\/0:hover{
  color: hsl(var(--accent) / 0);
}
.hover\:text-accent\/10:hover{
  color: hsl(var(--accent) / 0.1);
}
.hover\:text-accent\/100:hover{
  color: hsl(var(--accent) / 1);
}
.hover\:text-accent\/15:hover{
  color: hsl(var(--accent) / 0.15);
}
.hover\:text-accent\/20:hover{
  color: hsl(var(--accent) / 0.2);
}
.hover\:text-accent\/25:hover{
  color: hsl(var(--accent) / 0.25);
}
.hover\:text-accent\/30:hover{
  color: hsl(var(--accent) / 0.3);
}
.hover\:text-accent\/35:hover{
  color: hsl(var(--accent) / 0.35);
}
.hover\:text-accent\/40:hover{
  color: hsl(var(--accent) / 0.4);
}
.hover\:text-accent\/45:hover{
  color: hsl(var(--accent) / 0.45);
}
.hover\:text-accent\/5:hover{
  color: hsl(var(--accent) / 0.05);
}
.hover\:text-accent\/50:hover{
  color: hsl(var(--accent) / 0.5);
}
.hover\:text-accent\/55:hover{
  color: hsl(var(--accent) / 0.55);
}
.hover\:text-accent\/60:hover{
  color: hsl(var(--accent) / 0.6);
}
.hover\:text-accent\/65:hover{
  color: hsl(var(--accent) / 0.65);
}
.hover\:text-accent\/70:hover{
  color: hsl(var(--accent) / 0.7);
}
.hover\:text-accent\/75:hover{
  color: hsl(var(--accent) / 0.75);
}
.hover\:text-accent\/80:hover{
  color: hsl(var(--accent) / 0.8);
}
.hover\:text-accent\/85:hover{
  color: hsl(var(--accent) / 0.85);
}
.hover\:text-accent\/90:hover{
  color: hsl(var(--accent) / 0.9);
}
.hover\:text-accent\/95:hover{
  color: hsl(var(--accent) / 0.95);
}
.hover\:text-blue-700:hover{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-800:hover{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.hover\:text-cyan-700:hover{
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / var(--tw-text-opacity, 1));
}
.hover\:text-destructive:hover{
  color: hsl(var(--destructive));
}
.hover\:text-destructive-foreground:hover{
  color: hsl(var(--destructive-foreground));
}
.hover\:text-destructive-foreground\/0:hover{
  color: hsl(var(--destructive-foreground) / 0);
}
.hover\:text-destructive-foreground\/10:hover{
  color: hsl(var(--destructive-foreground) / 0.1);
}
.hover\:text-destructive-foreground\/100:hover{
  color: hsl(var(--destructive-foreground) / 1);
}
.hover\:text-destructive-foreground\/15:hover{
  color: hsl(var(--destructive-foreground) / 0.15);
}
.hover\:text-destructive-foreground\/20:hover{
  color: hsl(var(--destructive-foreground) / 0.2);
}
.hover\:text-destructive-foreground\/25:hover{
  color: hsl(var(--destructive-foreground) / 0.25);
}
.hover\:text-destructive-foreground\/30:hover{
  color: hsl(var(--destructive-foreground) / 0.3);
}
.hover\:text-destructive-foreground\/35:hover{
  color: hsl(var(--destructive-foreground) / 0.35);
}
.hover\:text-destructive-foreground\/40:hover{
  color: hsl(var(--destructive-foreground) / 0.4);
}
.hover\:text-destructive-foreground\/45:hover{
  color: hsl(var(--destructive-foreground) / 0.45);
}
.hover\:text-destructive-foreground\/5:hover{
  color: hsl(var(--destructive-foreground) / 0.05);
}
.hover\:text-destructive-foreground\/50:hover{
  color: hsl(var(--destructive-foreground) / 0.5);
}
.hover\:text-destructive-foreground\/55:hover{
  color: hsl(var(--destructive-foreground) / 0.55);
}
.hover\:text-destructive-foreground\/60:hover{
  color: hsl(var(--destructive-foreground) / 0.6);
}
.hover\:text-destructive-foreground\/65:hover{
  color: hsl(var(--destructive-foreground) / 0.65);
}
.hover\:text-destructive-foreground\/70:hover{
  color: hsl(var(--destructive-foreground) / 0.7);
}
.hover\:text-destructive-foreground\/75:hover{
  color: hsl(var(--destructive-foreground) / 0.75);
}
.hover\:text-destructive-foreground\/80:hover{
  color: hsl(var(--destructive-foreground) / 0.8);
}
.hover\:text-destructive-foreground\/85:hover{
  color: hsl(var(--destructive-foreground) / 0.85);
}
.hover\:text-destructive-foreground\/90:hover{
  color: hsl(var(--destructive-foreground) / 0.9);
}
.hover\:text-destructive-foreground\/95:hover{
  color: hsl(var(--destructive-foreground) / 0.95);
}
.hover\:text-destructive\/0:hover{
  color: hsl(var(--destructive) / 0);
}
.hover\:text-destructive\/10:hover{
  color: hsl(var(--destructive) / 0.1);
}
.hover\:text-destructive\/100:hover{
  color: hsl(var(--destructive) / 1);
}
.hover\:text-destructive\/15:hover{
  color: hsl(var(--destructive) / 0.15);
}
.hover\:text-destructive\/20:hover{
  color: hsl(var(--destructive) / 0.2);
}
.hover\:text-destructive\/25:hover{
  color: hsl(var(--destructive) / 0.25);
}
.hover\:text-destructive\/30:hover{
  color: hsl(var(--destructive) / 0.3);
}
.hover\:text-destructive\/35:hover{
  color: hsl(var(--destructive) / 0.35);
}
.hover\:text-destructive\/40:hover{
  color: hsl(var(--destructive) / 0.4);
}
.hover\:text-destructive\/45:hover{
  color: hsl(var(--destructive) / 0.45);
}
.hover\:text-destructive\/5:hover{
  color: hsl(var(--destructive) / 0.05);
}
.hover\:text-destructive\/50:hover{
  color: hsl(var(--destructive) / 0.5);
}
.hover\:text-destructive\/55:hover{
  color: hsl(var(--destructive) / 0.55);
}
.hover\:text-destructive\/60:hover{
  color: hsl(var(--destructive) / 0.6);
}
.hover\:text-destructive\/65:hover{
  color: hsl(var(--destructive) / 0.65);
}
.hover\:text-destructive\/70:hover{
  color: hsl(var(--destructive) / 0.7);
}
.hover\:text-destructive\/75:hover{
  color: hsl(var(--destructive) / 0.75);
}
.hover\:text-destructive\/80:hover{
  color: hsl(var(--destructive) / 0.8);
}
.hover\:text-destructive\/85:hover{
  color: hsl(var(--destructive) / 0.85);
}
.hover\:text-destructive\/90:hover{
  color: hsl(var(--destructive) / 0.9);
}
.hover\:text-destructive\/95:hover{
  color: hsl(var(--destructive) / 0.95);
}
.hover\:text-foreground:hover{
  color: hsl(var(--foreground));
}
.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-muted:hover{
  color: hsl(var(--muted));
}
.hover\:text-muted-foreground:hover{
  color: hsl(var(--muted-foreground));
}
.hover\:text-muted-foreground\/0:hover{
  color: hsl(var(--muted-foreground) / 0);
}
.hover\:text-muted-foreground\/10:hover{
  color: hsl(var(--muted-foreground) / 0.1);
}
.hover\:text-muted-foreground\/100:hover{
  color: hsl(var(--muted-foreground) / 1);
}
.hover\:text-muted-foreground\/15:hover{
  color: hsl(var(--muted-foreground) / 0.15);
}
.hover\:text-muted-foreground\/20:hover{
  color: hsl(var(--muted-foreground) / 0.2);
}
.hover\:text-muted-foreground\/25:hover{
  color: hsl(var(--muted-foreground) / 0.25);
}
.hover\:text-muted-foreground\/30:hover{
  color: hsl(var(--muted-foreground) / 0.3);
}
.hover\:text-muted-foreground\/35:hover{
  color: hsl(var(--muted-foreground) / 0.35);
}
.hover\:text-muted-foreground\/40:hover{
  color: hsl(var(--muted-foreground) / 0.4);
}
.hover\:text-muted-foreground\/45:hover{
  color: hsl(var(--muted-foreground) / 0.45);
}
.hover\:text-muted-foreground\/5:hover{
  color: hsl(var(--muted-foreground) / 0.05);
}
.hover\:text-muted-foreground\/50:hover{
  color: hsl(var(--muted-foreground) / 0.5);
}
.hover\:text-muted-foreground\/55:hover{
  color: hsl(var(--muted-foreground) / 0.55);
}
.hover\:text-muted-foreground\/60:hover{
  color: hsl(var(--muted-foreground) / 0.6);
}
.hover\:text-muted-foreground\/65:hover{
  color: hsl(var(--muted-foreground) / 0.65);
}
.hover\:text-muted-foreground\/70:hover{
  color: hsl(var(--muted-foreground) / 0.7);
}
.hover\:text-muted-foreground\/75:hover{
  color: hsl(var(--muted-foreground) / 0.75);
}
.hover\:text-muted-foreground\/80:hover{
  color: hsl(var(--muted-foreground) / 0.8);
}
.hover\:text-muted-foreground\/85:hover{
  color: hsl(var(--muted-foreground) / 0.85);
}
.hover\:text-muted-foreground\/90:hover{
  color: hsl(var(--muted-foreground) / 0.9);
}
.hover\:text-muted-foreground\/95:hover{
  color: hsl(var(--muted-foreground) / 0.95);
}
.hover\:text-muted\/0:hover{
  color: hsl(var(--muted) / 0);
}
.hover\:text-muted\/10:hover{
  color: hsl(var(--muted) / 0.1);
}
.hover\:text-muted\/100:hover{
  color: hsl(var(--muted) / 1);
}
.hover\:text-muted\/15:hover{
  color: hsl(var(--muted) / 0.15);
}
.hover\:text-muted\/20:hover{
  color: hsl(var(--muted) / 0.2);
}
.hover\:text-muted\/25:hover{
  color: hsl(var(--muted) / 0.25);
}
.hover\:text-muted\/30:hover{
  color: hsl(var(--muted) / 0.3);
}
.hover\:text-muted\/35:hover{
  color: hsl(var(--muted) / 0.35);
}
.hover\:text-muted\/40:hover{
  color: hsl(var(--muted) / 0.4);
}
.hover\:text-muted\/45:hover{
  color: hsl(var(--muted) / 0.45);
}
.hover\:text-muted\/5:hover{
  color: hsl(var(--muted) / 0.05);
}
.hover\:text-muted\/50:hover{
  color: hsl(var(--muted) / 0.5);
}
.hover\:text-muted\/55:hover{
  color: hsl(var(--muted) / 0.55);
}
.hover\:text-muted\/60:hover{
  color: hsl(var(--muted) / 0.6);
}
.hover\:text-muted\/65:hover{
  color: hsl(var(--muted) / 0.65);
}
.hover\:text-muted\/70:hover{
  color: hsl(var(--muted) / 0.7);
}
.hover\:text-muted\/75:hover{
  color: hsl(var(--muted) / 0.75);
}
.hover\:text-muted\/80:hover{
  color: hsl(var(--muted) / 0.8);
}
.hover\:text-muted\/85:hover{
  color: hsl(var(--muted) / 0.85);
}
.hover\:text-muted\/90:hover{
  color: hsl(var(--muted) / 0.9);
}
.hover\:text-muted\/95:hover{
  color: hsl(var(--muted) / 0.95);
}
.hover\:text-orange-700:hover{
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.hover\:text-pink-700:hover{
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}
.hover\:text-primary:hover{
  color: hsl(var(--primary));
}
.hover\:text-primary-foreground:hover{
  color: hsl(var(--primary-foreground));
}
.hover\:text-primary-foreground\/0:hover{
  color: hsl(var(--primary-foreground) / 0);
}
.hover\:text-primary-foreground\/10:hover{
  color: hsl(var(--primary-foreground) / 0.1);
}
.hover\:text-primary-foreground\/100:hover{
  color: hsl(var(--primary-foreground) / 1);
}
.hover\:text-primary-foreground\/15:hover{
  color: hsl(var(--primary-foreground) / 0.15);
}
.hover\:text-primary-foreground\/20:hover{
  color: hsl(var(--primary-foreground) / 0.2);
}
.hover\:text-primary-foreground\/25:hover{
  color: hsl(var(--primary-foreground) / 0.25);
}
.hover\:text-primary-foreground\/30:hover{
  color: hsl(var(--primary-foreground) / 0.3);
}
.hover\:text-primary-foreground\/35:hover{
  color: hsl(var(--primary-foreground) / 0.35);
}
.hover\:text-primary-foreground\/40:hover{
  color: hsl(var(--primary-foreground) / 0.4);
}
.hover\:text-primary-foreground\/45:hover{
  color: hsl(var(--primary-foreground) / 0.45);
}
.hover\:text-primary-foreground\/5:hover{
  color: hsl(var(--primary-foreground) / 0.05);
}
.hover\:text-primary-foreground\/50:hover{
  color: hsl(var(--primary-foreground) / 0.5);
}
.hover\:text-primary-foreground\/55:hover{
  color: hsl(var(--primary-foreground) / 0.55);
}
.hover\:text-primary-foreground\/60:hover{
  color: hsl(var(--primary-foreground) / 0.6);
}
.hover\:text-primary-foreground\/65:hover{
  color: hsl(var(--primary-foreground) / 0.65);
}
.hover\:text-primary-foreground\/70:hover{
  color: hsl(var(--primary-foreground) / 0.7);
}
.hover\:text-primary-foreground\/75:hover{
  color: hsl(var(--primary-foreground) / 0.75);
}
.hover\:text-primary-foreground\/80:hover{
  color: hsl(var(--primary-foreground) / 0.8);
}
.hover\:text-primary-foreground\/85:hover{
  color: hsl(var(--primary-foreground) / 0.85);
}
.hover\:text-primary-foreground\/90:hover{
  color: hsl(var(--primary-foreground) / 0.9);
}
.hover\:text-primary-foreground\/95:hover{
  color: hsl(var(--primary-foreground) / 0.95);
}
.hover\:text-primary\/0:hover{
  color: hsl(var(--primary) / 0);
}
.hover\:text-primary\/10:hover{
  color: hsl(var(--primary) / 0.1);
}
.hover\:text-primary\/100:hover{
  color: hsl(var(--primary) / 1);
}
.hover\:text-primary\/15:hover{
  color: hsl(var(--primary) / 0.15);
}
.hover\:text-primary\/20:hover{
  color: hsl(var(--primary) / 0.2);
}
.hover\:text-primary\/25:hover{
  color: hsl(var(--primary) / 0.25);
}
.hover\:text-primary\/30:hover{
  color: hsl(var(--primary) / 0.3);
}
.hover\:text-primary\/35:hover{
  color: hsl(var(--primary) / 0.35);
}
.hover\:text-primary\/40:hover{
  color: hsl(var(--primary) / 0.4);
}
.hover\:text-primary\/45:hover{
  color: hsl(var(--primary) / 0.45);
}
.hover\:text-primary\/5:hover{
  color: hsl(var(--primary) / 0.05);
}
.hover\:text-primary\/50:hover{
  color: hsl(var(--primary) / 0.5);
}
.hover\:text-primary\/55:hover{
  color: hsl(var(--primary) / 0.55);
}
.hover\:text-primary\/60:hover{
  color: hsl(var(--primary) / 0.6);
}
.hover\:text-primary\/65:hover{
  color: hsl(var(--primary) / 0.65);
}
.hover\:text-primary\/70:hover{
  color: hsl(var(--primary) / 0.7);
}
.hover\:text-primary\/75:hover{
  color: hsl(var(--primary) / 0.75);
}
.hover\:text-primary\/80:hover{
  color: hsl(var(--primary) / 0.8);
}
.hover\:text-primary\/85:hover{
  color: hsl(var(--primary) / 0.85);
}
.hover\:text-primary\/90:hover{
  color: hsl(var(--primary) / 0.9);
}
.hover\:text-primary\/95:hover{
  color: hsl(var(--primary) / 0.95);
}
.hover\:text-purple-700:hover{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.hover\:text-red-400:hover{
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.hover\:text-secondary:hover{
  color: hsl(var(--secondary));
}
.hover\:text-secondary-foreground:hover{
  color: hsl(var(--secondary-foreground));
}
.hover\:text-secondary-foreground\/0:hover{
  color: hsl(var(--secondary-foreground) / 0);
}
.hover\:text-secondary-foreground\/10:hover{
  color: hsl(var(--secondary-foreground) / 0.1);
}
.hover\:text-secondary-foreground\/100:hover{
  color: hsl(var(--secondary-foreground) / 1);
}
.hover\:text-secondary-foreground\/15:hover{
  color: hsl(var(--secondary-foreground) / 0.15);
}
.hover\:text-secondary-foreground\/20:hover{
  color: hsl(var(--secondary-foreground) / 0.2);
}
.hover\:text-secondary-foreground\/25:hover{
  color: hsl(var(--secondary-foreground) / 0.25);
}
.hover\:text-secondary-foreground\/30:hover{
  color: hsl(var(--secondary-foreground) / 0.3);
}
.hover\:text-secondary-foreground\/35:hover{
  color: hsl(var(--secondary-foreground) / 0.35);
}
.hover\:text-secondary-foreground\/40:hover{
  color: hsl(var(--secondary-foreground) / 0.4);
}
.hover\:text-secondary-foreground\/45:hover{
  color: hsl(var(--secondary-foreground) / 0.45);
}
.hover\:text-secondary-foreground\/5:hover{
  color: hsl(var(--secondary-foreground) / 0.05);
}
.hover\:text-secondary-foreground\/50:hover{
  color: hsl(var(--secondary-foreground) / 0.5);
}
.hover\:text-secondary-foreground\/55:hover{
  color: hsl(var(--secondary-foreground) / 0.55);
}
.hover\:text-secondary-foreground\/60:hover{
  color: hsl(var(--secondary-foreground) / 0.6);
}
.hover\:text-secondary-foreground\/65:hover{
  color: hsl(var(--secondary-foreground) / 0.65);
}
.hover\:text-secondary-foreground\/70:hover{
  color: hsl(var(--secondary-foreground) / 0.7);
}
.hover\:text-secondary-foreground\/75:hover{
  color: hsl(var(--secondary-foreground) / 0.75);
}
.hover\:text-secondary-foreground\/80:hover{
  color: hsl(var(--secondary-foreground) / 0.8);
}
.hover\:text-secondary-foreground\/85:hover{
  color: hsl(var(--secondary-foreground) / 0.85);
}
.hover\:text-secondary-foreground\/90:hover{
  color: hsl(var(--secondary-foreground) / 0.9);
}
.hover\:text-secondary-foreground\/95:hover{
  color: hsl(var(--secondary-foreground) / 0.95);
}
.hover\:text-secondary\/0:hover{
  color: hsl(var(--secondary) / 0);
}
.hover\:text-secondary\/10:hover{
  color: hsl(var(--secondary) / 0.1);
}
.hover\:text-secondary\/100:hover{
  color: hsl(var(--secondary) / 1);
}
.hover\:text-secondary\/15:hover{
  color: hsl(var(--secondary) / 0.15);
}
.hover\:text-secondary\/20:hover{
  color: hsl(var(--secondary) / 0.2);
}
.hover\:text-secondary\/25:hover{
  color: hsl(var(--secondary) / 0.25);
}
.hover\:text-secondary\/30:hover{
  color: hsl(var(--secondary) / 0.3);
}
.hover\:text-secondary\/35:hover{
  color: hsl(var(--secondary) / 0.35);
}
.hover\:text-secondary\/40:hover{
  color: hsl(var(--secondary) / 0.4);
}
.hover\:text-secondary\/45:hover{
  color: hsl(var(--secondary) / 0.45);
}
.hover\:text-secondary\/5:hover{
  color: hsl(var(--secondary) / 0.05);
}
.hover\:text-secondary\/50:hover{
  color: hsl(var(--secondary) / 0.5);
}
.hover\:text-secondary\/55:hover{
  color: hsl(var(--secondary) / 0.55);
}
.hover\:text-secondary\/60:hover{
  color: hsl(var(--secondary) / 0.6);
}
.hover\:text-secondary\/65:hover{
  color: hsl(var(--secondary) / 0.65);
}
.hover\:text-secondary\/70:hover{
  color: hsl(var(--secondary) / 0.7);
}
.hover\:text-secondary\/75:hover{
  color: hsl(var(--secondary) / 0.75);
}
.hover\:text-secondary\/80:hover{
  color: hsl(var(--secondary) / 0.8);
}
.hover\:text-secondary\/85:hover{
  color: hsl(var(--secondary) / 0.85);
}
.hover\:text-secondary\/90:hover{
  color: hsl(var(--secondary) / 0.9);
}
.hover\:text-secondary\/95:hover{
  color: hsl(var(--secondary) / 0.95);
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.hover\:opacity-80:hover{
  opacity: 0.8;
}
.hover\:opacity-90:hover{
  opacity: 0.9;
}
.hover\:shadow-2xl:hover{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-\[4px_4px_0px_rgba\(0\2c 0\2c 0\2c 0\.3\)\]:hover{
  --tw-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  --tw-shadow-colored: 4px 4px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-\[5px_5px_0px_\#FFB7C5\]:hover{
  --tw-shadow: 5px 5px 0px #FFB7C5;
  --tw-shadow-colored: 5px 5px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-\[8px_8px_0px_rgba\(0\2c 0\2c 0\2c 0\.3\)\]:hover{
  --tw-shadow: 8px 8px 0px rgba(0,0,0,0.3);
  --tw-shadow-colored: 8px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-primary\/30:hover{
  --tw-shadow-color: hsl(var(--primary) / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-primary\/40:hover{
  --tw-shadow-color: hsl(var(--primary) / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:after\:w-full:hover::after{
  content: var(--tw-content);
  width: 100%;
}
.focus\:border-\[\#7A8C6E\]:focus{
  --tw-border-opacity: 1;
  border-color: rgb(122 140 110 / var(--tw-border-opacity, 1));
}
.focus\:border-accent:focus{
  border-color: hsl(var(--accent));
}
.focus\:border-accent-foreground:focus{
  border-color: hsl(var(--accent-foreground));
}
.focus\:border-accent-foreground\/0:focus{
  border-color: hsl(var(--accent-foreground) / 0);
}
.focus\:border-accent-foreground\/10:focus{
  border-color: hsl(var(--accent-foreground) / 0.1);
}
.focus\:border-accent-foreground\/100:focus{
  border-color: hsl(var(--accent-foreground) / 1);
}
.focus\:border-accent-foreground\/15:focus{
  border-color: hsl(var(--accent-foreground) / 0.15);
}
.focus\:border-accent-foreground\/20:focus{
  border-color: hsl(var(--accent-foreground) / 0.2);
}
.focus\:border-accent-foreground\/25:focus{
  border-color: hsl(var(--accent-foreground) / 0.25);
}
.focus\:border-accent-foreground\/30:focus{
  border-color: hsl(var(--accent-foreground) / 0.3);
}
.focus\:border-accent-foreground\/35:focus{
  border-color: hsl(var(--accent-foreground) / 0.35);
}
.focus\:border-accent-foreground\/40:focus{
  border-color: hsl(var(--accent-foreground) / 0.4);
}
.focus\:border-accent-foreground\/45:focus{
  border-color: hsl(var(--accent-foreground) / 0.45);
}
.focus\:border-accent-foreground\/5:focus{
  border-color: hsl(var(--accent-foreground) / 0.05);
}
.focus\:border-accent-foreground\/50:focus{
  border-color: hsl(var(--accent-foreground) / 0.5);
}
.focus\:border-accent-foreground\/55:focus{
  border-color: hsl(var(--accent-foreground) / 0.55);
}
.focus\:border-accent-foreground\/60:focus{
  border-color: hsl(var(--accent-foreground) / 0.6);
}
.focus\:border-accent-foreground\/65:focus{
  border-color: hsl(var(--accent-foreground) / 0.65);
}
.focus\:border-accent-foreground\/70:focus{
  border-color: hsl(var(--accent-foreground) / 0.7);
}
.focus\:border-accent-foreground\/75:focus{
  border-color: hsl(var(--accent-foreground) / 0.75);
}
.focus\:border-accent-foreground\/80:focus{
  border-color: hsl(var(--accent-foreground) / 0.8);
}
.focus\:border-accent-foreground\/85:focus{
  border-color: hsl(var(--accent-foreground) / 0.85);
}
.focus\:border-accent-foreground\/90:focus{
  border-color: hsl(var(--accent-foreground) / 0.9);
}
.focus\:border-accent-foreground\/95:focus{
  border-color: hsl(var(--accent-foreground) / 0.95);
}
.focus\:border-accent\/0:focus{
  border-color: hsl(var(--accent) / 0);
}
.focus\:border-accent\/10:focus{
  border-color: hsl(var(--accent) / 0.1);
}
.focus\:border-accent\/100:focus{
  border-color: hsl(var(--accent) / 1);
}
.focus\:border-accent\/15:focus{
  border-color: hsl(var(--accent) / 0.15);
}
.focus\:border-accent\/20:focus{
  border-color: hsl(var(--accent) / 0.2);
}
.focus\:border-accent\/25:focus{
  border-color: hsl(var(--accent) / 0.25);
}
.focus\:border-accent\/30:focus{
  border-color: hsl(var(--accent) / 0.3);
}
.focus\:border-accent\/35:focus{
  border-color: hsl(var(--accent) / 0.35);
}
.focus\:border-accent\/40:focus{
  border-color: hsl(var(--accent) / 0.4);
}
.focus\:border-accent\/45:focus{
  border-color: hsl(var(--accent) / 0.45);
}
.focus\:border-accent\/5:focus{
  border-color: hsl(var(--accent) / 0.05);
}
.focus\:border-accent\/50:focus{
  border-color: hsl(var(--accent) / 0.5);
}
.focus\:border-accent\/55:focus{
  border-color: hsl(var(--accent) / 0.55);
}
.focus\:border-accent\/60:focus{
  border-color: hsl(var(--accent) / 0.6);
}
.focus\:border-accent\/65:focus{
  border-color: hsl(var(--accent) / 0.65);
}
.focus\:border-accent\/70:focus{
  border-color: hsl(var(--accent) / 0.7);
}
.focus\:border-accent\/75:focus{
  border-color: hsl(var(--accent) / 0.75);
}
.focus\:border-accent\/80:focus{
  border-color: hsl(var(--accent) / 0.8);
}
.focus\:border-accent\/85:focus{
  border-color: hsl(var(--accent) / 0.85);
}
.focus\:border-accent\/90:focus{
  border-color: hsl(var(--accent) / 0.9);
}
.focus\:border-accent\/95:focus{
  border-color: hsl(var(--accent) / 0.95);
}
.focus\:border-destructive:focus{
  border-color: hsl(var(--destructive));
}
.focus\:border-destructive-foreground:focus{
  border-color: hsl(var(--destructive-foreground));
}
.focus\:border-destructive-foreground\/0:focus{
  border-color: hsl(var(--destructive-foreground) / 0);
}
.focus\:border-destructive-foreground\/10:focus{
  border-color: hsl(var(--destructive-foreground) / 0.1);
}
.focus\:border-destructive-foreground\/100:focus{
  border-color: hsl(var(--destructive-foreground) / 1);
}
.focus\:border-destructive-foreground\/15:focus{
  border-color: hsl(var(--destructive-foreground) / 0.15);
}
.focus\:border-destructive-foreground\/20:focus{
  border-color: hsl(var(--destructive-foreground) / 0.2);
}
.focus\:border-destructive-foreground\/25:focus{
  border-color: hsl(var(--destructive-foreground) / 0.25);
}
.focus\:border-destructive-foreground\/30:focus{
  border-color: hsl(var(--destructive-foreground) / 0.3);
}
.focus\:border-destructive-foreground\/35:focus{
  border-color: hsl(var(--destructive-foreground) / 0.35);
}
.focus\:border-destructive-foreground\/40:focus{
  border-color: hsl(var(--destructive-foreground) / 0.4);
}
.focus\:border-destructive-foreground\/45:focus{
  border-color: hsl(var(--destructive-foreground) / 0.45);
}
.focus\:border-destructive-foreground\/5:focus{
  border-color: hsl(var(--destructive-foreground) / 0.05);
}
.focus\:border-destructive-foreground\/50:focus{
  border-color: hsl(var(--destructive-foreground) / 0.5);
}
.focus\:border-destructive-foreground\/55:focus{
  border-color: hsl(var(--destructive-foreground) / 0.55);
}
.focus\:border-destructive-foreground\/60:focus{
  border-color: hsl(var(--destructive-foreground) / 0.6);
}
.focus\:border-destructive-foreground\/65:focus{
  border-color: hsl(var(--destructive-foreground) / 0.65);
}
.focus\:border-destructive-foreground\/70:focus{
  border-color: hsl(var(--destructive-foreground) / 0.7);
}
.focus\:border-destructive-foreground\/75:focus{
  border-color: hsl(var(--destructive-foreground) / 0.75);
}
.focus\:border-destructive-foreground\/80:focus{
  border-color: hsl(var(--destructive-foreground) / 0.8);
}
.focus\:border-destructive-foreground\/85:focus{
  border-color: hsl(var(--destructive-foreground) / 0.85);
}
.focus\:border-destructive-foreground\/90:focus{
  border-color: hsl(var(--destructive-foreground) / 0.9);
}
.focus\:border-destructive-foreground\/95:focus{
  border-color: hsl(var(--destructive-foreground) / 0.95);
}
.focus\:border-destructive\/0:focus{
  border-color: hsl(var(--destructive) / 0);
}
.focus\:border-destructive\/10:focus{
  border-color: hsl(var(--destructive) / 0.1);
}
.focus\:border-destructive\/100:focus{
  border-color: hsl(var(--destructive) / 1);
}
.focus\:border-destructive\/15:focus{
  border-color: hsl(var(--destructive) / 0.15);
}
.focus\:border-destructive\/20:focus{
  border-color: hsl(var(--destructive) / 0.2);
}
.focus\:border-destructive\/25:focus{
  border-color: hsl(var(--destructive) / 0.25);
}
.focus\:border-destructive\/30:focus{
  border-color: hsl(var(--destructive) / 0.3);
}
.focus\:border-destructive\/35:focus{
  border-color: hsl(var(--destructive) / 0.35);
}
.focus\:border-destructive\/40:focus{
  border-color: hsl(var(--destructive) / 0.4);
}
.focus\:border-destructive\/45:focus{
  border-color: hsl(var(--destructive) / 0.45);
}
.focus\:border-destructive\/5:focus{
  border-color: hsl(var(--destructive) / 0.05);
}
.focus\:border-destructive\/50:focus{
  border-color: hsl(var(--destructive) / 0.5);
}
.focus\:border-destructive\/55:focus{
  border-color: hsl(var(--destructive) / 0.55);
}
.focus\:border-destructive\/60:focus{
  border-color: hsl(var(--destructive) / 0.6);
}
.focus\:border-destructive\/65:focus{
  border-color: hsl(var(--destructive) / 0.65);
}
.focus\:border-destructive\/70:focus{
  border-color: hsl(var(--destructive) / 0.7);
}
.focus\:border-destructive\/75:focus{
  border-color: hsl(var(--destructive) / 0.75);
}
.focus\:border-destructive\/80:focus{
  border-color: hsl(var(--destructive) / 0.8);
}
.focus\:border-destructive\/85:focus{
  border-color: hsl(var(--destructive) / 0.85);
}
.focus\:border-destructive\/90:focus{
  border-color: hsl(var(--destructive) / 0.9);
}
.focus\:border-destructive\/95:focus{
  border-color: hsl(var(--destructive) / 0.95);
}
.focus\:border-muted:focus{
  border-color: hsl(var(--muted));
}
.focus\:border-muted-foreground:focus{
  border-color: hsl(var(--muted-foreground));
}
.focus\:border-muted-foreground\/0:focus{
  border-color: hsl(var(--muted-foreground) / 0);
}
.focus\:border-muted-foreground\/10:focus{
  border-color: hsl(var(--muted-foreground) / 0.1);
}
.focus\:border-muted-foreground\/100:focus{
  border-color: hsl(var(--muted-foreground) / 1);
}
.focus\:border-muted-foreground\/15:focus{
  border-color: hsl(var(--muted-foreground) / 0.15);
}
.focus\:border-muted-foreground\/20:focus{
  border-color: hsl(var(--muted-foreground) / 0.2);
}
.focus\:border-muted-foreground\/25:focus{
  border-color: hsl(var(--muted-foreground) / 0.25);
}
.focus\:border-muted-foreground\/30:focus{
  border-color: hsl(var(--muted-foreground) / 0.3);
}
.focus\:border-muted-foreground\/35:focus{
  border-color: hsl(var(--muted-foreground) / 0.35);
}
.focus\:border-muted-foreground\/40:focus{
  border-color: hsl(var(--muted-foreground) / 0.4);
}
.focus\:border-muted-foreground\/45:focus{
  border-color: hsl(var(--muted-foreground) / 0.45);
}
.focus\:border-muted-foreground\/5:focus{
  border-color: hsl(var(--muted-foreground) / 0.05);
}
.focus\:border-muted-foreground\/50:focus{
  border-color: hsl(var(--muted-foreground) / 0.5);
}
.focus\:border-muted-foreground\/55:focus{
  border-color: hsl(var(--muted-foreground) / 0.55);
}
.focus\:border-muted-foreground\/60:focus{
  border-color: hsl(var(--muted-foreground) / 0.6);
}
.focus\:border-muted-foreground\/65:focus{
  border-color: hsl(var(--muted-foreground) / 0.65);
}
.focus\:border-muted-foreground\/70:focus{
  border-color: hsl(var(--muted-foreground) / 0.7);
}
.focus\:border-muted-foreground\/75:focus{
  border-color: hsl(var(--muted-foreground) / 0.75);
}
.focus\:border-muted-foreground\/80:focus{
  border-color: hsl(var(--muted-foreground) / 0.8);
}
.focus\:border-muted-foreground\/85:focus{
  border-color: hsl(var(--muted-foreground) / 0.85);
}
.focus\:border-muted-foreground\/90:focus{
  border-color: hsl(var(--muted-foreground) / 0.9);
}
.focus\:border-muted-foreground\/95:focus{
  border-color: hsl(var(--muted-foreground) / 0.95);
}
.focus\:border-muted\/0:focus{
  border-color: hsl(var(--muted) / 0);
}
.focus\:border-muted\/10:focus{
  border-color: hsl(var(--muted) / 0.1);
}
.focus\:border-muted\/100:focus{
  border-color: hsl(var(--muted) / 1);
}
.focus\:border-muted\/15:focus{
  border-color: hsl(var(--muted) / 0.15);
}
.focus\:border-muted\/20:focus{
  border-color: hsl(var(--muted) / 0.2);
}
.focus\:border-muted\/25:focus{
  border-color: hsl(var(--muted) / 0.25);
}
.focus\:border-muted\/30:focus{
  border-color: hsl(var(--muted) / 0.3);
}
.focus\:border-muted\/35:focus{
  border-color: hsl(var(--muted) / 0.35);
}
.focus\:border-muted\/40:focus{
  border-color: hsl(var(--muted) / 0.4);
}
.focus\:border-muted\/45:focus{
  border-color: hsl(var(--muted) / 0.45);
}
.focus\:border-muted\/5:focus{
  border-color: hsl(var(--muted) / 0.05);
}
.focus\:border-muted\/50:focus{
  border-color: hsl(var(--muted) / 0.5);
}
.focus\:border-muted\/55:focus{
  border-color: hsl(var(--muted) / 0.55);
}
.focus\:border-muted\/60:focus{
  border-color: hsl(var(--muted) / 0.6);
}
.focus\:border-muted\/65:focus{
  border-color: hsl(var(--muted) / 0.65);
}
.focus\:border-muted\/70:focus{
  border-color: hsl(var(--muted) / 0.7);
}
.focus\:border-muted\/75:focus{
  border-color: hsl(var(--muted) / 0.75);
}
.focus\:border-muted\/80:focus{
  border-color: hsl(var(--muted) / 0.8);
}
.focus\:border-muted\/85:focus{
  border-color: hsl(var(--muted) / 0.85);
}
.focus\:border-muted\/90:focus{
  border-color: hsl(var(--muted) / 0.9);
}
.focus\:border-muted\/95:focus{
  border-color: hsl(var(--muted) / 0.95);
}
.focus\:border-primary:focus{
  border-color: hsl(var(--primary));
}
.focus\:border-primary-foreground:focus{
  border-color: hsl(var(--primary-foreground));
}
.focus\:border-primary-foreground\/0:focus{
  border-color: hsl(var(--primary-foreground) / 0);
}
.focus\:border-primary-foreground\/10:focus{
  border-color: hsl(var(--primary-foreground) / 0.1);
}
.focus\:border-primary-foreground\/100:focus{
  border-color: hsl(var(--primary-foreground) / 1);
}
.focus\:border-primary-foreground\/15:focus{
  border-color: hsl(var(--primary-foreground) / 0.15);
}
.focus\:border-primary-foreground\/20:focus{
  border-color: hsl(var(--primary-foreground) / 0.2);
}
.focus\:border-primary-foreground\/25:focus{
  border-color: hsl(var(--primary-foreground) / 0.25);
}
.focus\:border-primary-foreground\/30:focus{
  border-color: hsl(var(--primary-foreground) / 0.3);
}
.focus\:border-primary-foreground\/35:focus{
  border-color: hsl(var(--primary-foreground) / 0.35);
}
.focus\:border-primary-foreground\/40:focus{
  border-color: hsl(var(--primary-foreground) / 0.4);
}
.focus\:border-primary-foreground\/45:focus{
  border-color: hsl(var(--primary-foreground) / 0.45);
}
.focus\:border-primary-foreground\/5:focus{
  border-color: hsl(var(--primary-foreground) / 0.05);
}
.focus\:border-primary-foreground\/50:focus{
  border-color: hsl(var(--primary-foreground) / 0.5);
}
.focus\:border-primary-foreground\/55:focus{
  border-color: hsl(var(--primary-foreground) / 0.55);
}
.focus\:border-primary-foreground\/60:focus{
  border-color: hsl(var(--primary-foreground) / 0.6);
}
.focus\:border-primary-foreground\/65:focus{
  border-color: hsl(var(--primary-foreground) / 0.65);
}
.focus\:border-primary-foreground\/70:focus{
  border-color: hsl(var(--primary-foreground) / 0.7);
}
.focus\:border-primary-foreground\/75:focus{
  border-color: hsl(var(--primary-foreground) / 0.75);
}
.focus\:border-primary-foreground\/80:focus{
  border-color: hsl(var(--primary-foreground) / 0.8);
}
.focus\:border-primary-foreground\/85:focus{
  border-color: hsl(var(--primary-foreground) / 0.85);
}
.focus\:border-primary-foreground\/90:focus{
  border-color: hsl(var(--primary-foreground) / 0.9);
}
.focus\:border-primary-foreground\/95:focus{
  border-color: hsl(var(--primary-foreground) / 0.95);
}
.focus\:border-primary\/0:focus{
  border-color: hsl(var(--primary) / 0);
}
.focus\:border-primary\/10:focus{
  border-color: hsl(var(--primary) / 0.1);
}
.focus\:border-primary\/100:focus{
  border-color: hsl(var(--primary) / 1);
}
.focus\:border-primary\/15:focus{
  border-color: hsl(var(--primary) / 0.15);
}
.focus\:border-primary\/20:focus{
  border-color: hsl(var(--primary) / 0.2);
}
.focus\:border-primary\/25:focus{
  border-color: hsl(var(--primary) / 0.25);
}
.focus\:border-primary\/30:focus{
  border-color: hsl(var(--primary) / 0.3);
}
.focus\:border-primary\/35:focus{
  border-color: hsl(var(--primary) / 0.35);
}
.focus\:border-primary\/40:focus{
  border-color: hsl(var(--primary) / 0.4);
}
.focus\:border-primary\/45:focus{
  border-color: hsl(var(--primary) / 0.45);
}
.focus\:border-primary\/5:focus{
  border-color: hsl(var(--primary) / 0.05);
}
.focus\:border-primary\/50:focus{
  border-color: hsl(var(--primary) / 0.5);
}
.focus\:border-primary\/55:focus{
  border-color: hsl(var(--primary) / 0.55);
}
.focus\:border-primary\/60:focus{
  border-color: hsl(var(--primary) / 0.6);
}
.focus\:border-primary\/65:focus{
  border-color: hsl(var(--primary) / 0.65);
}
.focus\:border-primary\/70:focus{
  border-color: hsl(var(--primary) / 0.7);
}
.focus\:border-primary\/75:focus{
  border-color: hsl(var(--primary) / 0.75);
}
.focus\:border-primary\/80:focus{
  border-color: hsl(var(--primary) / 0.8);
}
.focus\:border-primary\/85:focus{
  border-color: hsl(var(--primary) / 0.85);
}
.focus\:border-primary\/90:focus{
  border-color: hsl(var(--primary) / 0.9);
}
.focus\:border-primary\/95:focus{
  border-color: hsl(var(--primary) / 0.95);
}
.focus\:border-secondary:focus{
  border-color: hsl(var(--secondary));
}
.focus\:border-secondary-foreground:focus{
  border-color: hsl(var(--secondary-foreground));
}
.focus\:border-secondary-foreground\/0:focus{
  border-color: hsl(var(--secondary-foreground) / 0);
}
.focus\:border-secondary-foreground\/10:focus{
  border-color: hsl(var(--secondary-foreground) / 0.1);
}
.focus\:border-secondary-foreground\/100:focus{
  border-color: hsl(var(--secondary-foreground) / 1);
}
.focus\:border-secondary-foreground\/15:focus{
  border-color: hsl(var(--secondary-foreground) / 0.15);
}
.focus\:border-secondary-foreground\/20:focus{
  border-color: hsl(var(--secondary-foreground) / 0.2);
}
.focus\:border-secondary-foreground\/25:focus{
  border-color: hsl(var(--secondary-foreground) / 0.25);
}
.focus\:border-secondary-foreground\/30:focus{
  border-color: hsl(var(--secondary-foreground) / 0.3);
}
.focus\:border-secondary-foreground\/35:focus{
  border-color: hsl(var(--secondary-foreground) / 0.35);
}
.focus\:border-secondary-foreground\/40:focus{
  border-color: hsl(var(--secondary-foreground) / 0.4);
}
.focus\:border-secondary-foreground\/45:focus{
  border-color: hsl(var(--secondary-foreground) / 0.45);
}
.focus\:border-secondary-foreground\/5:focus{
  border-color: hsl(var(--secondary-foreground) / 0.05);
}
.focus\:border-secondary-foreground\/50:focus{
  border-color: hsl(var(--secondary-foreground) / 0.5);
}
.focus\:border-secondary-foreground\/55:focus{
  border-color: hsl(var(--secondary-foreground) / 0.55);
}
.focus\:border-secondary-foreground\/60:focus{
  border-color: hsl(var(--secondary-foreground) / 0.6);
}
.focus\:border-secondary-foreground\/65:focus{
  border-color: hsl(var(--secondary-foreground) / 0.65);
}
.focus\:border-secondary-foreground\/70:focus{
  border-color: hsl(var(--secondary-foreground) / 0.7);
}
.focus\:border-secondary-foreground\/75:focus{
  border-color: hsl(var(--secondary-foreground) / 0.75);
}
.focus\:border-secondary-foreground\/80:focus{
  border-color: hsl(var(--secondary-foreground) / 0.8);
}
.focus\:border-secondary-foreground\/85:focus{
  border-color: hsl(var(--secondary-foreground) / 0.85);
}
.focus\:border-secondary-foreground\/90:focus{
  border-color: hsl(var(--secondary-foreground) / 0.9);
}
.focus\:border-secondary-foreground\/95:focus{
  border-color: hsl(var(--secondary-foreground) / 0.95);
}
.focus\:border-secondary\/0:focus{
  border-color: hsl(var(--secondary) / 0);
}
.focus\:border-secondary\/10:focus{
  border-color: hsl(var(--secondary) / 0.1);
}
.focus\:border-secondary\/100:focus{
  border-color: hsl(var(--secondary) / 1);
}
.focus\:border-secondary\/15:focus{
  border-color: hsl(var(--secondary) / 0.15);
}
.focus\:border-secondary\/20:focus{
  border-color: hsl(var(--secondary) / 0.2);
}
.focus\:border-secondary\/25:focus{
  border-color: hsl(var(--secondary) / 0.25);
}
.focus\:border-secondary\/30:focus{
  border-color: hsl(var(--secondary) / 0.3);
}
.focus\:border-secondary\/35:focus{
  border-color: hsl(var(--secondary) / 0.35);
}
.focus\:border-secondary\/40:focus{
  border-color: hsl(var(--secondary) / 0.4);
}
.focus\:border-secondary\/45:focus{
  border-color: hsl(var(--secondary) / 0.45);
}
.focus\:border-secondary\/5:focus{
  border-color: hsl(var(--secondary) / 0.05);
}
.focus\:border-secondary\/50:focus{
  border-color: hsl(var(--secondary) / 0.5);
}
.focus\:border-secondary\/55:focus{
  border-color: hsl(var(--secondary) / 0.55);
}
.focus\:border-secondary\/60:focus{
  border-color: hsl(var(--secondary) / 0.6);
}
.focus\:border-secondary\/65:focus{
  border-color: hsl(var(--secondary) / 0.65);
}
.focus\:border-secondary\/70:focus{
  border-color: hsl(var(--secondary) / 0.7);
}
.focus\:border-secondary\/75:focus{
  border-color: hsl(var(--secondary) / 0.75);
}
.focus\:border-secondary\/80:focus{
  border-color: hsl(var(--secondary) / 0.8);
}
.focus\:border-secondary\/85:focus{
  border-color: hsl(var(--secondary) / 0.85);
}
.focus\:border-secondary\/90:focus{
  border-color: hsl(var(--secondary) / 0.9);
}
.focus\:border-secondary\/95:focus{
  border-color: hsl(var(--secondary) / 0.95);
}
.focus\:border-transparent:focus{
  border-color: transparent;
}
.focus\:bg-accent:focus{
  background-color: hsl(var(--accent));
}
.focus\:bg-accent-foreground:focus{
  background-color: hsl(var(--accent-foreground));
}
.focus\:bg-accent-foreground\/0:focus{
  background-color: hsl(var(--accent-foreground) / 0);
}
.focus\:bg-accent-foreground\/10:focus{
  background-color: hsl(var(--accent-foreground) / 0.1);
}
.focus\:bg-accent-foreground\/100:focus{
  background-color: hsl(var(--accent-foreground) / 1);
}
.focus\:bg-accent-foreground\/15:focus{
  background-color: hsl(var(--accent-foreground) / 0.15);
}
.focus\:bg-accent-foreground\/20:focus{
  background-color: hsl(var(--accent-foreground) / 0.2);
}
.focus\:bg-accent-foreground\/25:focus{
  background-color: hsl(var(--accent-foreground) / 0.25);
}
.focus\:bg-accent-foreground\/30:focus{
  background-color: hsl(var(--accent-foreground) / 0.3);
}
.focus\:bg-accent-foreground\/35:focus{
  background-color: hsl(var(--accent-foreground) / 0.35);
}
.focus\:bg-accent-foreground\/40:focus{
  background-color: hsl(var(--accent-foreground) / 0.4);
}
.focus\:bg-accent-foreground\/45:focus{
  background-color: hsl(var(--accent-foreground) / 0.45);
}
.focus\:bg-accent-foreground\/5:focus{
  background-color: hsl(var(--accent-foreground) / 0.05);
}
.focus\:bg-accent-foreground\/50:focus{
  background-color: hsl(var(--accent-foreground) / 0.5);
}
.focus\:bg-accent-foreground\/55:focus{
  background-color: hsl(var(--accent-foreground) / 0.55);
}
.focus\:bg-accent-foreground\/60:focus{
  background-color: hsl(var(--accent-foreground) / 0.6);
}
.focus\:bg-accent-foreground\/65:focus{
  background-color: hsl(var(--accent-foreground) / 0.65);
}
.focus\:bg-accent-foreground\/70:focus{
  background-color: hsl(var(--accent-foreground) / 0.7);
}
.focus\:bg-accent-foreground\/75:focus{
  background-color: hsl(var(--accent-foreground) / 0.75);
}
.focus\:bg-accent-foreground\/80:focus{
  background-color: hsl(var(--accent-foreground) / 0.8);
}
.focus\:bg-accent-foreground\/85:focus{
  background-color: hsl(var(--accent-foreground) / 0.85);
}
.focus\:bg-accent-foreground\/90:focus{
  background-color: hsl(var(--accent-foreground) / 0.9);
}
.focus\:bg-accent-foreground\/95:focus{
  background-color: hsl(var(--accent-foreground) / 0.95);
}
.focus\:bg-accent\/0:focus{
  background-color: hsl(var(--accent) / 0);
}
.focus\:bg-accent\/10:focus{
  background-color: hsl(var(--accent) / 0.1);
}
.focus\:bg-accent\/100:focus{
  background-color: hsl(var(--accent) / 1);
}
.focus\:bg-accent\/15:focus{
  background-color: hsl(var(--accent) / 0.15);
}
.focus\:bg-accent\/20:focus{
  background-color: hsl(var(--accent) / 0.2);
}
.focus\:bg-accent\/25:focus{
  background-color: hsl(var(--accent) / 0.25);
}
.focus\:bg-accent\/30:focus{
  background-color: hsl(var(--accent) / 0.3);
}
.focus\:bg-accent\/35:focus{
  background-color: hsl(var(--accent) / 0.35);
}
.focus\:bg-accent\/40:focus{
  background-color: hsl(var(--accent) / 0.4);
}
.focus\:bg-accent\/45:focus{
  background-color: hsl(var(--accent) / 0.45);
}
.focus\:bg-accent\/5:focus{
  background-color: hsl(var(--accent) / 0.05);
}
.focus\:bg-accent\/50:focus{
  background-color: hsl(var(--accent) / 0.5);
}
.focus\:bg-accent\/55:focus{
  background-color: hsl(var(--accent) / 0.55);
}
.focus\:bg-accent\/60:focus{
  background-color: hsl(var(--accent) / 0.6);
}
.focus\:bg-accent\/65:focus{
  background-color: hsl(var(--accent) / 0.65);
}
.focus\:bg-accent\/70:focus{
  background-color: hsl(var(--accent) / 0.7);
}
.focus\:bg-accent\/75:focus{
  background-color: hsl(var(--accent) / 0.75);
}
.focus\:bg-accent\/80:focus{
  background-color: hsl(var(--accent) / 0.8);
}
.focus\:bg-accent\/85:focus{
  background-color: hsl(var(--accent) / 0.85);
}
.focus\:bg-accent\/90:focus{
  background-color: hsl(var(--accent) / 0.9);
}
.focus\:bg-accent\/95:focus{
  background-color: hsl(var(--accent) / 0.95);
}
.focus\:bg-destructive:focus{
  background-color: hsl(var(--destructive));
}
.focus\:bg-destructive-foreground:focus{
  background-color: hsl(var(--destructive-foreground));
}
.focus\:bg-destructive-foreground\/0:focus{
  background-color: hsl(var(--destructive-foreground) / 0);
}
.focus\:bg-destructive-foreground\/10:focus{
  background-color: hsl(var(--destructive-foreground) / 0.1);
}
.focus\:bg-destructive-foreground\/100:focus{
  background-color: hsl(var(--destructive-foreground) / 1);
}
.focus\:bg-destructive-foreground\/15:focus{
  background-color: hsl(var(--destructive-foreground) / 0.15);
}
.focus\:bg-destructive-foreground\/20:focus{
  background-color: hsl(var(--destructive-foreground) / 0.2);
}
.focus\:bg-destructive-foreground\/25:focus{
  background-color: hsl(var(--destructive-foreground) / 0.25);
}
.focus\:bg-destructive-foreground\/30:focus{
  background-color: hsl(var(--destructive-foreground) / 0.3);
}
.focus\:bg-destructive-foreground\/35:focus{
  background-color: hsl(var(--destructive-foreground) / 0.35);
}
.focus\:bg-destructive-foreground\/40:focus{
  background-color: hsl(var(--destructive-foreground) / 0.4);
}
.focus\:bg-destructive-foreground\/45:focus{
  background-color: hsl(var(--destructive-foreground) / 0.45);
}
.focus\:bg-destructive-foreground\/5:focus{
  background-color: hsl(var(--destructive-foreground) / 0.05);
}
.focus\:bg-destructive-foreground\/50:focus{
  background-color: hsl(var(--destructive-foreground) / 0.5);
}
.focus\:bg-destructive-foreground\/55:focus{
  background-color: hsl(var(--destructive-foreground) / 0.55);
}
.focus\:bg-destructive-foreground\/60:focus{
  background-color: hsl(var(--destructive-foreground) / 0.6);
}
.focus\:bg-destructive-foreground\/65:focus{
  background-color: hsl(var(--destructive-foreground) / 0.65);
}
.focus\:bg-destructive-foreground\/70:focus{
  background-color: hsl(var(--destructive-foreground) / 0.7);
}
.focus\:bg-destructive-foreground\/75:focus{
  background-color: hsl(var(--destructive-foreground) / 0.75);
}
.focus\:bg-destructive-foreground\/80:focus{
  background-color: hsl(var(--destructive-foreground) / 0.8);
}
.focus\:bg-destructive-foreground\/85:focus{
  background-color: hsl(var(--destructive-foreground) / 0.85);
}
.focus\:bg-destructive-foreground\/90:focus{
  background-color: hsl(var(--destructive-foreground) / 0.9);
}
.focus\:bg-destructive-foreground\/95:focus{
  background-color: hsl(var(--destructive-foreground) / 0.95);
}
.focus\:bg-destructive\/0:focus{
  background-color: hsl(var(--destructive) / 0);
}
.focus\:bg-destructive\/10:focus{
  background-color: hsl(var(--destructive) / 0.1);
}
.focus\:bg-destructive\/100:focus{
  background-color: hsl(var(--destructive) / 1);
}
.focus\:bg-destructive\/15:focus{
  background-color: hsl(var(--destructive) / 0.15);
}
.focus\:bg-destructive\/20:focus{
  background-color: hsl(var(--destructive) / 0.2);
}
.focus\:bg-destructive\/25:focus{
  background-color: hsl(var(--destructive) / 0.25);
}
.focus\:bg-destructive\/30:focus{
  background-color: hsl(var(--destructive) / 0.3);
}
.focus\:bg-destructive\/35:focus{
  background-color: hsl(var(--destructive) / 0.35);
}
.focus\:bg-destructive\/40:focus{
  background-color: hsl(var(--destructive) / 0.4);
}
.focus\:bg-destructive\/45:focus{
  background-color: hsl(var(--destructive) / 0.45);
}
.focus\:bg-destructive\/5:focus{
  background-color: hsl(var(--destructive) / 0.05);
}
.focus\:bg-destructive\/50:focus{
  background-color: hsl(var(--destructive) / 0.5);
}
.focus\:bg-destructive\/55:focus{
  background-color: hsl(var(--destructive) / 0.55);
}
.focus\:bg-destructive\/60:focus{
  background-color: hsl(var(--destructive) / 0.6);
}
.focus\:bg-destructive\/65:focus{
  background-color: hsl(var(--destructive) / 0.65);
}
.focus\:bg-destructive\/70:focus{
  background-color: hsl(var(--destructive) / 0.7);
}
.focus\:bg-destructive\/75:focus{
  background-color: hsl(var(--destructive) / 0.75);
}
.focus\:bg-destructive\/80:focus{
  background-color: hsl(var(--destructive) / 0.8);
}
.focus\:bg-destructive\/85:focus{
  background-color: hsl(var(--destructive) / 0.85);
}
.focus\:bg-destructive\/90:focus{
  background-color: hsl(var(--destructive) / 0.9);
}
.focus\:bg-destructive\/95:focus{
  background-color: hsl(var(--destructive) / 0.95);
}
.focus\:bg-muted:focus{
  background-color: hsl(var(--muted));
}
.focus\:bg-muted-foreground:focus{
  background-color: hsl(var(--muted-foreground));
}
.focus\:bg-muted-foreground\/0:focus{
  background-color: hsl(var(--muted-foreground) / 0);
}
.focus\:bg-muted-foreground\/10:focus{
  background-color: hsl(var(--muted-foreground) / 0.1);
}
.focus\:bg-muted-foreground\/100:focus{
  background-color: hsl(var(--muted-foreground) / 1);
}
.focus\:bg-muted-foreground\/15:focus{
  background-color: hsl(var(--muted-foreground) / 0.15);
}
.focus\:bg-muted-foreground\/20:focus{
  background-color: hsl(var(--muted-foreground) / 0.2);
}
.focus\:bg-muted-foreground\/25:focus{
  background-color: hsl(var(--muted-foreground) / 0.25);
}
.focus\:bg-muted-foreground\/30:focus{
  background-color: hsl(var(--muted-foreground) / 0.3);
}
.focus\:bg-muted-foreground\/35:focus{
  background-color: hsl(var(--muted-foreground) / 0.35);
}
.focus\:bg-muted-foreground\/40:focus{
  background-color: hsl(var(--muted-foreground) / 0.4);
}
.focus\:bg-muted-foreground\/45:focus{
  background-color: hsl(var(--muted-foreground) / 0.45);
}
.focus\:bg-muted-foreground\/5:focus{
  background-color: hsl(var(--muted-foreground) / 0.05);
}
.focus\:bg-muted-foreground\/50:focus{
  background-color: hsl(var(--muted-foreground) / 0.5);
}
.focus\:bg-muted-foreground\/55:focus{
  background-color: hsl(var(--muted-foreground) / 0.55);
}
.focus\:bg-muted-foreground\/60:focus{
  background-color: hsl(var(--muted-foreground) / 0.6);
}
.focus\:bg-muted-foreground\/65:focus{
  background-color: hsl(var(--muted-foreground) / 0.65);
}
.focus\:bg-muted-foreground\/70:focus{
  background-color: hsl(var(--muted-foreground) / 0.7);
}
.focus\:bg-muted-foreground\/75:focus{
  background-color: hsl(var(--muted-foreground) / 0.75);
}
.focus\:bg-muted-foreground\/80:focus{
  background-color: hsl(var(--muted-foreground) / 0.8);
}
.focus\:bg-muted-foreground\/85:focus{
  background-color: hsl(var(--muted-foreground) / 0.85);
}
.focus\:bg-muted-foreground\/90:focus{
  background-color: hsl(var(--muted-foreground) / 0.9);
}
.focus\:bg-muted-foreground\/95:focus{
  background-color: hsl(var(--muted-foreground) / 0.95);
}
.focus\:bg-muted\/0:focus{
  background-color: hsl(var(--muted) / 0);
}
.focus\:bg-muted\/10:focus{
  background-color: hsl(var(--muted) / 0.1);
}
.focus\:bg-muted\/100:focus{
  background-color: hsl(var(--muted) / 1);
}
.focus\:bg-muted\/15:focus{
  background-color: hsl(var(--muted) / 0.15);
}
.focus\:bg-muted\/20:focus{
  background-color: hsl(var(--muted) / 0.2);
}
.focus\:bg-muted\/25:focus{
  background-color: hsl(var(--muted) / 0.25);
}
.focus\:bg-muted\/30:focus{
  background-color: hsl(var(--muted) / 0.3);
}
.focus\:bg-muted\/35:focus{
  background-color: hsl(var(--muted) / 0.35);
}
.focus\:bg-muted\/40:focus{
  background-color: hsl(var(--muted) / 0.4);
}
.focus\:bg-muted\/45:focus{
  background-color: hsl(var(--muted) / 0.45);
}
.focus\:bg-muted\/5:focus{
  background-color: hsl(var(--muted) / 0.05);
}
.focus\:bg-muted\/50:focus{
  background-color: hsl(var(--muted) / 0.5);
}
.focus\:bg-muted\/55:focus{
  background-color: hsl(var(--muted) / 0.55);
}
.focus\:bg-muted\/60:focus{
  background-color: hsl(var(--muted) / 0.6);
}
.focus\:bg-muted\/65:focus{
  background-color: hsl(var(--muted) / 0.65);
}
.focus\:bg-muted\/70:focus{
  background-color: hsl(var(--muted) / 0.7);
}
.focus\:bg-muted\/75:focus{
  background-color: hsl(var(--muted) / 0.75);
}
.focus\:bg-muted\/80:focus{
  background-color: hsl(var(--muted) / 0.8);
}
.focus\:bg-muted\/85:focus{
  background-color: hsl(var(--muted) / 0.85);
}
.focus\:bg-muted\/90:focus{
  background-color: hsl(var(--muted) / 0.9);
}
.focus\:bg-muted\/95:focus{
  background-color: hsl(var(--muted) / 0.95);
}
.focus\:bg-primary:focus{
  background-color: hsl(var(--primary));
}
.focus\:bg-primary-foreground:focus{
  background-color: hsl(var(--primary-foreground));
}
.focus\:bg-primary-foreground\/0:focus{
  background-color: hsl(var(--primary-foreground) / 0);
}
.focus\:bg-primary-foreground\/10:focus{
  background-color: hsl(var(--primary-foreground) / 0.1);
}
.focus\:bg-primary-foreground\/100:focus{
  background-color: hsl(var(--primary-foreground) / 1);
}
.focus\:bg-primary-foreground\/15:focus{
  background-color: hsl(var(--primary-foreground) / 0.15);
}
.focus\:bg-primary-foreground\/20:focus{
  background-color: hsl(var(--primary-foreground) / 0.2);
}
.focus\:bg-primary-foreground\/25:focus{
  background-color: hsl(var(--primary-foreground) / 0.25);
}
.focus\:bg-primary-foreground\/30:focus{
  background-color: hsl(var(--primary-foreground) / 0.3);
}
.focus\:bg-primary-foreground\/35:focus{
  background-color: hsl(var(--primary-foreground) / 0.35);
}
.focus\:bg-primary-foreground\/40:focus{
  background-color: hsl(var(--primary-foreground) / 0.4);
}
.focus\:bg-primary-foreground\/45:focus{
  background-color: hsl(var(--primary-foreground) / 0.45);
}
.focus\:bg-primary-foreground\/5:focus{
  background-color: hsl(var(--primary-foreground) / 0.05);
}
.focus\:bg-primary-foreground\/50:focus{
  background-color: hsl(var(--primary-foreground) / 0.5);
}
.focus\:bg-primary-foreground\/55:focus{
  background-color: hsl(var(--primary-foreground) / 0.55);
}
.focus\:bg-primary-foreground\/60:focus{
  background-color: hsl(var(--primary-foreground) / 0.6);
}
.focus\:bg-primary-foreground\/65:focus{
  background-color: hsl(var(--primary-foreground) / 0.65);
}
.focus\:bg-primary-foreground\/70:focus{
  background-color: hsl(var(--primary-foreground) / 0.7);
}
.focus\:bg-primary-foreground\/75:focus{
  background-color: hsl(var(--primary-foreground) / 0.75);
}
.focus\:bg-primary-foreground\/80:focus{
  background-color: hsl(var(--primary-foreground) / 0.8);
}
.focus\:bg-primary-foreground\/85:focus{
  background-color: hsl(var(--primary-foreground) / 0.85);
}
.focus\:bg-primary-foreground\/90:focus{
  background-color: hsl(var(--primary-foreground) / 0.9);
}
.focus\:bg-primary-foreground\/95:focus{
  background-color: hsl(var(--primary-foreground) / 0.95);
}
.focus\:bg-primary\/0:focus{
  background-color: hsl(var(--primary) / 0);
}
.focus\:bg-primary\/10:focus{
  background-color: hsl(var(--primary) / 0.1);
}
.focus\:bg-primary\/100:focus{
  background-color: hsl(var(--primary) / 1);
}
.focus\:bg-primary\/15:focus{
  background-color: hsl(var(--primary) / 0.15);
}
.focus\:bg-primary\/20:focus{
  background-color: hsl(var(--primary) / 0.2);
}
.focus\:bg-primary\/25:focus{
  background-color: hsl(var(--primary) / 0.25);
}
.focus\:bg-primary\/30:focus{
  background-color: hsl(var(--primary) / 0.3);
}
.focus\:bg-primary\/35:focus{
  background-color: hsl(var(--primary) / 0.35);
}
.focus\:bg-primary\/40:focus{
  background-color: hsl(var(--primary) / 0.4);
}
.focus\:bg-primary\/45:focus{
  background-color: hsl(var(--primary) / 0.45);
}
.focus\:bg-primary\/5:focus{
  background-color: hsl(var(--primary) / 0.05);
}
.focus\:bg-primary\/50:focus{
  background-color: hsl(var(--primary) / 0.5);
}
.focus\:bg-primary\/55:focus{
  background-color: hsl(var(--primary) / 0.55);
}
.focus\:bg-primary\/60:focus{
  background-color: hsl(var(--primary) / 0.6);
}
.focus\:bg-primary\/65:focus{
  background-color: hsl(var(--primary) / 0.65);
}
.focus\:bg-primary\/70:focus{
  background-color: hsl(var(--primary) / 0.7);
}
.focus\:bg-primary\/75:focus{
  background-color: hsl(var(--primary) / 0.75);
}
.focus\:bg-primary\/80:focus{
  background-color: hsl(var(--primary) / 0.8);
}
.focus\:bg-primary\/85:focus{
  background-color: hsl(var(--primary) / 0.85);
}
.focus\:bg-primary\/90:focus{
  background-color: hsl(var(--primary) / 0.9);
}
.focus\:bg-primary\/95:focus{
  background-color: hsl(var(--primary) / 0.95);
}
.focus\:bg-secondary:focus{
  background-color: hsl(var(--secondary));
}
.focus\:bg-secondary-foreground:focus{
  background-color: hsl(var(--secondary-foreground));
}
.focus\:bg-secondary-foreground\/0:focus{
  background-color: hsl(var(--secondary-foreground) / 0);
}
.focus\:bg-secondary-foreground\/10:focus{
  background-color: hsl(var(--secondary-foreground) / 0.1);
}
.focus\:bg-secondary-foreground\/100:focus{
  background-color: hsl(var(--secondary-foreground) / 1);
}
.focus\:bg-secondary-foreground\/15:focus{
  background-color: hsl(var(--secondary-foreground) / 0.15);
}
.focus\:bg-secondary-foreground\/20:focus{
  background-color: hsl(var(--secondary-foreground) / 0.2);
}
.focus\:bg-secondary-foreground\/25:focus{
  background-color: hsl(var(--secondary-foreground) / 0.25);
}
.focus\:bg-secondary-foreground\/30:focus{
  background-color: hsl(var(--secondary-foreground) / 0.3);
}
.focus\:bg-secondary-foreground\/35:focus{
  background-color: hsl(var(--secondary-foreground) / 0.35);
}
.focus\:bg-secondary-foreground\/40:focus{
  background-color: hsl(var(--secondary-foreground) / 0.4);
}
.focus\:bg-secondary-foreground\/45:focus{
  background-color: hsl(var(--secondary-foreground) / 0.45);
}
.focus\:bg-secondary-foreground\/5:focus{
  background-color: hsl(var(--secondary-foreground) / 0.05);
}
.focus\:bg-secondary-foreground\/50:focus{
  background-color: hsl(var(--secondary-foreground) / 0.5);
}
.focus\:bg-secondary-foreground\/55:focus{
  background-color: hsl(var(--secondary-foreground) / 0.55);
}
.focus\:bg-secondary-foreground\/60:focus{
  background-color: hsl(var(--secondary-foreground) / 0.6);
}
.focus\:bg-secondary-foreground\/65:focus{
  background-color: hsl(var(--secondary-foreground) / 0.65);
}
.focus\:bg-secondary-foreground\/70:focus{
  background-color: hsl(var(--secondary-foreground) / 0.7);
}
.focus\:bg-secondary-foreground\/75:focus{
  background-color: hsl(var(--secondary-foreground) / 0.75);
}
.focus\:bg-secondary-foreground\/80:focus{
  background-color: hsl(var(--secondary-foreground) / 0.8);
}
.focus\:bg-secondary-foreground\/85:focus{
  background-color: hsl(var(--secondary-foreground) / 0.85);
}
.focus\:bg-secondary-foreground\/90:focus{
  background-color: hsl(var(--secondary-foreground) / 0.9);
}
.focus\:bg-secondary-foreground\/95:focus{
  background-color: hsl(var(--secondary-foreground) / 0.95);
}
.focus\:bg-secondary\/0:focus{
  background-color: hsl(var(--secondary) / 0);
}
.focus\:bg-secondary\/10:focus{
  background-color: hsl(var(--secondary) / 0.1);
}
.focus\:bg-secondary\/100:focus{
  background-color: hsl(var(--secondary) / 1);
}
.focus\:bg-secondary\/15:focus{
  background-color: hsl(var(--secondary) / 0.15);
}
.focus\:bg-secondary\/20:focus{
  background-color: hsl(var(--secondary) / 0.2);
}
.focus\:bg-secondary\/25:focus{
  background-color: hsl(var(--secondary) / 0.25);
}
.focus\:bg-secondary\/30:focus{
  background-color: hsl(var(--secondary) / 0.3);
}
.focus\:bg-secondary\/35:focus{
  background-color: hsl(var(--secondary) / 0.35);
}
.focus\:bg-secondary\/40:focus{
  background-color: hsl(var(--secondary) / 0.4);
}
.focus\:bg-secondary\/45:focus{
  background-color: hsl(var(--secondary) / 0.45);
}
.focus\:bg-secondary\/5:focus{
  background-color: hsl(var(--secondary) / 0.05);
}
.focus\:bg-secondary\/50:focus{
  background-color: hsl(var(--secondary) / 0.5);
}
.focus\:bg-secondary\/55:focus{
  background-color: hsl(var(--secondary) / 0.55);
}
.focus\:bg-secondary\/60:focus{
  background-color: hsl(var(--secondary) / 0.6);
}
.focus\:bg-secondary\/65:focus{
  background-color: hsl(var(--secondary) / 0.65);
}
.focus\:bg-secondary\/70:focus{
  background-color: hsl(var(--secondary) / 0.7);
}
.focus\:bg-secondary\/75:focus{
  background-color: hsl(var(--secondary) / 0.75);
}
.focus\:bg-secondary\/80:focus{
  background-color: hsl(var(--secondary) / 0.8);
}
.focus\:bg-secondary\/85:focus{
  background-color: hsl(var(--secondary) / 0.85);
}
.focus\:bg-secondary\/90:focus{
  background-color: hsl(var(--secondary) / 0.9);
}
.focus\:bg-secondary\/95:focus{
  background-color: hsl(var(--secondary) / 0.95);
}
.focus\:bg-white:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.focus\:text-accent:focus{
  color: hsl(var(--accent));
}
.focus\:text-accent-foreground:focus{
  color: hsl(var(--accent-foreground));
}
.focus\:text-accent-foreground\/0:focus{
  color: hsl(var(--accent-foreground) / 0);
}
.focus\:text-accent-foreground\/10:focus{
  color: hsl(var(--accent-foreground) / 0.1);
}
.focus\:text-accent-foreground\/100:focus{
  color: hsl(var(--accent-foreground) / 1);
}
.focus\:text-accent-foreground\/15:focus{
  color: hsl(var(--accent-foreground) / 0.15);
}
.focus\:text-accent-foreground\/20:focus{
  color: hsl(var(--accent-foreground) / 0.2);
}
.focus\:text-accent-foreground\/25:focus{
  color: hsl(var(--accent-foreground) / 0.25);
}
.focus\:text-accent-foreground\/30:focus{
  color: hsl(var(--accent-foreground) / 0.3);
}
.focus\:text-accent-foreground\/35:focus{
  color: hsl(var(--accent-foreground) / 0.35);
}
.focus\:text-accent-foreground\/40:focus{
  color: hsl(var(--accent-foreground) / 0.4);
}
.focus\:text-accent-foreground\/45:focus{
  color: hsl(var(--accent-foreground) / 0.45);
}
.focus\:text-accent-foreground\/5:focus{
  color: hsl(var(--accent-foreground) / 0.05);
}
.focus\:text-accent-foreground\/50:focus{
  color: hsl(var(--accent-foreground) / 0.5);
}
.focus\:text-accent-foreground\/55:focus{
  color: hsl(var(--accent-foreground) / 0.55);
}
.focus\:text-accent-foreground\/60:focus{
  color: hsl(var(--accent-foreground) / 0.6);
}
.focus\:text-accent-foreground\/65:focus{
  color: hsl(var(--accent-foreground) / 0.65);
}
.focus\:text-accent-foreground\/70:focus{
  color: hsl(var(--accent-foreground) / 0.7);
}
.focus\:text-accent-foreground\/75:focus{
  color: hsl(var(--accent-foreground) / 0.75);
}
.focus\:text-accent-foreground\/80:focus{
  color: hsl(var(--accent-foreground) / 0.8);
}
.focus\:text-accent-foreground\/85:focus{
  color: hsl(var(--accent-foreground) / 0.85);
}
.focus\:text-accent-foreground\/90:focus{
  color: hsl(var(--accent-foreground) / 0.9);
}
.focus\:text-accent-foreground\/95:focus{
  color: hsl(var(--accent-foreground) / 0.95);
}
.focus\:text-accent\/0:focus{
  color: hsl(var(--accent) / 0);
}
.focus\:text-accent\/10:focus{
  color: hsl(var(--accent) / 0.1);
}
.focus\:text-accent\/100:focus{
  color: hsl(var(--accent) / 1);
}
.focus\:text-accent\/15:focus{
  color: hsl(var(--accent) / 0.15);
}
.focus\:text-accent\/20:focus{
  color: hsl(var(--accent) / 0.2);
}
.focus\:text-accent\/25:focus{
  color: hsl(var(--accent) / 0.25);
}
.focus\:text-accent\/30:focus{
  color: hsl(var(--accent) / 0.3);
}
.focus\:text-accent\/35:focus{
  color: hsl(var(--accent) / 0.35);
}
.focus\:text-accent\/40:focus{
  color: hsl(var(--accent) / 0.4);
}
.focus\:text-accent\/45:focus{
  color: hsl(var(--accent) / 0.45);
}
.focus\:text-accent\/5:focus{
  color: hsl(var(--accent) / 0.05);
}
.focus\:text-accent\/50:focus{
  color: hsl(var(--accent) / 0.5);
}
.focus\:text-accent\/55:focus{
  color: hsl(var(--accent) / 0.55);
}
.focus\:text-accent\/60:focus{
  color: hsl(var(--accent) / 0.6);
}
.focus\:text-accent\/65:focus{
  color: hsl(var(--accent) / 0.65);
}
.focus\:text-accent\/70:focus{
  color: hsl(var(--accent) / 0.7);
}
.focus\:text-accent\/75:focus{
  color: hsl(var(--accent) / 0.75);
}
.focus\:text-accent\/80:focus{
  color: hsl(var(--accent) / 0.8);
}
.focus\:text-accent\/85:focus{
  color: hsl(var(--accent) / 0.85);
}
.focus\:text-accent\/90:focus{
  color: hsl(var(--accent) / 0.9);
}
.focus\:text-accent\/95:focus{
  color: hsl(var(--accent) / 0.95);
}
.focus\:text-destructive:focus{
  color: hsl(var(--destructive));
}
.focus\:text-destructive-foreground:focus{
  color: hsl(var(--destructive-foreground));
}
.focus\:text-destructive-foreground\/0:focus{
  color: hsl(var(--destructive-foreground) / 0);
}
.focus\:text-destructive-foreground\/10:focus{
  color: hsl(var(--destructive-foreground) / 0.1);
}
.focus\:text-destructive-foreground\/100:focus{
  color: hsl(var(--destructive-foreground) / 1);
}
.focus\:text-destructive-foreground\/15:focus{
  color: hsl(var(--destructive-foreground) / 0.15);
}
.focus\:text-destructive-foreground\/20:focus{
  color: hsl(var(--destructive-foreground) / 0.2);
}
.focus\:text-destructive-foreground\/25:focus{
  color: hsl(var(--destructive-foreground) / 0.25);
}
.focus\:text-destructive-foreground\/30:focus{
  color: hsl(var(--destructive-foreground) / 0.3);
}
.focus\:text-destructive-foreground\/35:focus{
  color: hsl(var(--destructive-foreground) / 0.35);
}
.focus\:text-destructive-foreground\/40:focus{
  color: hsl(var(--destructive-foreground) / 0.4);
}
.focus\:text-destructive-foreground\/45:focus{
  color: hsl(var(--destructive-foreground) / 0.45);
}
.focus\:text-destructive-foreground\/5:focus{
  color: hsl(var(--destructive-foreground) / 0.05);
}
.focus\:text-destructive-foreground\/50:focus{
  color: hsl(var(--destructive-foreground) / 0.5);
}
.focus\:text-destructive-foreground\/55:focus{
  color: hsl(var(--destructive-foreground) / 0.55);
}
.focus\:text-destructive-foreground\/60:focus{
  color: hsl(var(--destructive-foreground) / 0.6);
}
.focus\:text-destructive-foreground\/65:focus{
  color: hsl(var(--destructive-foreground) / 0.65);
}
.focus\:text-destructive-foreground\/70:focus{
  color: hsl(var(--destructive-foreground) / 0.7);
}
.focus\:text-destructive-foreground\/75:focus{
  color: hsl(var(--destructive-foreground) / 0.75);
}
.focus\:text-destructive-foreground\/80:focus{
  color: hsl(var(--destructive-foreground) / 0.8);
}
.focus\:text-destructive-foreground\/85:focus{
  color: hsl(var(--destructive-foreground) / 0.85);
}
.focus\:text-destructive-foreground\/90:focus{
  color: hsl(var(--destructive-foreground) / 0.9);
}
.focus\:text-destructive-foreground\/95:focus{
  color: hsl(var(--destructive-foreground) / 0.95);
}
.focus\:text-destructive\/0:focus{
  color: hsl(var(--destructive) / 0);
}
.focus\:text-destructive\/10:focus{
  color: hsl(var(--destructive) / 0.1);
}
.focus\:text-destructive\/100:focus{
  color: hsl(var(--destructive) / 1);
}
.focus\:text-destructive\/15:focus{
  color: hsl(var(--destructive) / 0.15);
}
.focus\:text-destructive\/20:focus{
  color: hsl(var(--destructive) / 0.2);
}
.focus\:text-destructive\/25:focus{
  color: hsl(var(--destructive) / 0.25);
}
.focus\:text-destructive\/30:focus{
  color: hsl(var(--destructive) / 0.3);
}
.focus\:text-destructive\/35:focus{
  color: hsl(var(--destructive) / 0.35);
}
.focus\:text-destructive\/40:focus{
  color: hsl(var(--destructive) / 0.4);
}
.focus\:text-destructive\/45:focus{
  color: hsl(var(--destructive) / 0.45);
}
.focus\:text-destructive\/5:focus{
  color: hsl(var(--destructive) / 0.05);
}
.focus\:text-destructive\/50:focus{
  color: hsl(var(--destructive) / 0.5);
}
.focus\:text-destructive\/55:focus{
  color: hsl(var(--destructive) / 0.55);
}
.focus\:text-destructive\/60:focus{
  color: hsl(var(--destructive) / 0.6);
}
.focus\:text-destructive\/65:focus{
  color: hsl(var(--destructive) / 0.65);
}
.focus\:text-destructive\/70:focus{
  color: hsl(var(--destructive) / 0.7);
}
.focus\:text-destructive\/75:focus{
  color: hsl(var(--destructive) / 0.75);
}
.focus\:text-destructive\/80:focus{
  color: hsl(var(--destructive) / 0.8);
}
.focus\:text-destructive\/85:focus{
  color: hsl(var(--destructive) / 0.85);
}
.focus\:text-destructive\/90:focus{
  color: hsl(var(--destructive) / 0.9);
}
.focus\:text-destructive\/95:focus{
  color: hsl(var(--destructive) / 0.95);
}
.focus\:text-muted:focus{
  color: hsl(var(--muted));
}
.focus\:text-muted-foreground:focus{
  color: hsl(var(--muted-foreground));
}
.focus\:text-muted-foreground\/0:focus{
  color: hsl(var(--muted-foreground) / 0);
}
.focus\:text-muted-foreground\/10:focus{
  color: hsl(var(--muted-foreground) / 0.1);
}
.focus\:text-muted-foreground\/100:focus{
  color: hsl(var(--muted-foreground) / 1);
}
.focus\:text-muted-foreground\/15:focus{
  color: hsl(var(--muted-foreground) / 0.15);
}
.focus\:text-muted-foreground\/20:focus{
  color: hsl(var(--muted-foreground) / 0.2);
}
.focus\:text-muted-foreground\/25:focus{
  color: hsl(var(--muted-foreground) / 0.25);
}
.focus\:text-muted-foreground\/30:focus{
  color: hsl(var(--muted-foreground) / 0.3);
}
.focus\:text-muted-foreground\/35:focus{
  color: hsl(var(--muted-foreground) / 0.35);
}
.focus\:text-muted-foreground\/40:focus{
  color: hsl(var(--muted-foreground) / 0.4);
}
.focus\:text-muted-foreground\/45:focus{
  color: hsl(var(--muted-foreground) / 0.45);
}
.focus\:text-muted-foreground\/5:focus{
  color: hsl(var(--muted-foreground) / 0.05);
}
.focus\:text-muted-foreground\/50:focus{
  color: hsl(var(--muted-foreground) / 0.5);
}
.focus\:text-muted-foreground\/55:focus{
  color: hsl(var(--muted-foreground) / 0.55);
}
.focus\:text-muted-foreground\/60:focus{
  color: hsl(var(--muted-foreground) / 0.6);
}
.focus\:text-muted-foreground\/65:focus{
  color: hsl(var(--muted-foreground) / 0.65);
}
.focus\:text-muted-foreground\/70:focus{
  color: hsl(var(--muted-foreground) / 0.7);
}
.focus\:text-muted-foreground\/75:focus{
  color: hsl(var(--muted-foreground) / 0.75);
}
.focus\:text-muted-foreground\/80:focus{
  color: hsl(var(--muted-foreground) / 0.8);
}
.focus\:text-muted-foreground\/85:focus{
  color: hsl(var(--muted-foreground) / 0.85);
}
.focus\:text-muted-foreground\/90:focus{
  color: hsl(var(--muted-foreground) / 0.9);
}
.focus\:text-muted-foreground\/95:focus{
  color: hsl(var(--muted-foreground) / 0.95);
}
.focus\:text-muted\/0:focus{
  color: hsl(var(--muted) / 0);
}
.focus\:text-muted\/10:focus{
  color: hsl(var(--muted) / 0.1);
}
.focus\:text-muted\/100:focus{
  color: hsl(var(--muted) / 1);
}
.focus\:text-muted\/15:focus{
  color: hsl(var(--muted) / 0.15);
}
.focus\:text-muted\/20:focus{
  color: hsl(var(--muted) / 0.2);
}
.focus\:text-muted\/25:focus{
  color: hsl(var(--muted) / 0.25);
}
.focus\:text-muted\/30:focus{
  color: hsl(var(--muted) / 0.3);
}
.focus\:text-muted\/35:focus{
  color: hsl(var(--muted) / 0.35);
}
.focus\:text-muted\/40:focus{
  color: hsl(var(--muted) / 0.4);
}
.focus\:text-muted\/45:focus{
  color: hsl(var(--muted) / 0.45);
}
.focus\:text-muted\/5:focus{
  color: hsl(var(--muted) / 0.05);
}
.focus\:text-muted\/50:focus{
  color: hsl(var(--muted) / 0.5);
}
.focus\:text-muted\/55:focus{
  color: hsl(var(--muted) / 0.55);
}
.focus\:text-muted\/60:focus{
  color: hsl(var(--muted) / 0.6);
}
.focus\:text-muted\/65:focus{
  color: hsl(var(--muted) / 0.65);
}
.focus\:text-muted\/70:focus{
  color: hsl(var(--muted) / 0.7);
}
.focus\:text-muted\/75:focus{
  color: hsl(var(--muted) / 0.75);
}
.focus\:text-muted\/80:focus{
  color: hsl(var(--muted) / 0.8);
}
.focus\:text-muted\/85:focus{
  color: hsl(var(--muted) / 0.85);
}
.focus\:text-muted\/90:focus{
  color: hsl(var(--muted) / 0.9);
}
.focus\:text-muted\/95:focus{
  color: hsl(var(--muted) / 0.95);
}
.focus\:text-primary:focus{
  color: hsl(var(--primary));
}
.focus\:text-primary-foreground:focus{
  color: hsl(var(--primary-foreground));
}
.focus\:text-primary-foreground\/0:focus{
  color: hsl(var(--primary-foreground) / 0);
}
.focus\:text-primary-foreground\/10:focus{
  color: hsl(var(--primary-foreground) / 0.1);
}
.focus\:text-primary-foreground\/100:focus{
  color: hsl(var(--primary-foreground) / 1);
}
.focus\:text-primary-foreground\/15:focus{
  color: hsl(var(--primary-foreground) / 0.15);
}
.focus\:text-primary-foreground\/20:focus{
  color: hsl(var(--primary-foreground) / 0.2);
}
.focus\:text-primary-foreground\/25:focus{
  color: hsl(var(--primary-foreground) / 0.25);
}
.focus\:text-primary-foreground\/30:focus{
  color: hsl(var(--primary-foreground) / 0.3);
}
.focus\:text-primary-foreground\/35:focus{
  color: hsl(var(--primary-foreground) / 0.35);
}
.focus\:text-primary-foreground\/40:focus{
  color: hsl(var(--primary-foreground) / 0.4);
}
.focus\:text-primary-foreground\/45:focus{
  color: hsl(var(--primary-foreground) / 0.45);
}
.focus\:text-primary-foreground\/5:focus{
  color: hsl(var(--primary-foreground) / 0.05);
}
.focus\:text-primary-foreground\/50:focus{
  color: hsl(var(--primary-foreground) / 0.5);
}
.focus\:text-primary-foreground\/55:focus{
  color: hsl(var(--primary-foreground) / 0.55);
}
.focus\:text-primary-foreground\/60:focus{
  color: hsl(var(--primary-foreground) / 0.6);
}
.focus\:text-primary-foreground\/65:focus{
  color: hsl(var(--primary-foreground) / 0.65);
}
.focus\:text-primary-foreground\/70:focus{
  color: hsl(var(--primary-foreground) / 0.7);
}
.focus\:text-primary-foreground\/75:focus{
  color: hsl(var(--primary-foreground) / 0.75);
}
.focus\:text-primary-foreground\/80:focus{
  color: hsl(var(--primary-foreground) / 0.8);
}
.focus\:text-primary-foreground\/85:focus{
  color: hsl(var(--primary-foreground) / 0.85);
}
.focus\:text-primary-foreground\/90:focus{
  color: hsl(var(--primary-foreground) / 0.9);
}
.focus\:text-primary-foreground\/95:focus{
  color: hsl(var(--primary-foreground) / 0.95);
}
.focus\:text-primary\/0:focus{
  color: hsl(var(--primary) / 0);
}
.focus\:text-primary\/10:focus{
  color: hsl(var(--primary) / 0.1);
}
.focus\:text-primary\/100:focus{
  color: hsl(var(--primary) / 1);
}
.focus\:text-primary\/15:focus{
  color: hsl(var(--primary) / 0.15);
}
.focus\:text-primary\/20:focus{
  color: hsl(var(--primary) / 0.2);
}
.focus\:text-primary\/25:focus{
  color: hsl(var(--primary) / 0.25);
}
.focus\:text-primary\/30:focus{
  color: hsl(var(--primary) / 0.3);
}
.focus\:text-primary\/35:focus{
  color: hsl(var(--primary) / 0.35);
}
.focus\:text-primary\/40:focus{
  color: hsl(var(--primary) / 0.4);
}
.focus\:text-primary\/45:focus{
  color: hsl(var(--primary) / 0.45);
}
.focus\:text-primary\/5:focus{
  color: hsl(var(--primary) / 0.05);
}
.focus\:text-primary\/50:focus{
  color: hsl(var(--primary) / 0.5);
}
.focus\:text-primary\/55:focus{
  color: hsl(var(--primary) / 0.55);
}
.focus\:text-primary\/60:focus{
  color: hsl(var(--primary) / 0.6);
}
.focus\:text-primary\/65:focus{
  color: hsl(var(--primary) / 0.65);
}
.focus\:text-primary\/70:focus{
  color: hsl(var(--primary) / 0.7);
}
.focus\:text-primary\/75:focus{
  color: hsl(var(--primary) / 0.75);
}
.focus\:text-primary\/80:focus{
  color: hsl(var(--primary) / 0.8);
}
.focus\:text-primary\/85:focus{
  color: hsl(var(--primary) / 0.85);
}
.focus\:text-primary\/90:focus{
  color: hsl(var(--primary) / 0.9);
}
.focus\:text-primary\/95:focus{
  color: hsl(var(--primary) / 0.95);
}
.focus\:text-secondary:focus{
  color: hsl(var(--secondary));
}
.focus\:text-secondary-foreground:focus{
  color: hsl(var(--secondary-foreground));
}
.focus\:text-secondary-foreground\/0:focus{
  color: hsl(var(--secondary-foreground) / 0);
}
.focus\:text-secondary-foreground\/10:focus{
  color: hsl(var(--secondary-foreground) / 0.1);
}
.focus\:text-secondary-foreground\/100:focus{
  color: hsl(var(--secondary-foreground) / 1);
}
.focus\:text-secondary-foreground\/15:focus{
  color: hsl(var(--secondary-foreground) / 0.15);
}
.focus\:text-secondary-foreground\/20:focus{
  color: hsl(var(--secondary-foreground) / 0.2);
}
.focus\:text-secondary-foreground\/25:focus{
  color: hsl(var(--secondary-foreground) / 0.25);
}
.focus\:text-secondary-foreground\/30:focus{
  color: hsl(var(--secondary-foreground) / 0.3);
}
.focus\:text-secondary-foreground\/35:focus{
  color: hsl(var(--secondary-foreground) / 0.35);
}
.focus\:text-secondary-foreground\/40:focus{
  color: hsl(var(--secondary-foreground) / 0.4);
}
.focus\:text-secondary-foreground\/45:focus{
  color: hsl(var(--secondary-foreground) / 0.45);
}
.focus\:text-secondary-foreground\/5:focus{
  color: hsl(var(--secondary-foreground) / 0.05);
}
.focus\:text-secondary-foreground\/50:focus{
  color: hsl(var(--secondary-foreground) / 0.5);
}
.focus\:text-secondary-foreground\/55:focus{
  color: hsl(var(--secondary-foreground) / 0.55);
}
.focus\:text-secondary-foreground\/60:focus{
  color: hsl(var(--secondary-foreground) / 0.6);
}
.focus\:text-secondary-foreground\/65:focus{
  color: hsl(var(--secondary-foreground) / 0.65);
}
.focus\:text-secondary-foreground\/70:focus{
  color: hsl(var(--secondary-foreground) / 0.7);
}
.focus\:text-secondary-foreground\/75:focus{
  color: hsl(var(--secondary-foreground) / 0.75);
}
.focus\:text-secondary-foreground\/80:focus{
  color: hsl(var(--secondary-foreground) / 0.8);
}
.focus\:text-secondary-foreground\/85:focus{
  color: hsl(var(--secondary-foreground) / 0.85);
}
.focus\:text-secondary-foreground\/90:focus{
  color: hsl(var(--secondary-foreground) / 0.9);
}
.focus\:text-secondary-foreground\/95:focus{
  color: hsl(var(--secondary-foreground) / 0.95);
}
.focus\:text-secondary\/0:focus{
  color: hsl(var(--secondary) / 0);
}
.focus\:text-secondary\/10:focus{
  color: hsl(var(--secondary) / 0.1);
}
.focus\:text-secondary\/100:focus{
  color: hsl(var(--secondary) / 1);
}
.focus\:text-secondary\/15:focus{
  color: hsl(var(--secondary) / 0.15);
}
.focus\:text-secondary\/20:focus{
  color: hsl(var(--secondary) / 0.2);
}
.focus\:text-secondary\/25:focus{
  color: hsl(var(--secondary) / 0.25);
}
.focus\:text-secondary\/30:focus{
  color: hsl(var(--secondary) / 0.3);
}
.focus\:text-secondary\/35:focus{
  color: hsl(var(--secondary) / 0.35);
}
.focus\:text-secondary\/40:focus{
  color: hsl(var(--secondary) / 0.4);
}
.focus\:text-secondary\/45:focus{
  color: hsl(var(--secondary) / 0.45);
}
.focus\:text-secondary\/5:focus{
  color: hsl(var(--secondary) / 0.05);
}
.focus\:text-secondary\/50:focus{
  color: hsl(var(--secondary) / 0.5);
}
.focus\:text-secondary\/55:focus{
  color: hsl(var(--secondary) / 0.55);
}
.focus\:text-secondary\/60:focus{
  color: hsl(var(--secondary) / 0.6);
}
.focus\:text-secondary\/65:focus{
  color: hsl(var(--secondary) / 0.65);
}
.focus\:text-secondary\/70:focus{
  color: hsl(var(--secondary) / 0.7);
}
.focus\:text-secondary\/75:focus{
  color: hsl(var(--secondary) / 0.75);
}
.focus\:text-secondary\/80:focus{
  color: hsl(var(--secondary) / 0.8);
}
.focus\:text-secondary\/85:focus{
  color: hsl(var(--secondary) / 0.85);
}
.focus\:text-secondary\/90:focus{
  color: hsl(var(--secondary) / 0.9);
}
.focus\:text-secondary\/95:focus{
  color: hsl(var(--secondary) / 0.95);
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.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);
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.focus\:ring-primary:focus{
  --tw-ring-color: hsl(var(--primary));
}
.focus\:ring-primary\/30:focus{
  --tw-ring-color: hsl(var(--primary) / 0.3);
}
.focus\:ring-ring:focus{
  --tw-ring-color: hsl(var(--ring));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-1:focus-visible{
  --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-primary:focus-visible{
  --tw-ring-color: hsl(var(--primary));
}
.focus-visible\:ring-ring:focus-visible{
  --tw-ring-color: hsl(var(--ring));
}
.focus-visible\:ring-offset-1:focus-visible{
  --tw-ring-offset-width: 1px;
}
.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset-background:focus-visible{
  --tw-ring-offset-color: hsl(var(--background));
}
.active\:border-accent:active{
  border-color: hsl(var(--accent));
}
.active\:border-accent-foreground:active{
  border-color: hsl(var(--accent-foreground));
}
.active\:border-accent-foreground\/0:active{
  border-color: hsl(var(--accent-foreground) / 0);
}
.active\:border-accent-foreground\/10:active{
  border-color: hsl(var(--accent-foreground) / 0.1);
}
.active\:border-accent-foreground\/100:active{
  border-color: hsl(var(--accent-foreground) / 1);
}
.active\:border-accent-foreground\/15:active{
  border-color: hsl(var(--accent-foreground) / 0.15);
}
.active\:border-accent-foreground\/20:active{
  border-color: hsl(var(--accent-foreground) / 0.2);
}
.active\:border-accent-foreground\/25:active{
  border-color: hsl(var(--accent-foreground) / 0.25);
}
.active\:border-accent-foreground\/30:active{
  border-color: hsl(var(--accent-foreground) / 0.3);
}
.active\:border-accent-foreground\/35:active{
  border-color: hsl(var(--accent-foreground) / 0.35);
}
.active\:border-accent-foreground\/40:active{
  border-color: hsl(var(--accent-foreground) / 0.4);
}
.active\:border-accent-foreground\/45:active{
  border-color: hsl(var(--accent-foreground) / 0.45);
}
.active\:border-accent-foreground\/5:active{
  border-color: hsl(var(--accent-foreground) / 0.05);
}
.active\:border-accent-foreground\/50:active{
  border-color: hsl(var(--accent-foreground) / 0.5);
}
.active\:border-accent-foreground\/55:active{
  border-color: hsl(var(--accent-foreground) / 0.55);
}
.active\:border-accent-foreground\/60:active{
  border-color: hsl(var(--accent-foreground) / 0.6);
}
.active\:border-accent-foreground\/65:active{
  border-color: hsl(var(--accent-foreground) / 0.65);
}
.active\:border-accent-foreground\/70:active{
  border-color: hsl(var(--accent-foreground) / 0.7);
}
.active\:border-accent-foreground\/75:active{
  border-color: hsl(var(--accent-foreground) / 0.75);
}
.active\:border-accent-foreground\/80:active{
  border-color: hsl(var(--accent-foreground) / 0.8);
}
.active\:border-accent-foreground\/85:active{
  border-color: hsl(var(--accent-foreground) / 0.85);
}
.active\:border-accent-foreground\/90:active{
  border-color: hsl(var(--accent-foreground) / 0.9);
}
.active\:border-accent-foreground\/95:active{
  border-color: hsl(var(--accent-foreground) / 0.95);
}
.active\:border-accent\/0:active{
  border-color: hsl(var(--accent) / 0);
}
.active\:border-accent\/10:active{
  border-color: hsl(var(--accent) / 0.1);
}
.active\:border-accent\/100:active{
  border-color: hsl(var(--accent) / 1);
}
.active\:border-accent\/15:active{
  border-color: hsl(var(--accent) / 0.15);
}
.active\:border-accent\/20:active{
  border-color: hsl(var(--accent) / 0.2);
}
.active\:border-accent\/25:active{
  border-color: hsl(var(--accent) / 0.25);
}
.active\:border-accent\/30:active{
  border-color: hsl(var(--accent) / 0.3);
}
.active\:border-accent\/35:active{
  border-color: hsl(var(--accent) / 0.35);
}
.active\:border-accent\/40:active{
  border-color: hsl(var(--accent) / 0.4);
}
.active\:border-accent\/45:active{
  border-color: hsl(var(--accent) / 0.45);
}
.active\:border-accent\/5:active{
  border-color: hsl(var(--accent) / 0.05);
}
.active\:border-accent\/50:active{
  border-color: hsl(var(--accent) / 0.5);
}
.active\:border-accent\/55:active{
  border-color: hsl(var(--accent) / 0.55);
}
.active\:border-accent\/60:active{
  border-color: hsl(var(--accent) / 0.6);
}
.active\:border-accent\/65:active{
  border-color: hsl(var(--accent) / 0.65);
}
.active\:border-accent\/70:active{
  border-color: hsl(var(--accent) / 0.7);
}
.active\:border-accent\/75:active{
  border-color: hsl(var(--accent) / 0.75);
}
.active\:border-accent\/80:active{
  border-color: hsl(var(--accent) / 0.8);
}
.active\:border-accent\/85:active{
  border-color: hsl(var(--accent) / 0.85);
}
.active\:border-accent\/90:active{
  border-color: hsl(var(--accent) / 0.9);
}
.active\:border-accent\/95:active{
  border-color: hsl(var(--accent) / 0.95);
}
.active\:border-destructive:active{
  border-color: hsl(var(--destructive));
}
.active\:border-destructive-foreground:active{
  border-color: hsl(var(--destructive-foreground));
}
.active\:border-destructive-foreground\/0:active{
  border-color: hsl(var(--destructive-foreground) / 0);
}
.active\:border-destructive-foreground\/10:active{
  border-color: hsl(var(--destructive-foreground) / 0.1);
}
.active\:border-destructive-foreground\/100:active{
  border-color: hsl(var(--destructive-foreground) / 1);
}
.active\:border-destructive-foreground\/15:active{
  border-color: hsl(var(--destructive-foreground) / 0.15);
}
.active\:border-destructive-foreground\/20:active{
  border-color: hsl(var(--destructive-foreground) / 0.2);
}
.active\:border-destructive-foreground\/25:active{
  border-color: hsl(var(--destructive-foreground) / 0.25);
}
.active\:border-destructive-foreground\/30:active{
  border-color: hsl(var(--destructive-foreground) / 0.3);
}
.active\:border-destructive-foreground\/35:active{
  border-color: hsl(var(--destructive-foreground) / 0.35);
}
.active\:border-destructive-foreground\/40:active{
  border-color: hsl(var(--destructive-foreground) / 0.4);
}
.active\:border-destructive-foreground\/45:active{
  border-color: hsl(var(--destructive-foreground) / 0.45);
}
.active\:border-destructive-foreground\/5:active{
  border-color: hsl(var(--destructive-foreground) / 0.05);
}
.active\:border-destructive-foreground\/50:active{
  border-color: hsl(var(--destructive-foreground) / 0.5);
}
.active\:border-destructive-foreground\/55:active{
  border-color: hsl(var(--destructive-foreground) / 0.55);
}
.active\:border-destructive-foreground\/60:active{
  border-color: hsl(var(--destructive-foreground) / 0.6);
}
.active\:border-destructive-foreground\/65:active{
  border-color: hsl(var(--destructive-foreground) / 0.65);
}
.active\:border-destructive-foreground\/70:active{
  border-color: hsl(var(--destructive-foreground) / 0.7);
}
.active\:border-destructive-foreground\/75:active{
  border-color: hsl(var(--destructive-foreground) / 0.75);
}
.active\:border-destructive-foreground\/80:active{
  border-color: hsl(var(--destructive-foreground) / 0.8);
}
.active\:border-destructive-foreground\/85:active{
  border-color: hsl(var(--destructive-foreground) / 0.85);
}
.active\:border-destructive-foreground\/90:active{
  border-color: hsl(var(--destructive-foreground) / 0.9);
}
.active\:border-destructive-foreground\/95:active{
  border-color: hsl(var(--destructive-foreground) / 0.95);
}
.active\:border-destructive\/0:active{
  border-color: hsl(var(--destructive) / 0);
}
.active\:border-destructive\/10:active{
  border-color: hsl(var(--destructive) / 0.1);
}
.active\:border-destructive\/100:active{
  border-color: hsl(var(--destructive) / 1);
}
.active\:border-destructive\/15:active{
  border-color: hsl(var(--destructive) / 0.15);
}
.active\:border-destructive\/20:active{
  border-color: hsl(var(--destructive) / 0.2);
}
.active\:border-destructive\/25:active{
  border-color: hsl(var(--destructive) / 0.25);
}
.active\:border-destructive\/30:active{
  border-color: hsl(var(--destructive) / 0.3);
}
.active\:border-destructive\/35:active{
  border-color: hsl(var(--destructive) / 0.35);
}
.active\:border-destructive\/40:active{
  border-color: hsl(var(--destructive) / 0.4);
}
.active\:border-destructive\/45:active{
  border-color: hsl(var(--destructive) / 0.45);
}
.active\:border-destructive\/5:active{
  border-color: hsl(var(--destructive) / 0.05);
}
.active\:border-destructive\/50:active{
  border-color: hsl(var(--destructive) / 0.5);
}
.active\:border-destructive\/55:active{
  border-color: hsl(var(--destructive) / 0.55);
}
.active\:border-destructive\/60:active{
  border-color: hsl(var(--destructive) / 0.6);
}
.active\:border-destructive\/65:active{
  border-color: hsl(var(--destructive) / 0.65);
}
.active\:border-destructive\/70:active{
  border-color: hsl(var(--destructive) / 0.7);
}
.active\:border-destructive\/75:active{
  border-color: hsl(var(--destructive) / 0.75);
}
.active\:border-destructive\/80:active{
  border-color: hsl(var(--destructive) / 0.8);
}
.active\:border-destructive\/85:active{
  border-color: hsl(var(--destructive) / 0.85);
}
.active\:border-destructive\/90:active{
  border-color: hsl(var(--destructive) / 0.9);
}
.active\:border-destructive\/95:active{
  border-color: hsl(var(--destructive) / 0.95);
}
.active\:border-muted:active{
  border-color: hsl(var(--muted));
}
.active\:border-muted-foreground:active{
  border-color: hsl(var(--muted-foreground));
}
.active\:border-muted-foreground\/0:active{
  border-color: hsl(var(--muted-foreground) / 0);
}
.active\:border-muted-foreground\/10:active{
  border-color: hsl(var(--muted-foreground) / 0.1);
}
.active\:border-muted-foreground\/100:active{
  border-color: hsl(var(--muted-foreground) / 1);
}
.active\:border-muted-foreground\/15:active{
  border-color: hsl(var(--muted-foreground) / 0.15);
}
.active\:border-muted-foreground\/20:active{
  border-color: hsl(var(--muted-foreground) / 0.2);
}
.active\:border-muted-foreground\/25:active{
  border-color: hsl(var(--muted-foreground) / 0.25);
}
.active\:border-muted-foreground\/30:active{
  border-color: hsl(var(--muted-foreground) / 0.3);
}
.active\:border-muted-foreground\/35:active{
  border-color: hsl(var(--muted-foreground) / 0.35);
}
.active\:border-muted-foreground\/40:active{
  border-color: hsl(var(--muted-foreground) / 0.4);
}
.active\:border-muted-foreground\/45:active{
  border-color: hsl(var(--muted-foreground) / 0.45);
}
.active\:border-muted-foreground\/5:active{
  border-color: hsl(var(--muted-foreground) / 0.05);
}
.active\:border-muted-foreground\/50:active{
  border-color: hsl(var(--muted-foreground) / 0.5);
}
.active\:border-muted-foreground\/55:active{
  border-color: hsl(var(--muted-foreground) / 0.55);
}
.active\:border-muted-foreground\/60:active{
  border-color: hsl(var(--muted-foreground) / 0.6);
}
.active\:border-muted-foreground\/65:active{
  border-color: hsl(var(--muted-foreground) / 0.65);
}
.active\:border-muted-foreground\/70:active{
  border-color: hsl(var(--muted-foreground) / 0.7);
}
.active\:border-muted-foreground\/75:active{
  border-color: hsl(var(--muted-foreground) / 0.75);
}
.active\:border-muted-foreground\/80:active{
  border-color: hsl(var(--muted-foreground) / 0.8);
}
.active\:border-muted-foreground\/85:active{
  border-color: hsl(var(--muted-foreground) / 0.85);
}
.active\:border-muted-foreground\/90:active{
  border-color: hsl(var(--muted-foreground) / 0.9);
}
.active\:border-muted-foreground\/95:active{
  border-color: hsl(var(--muted-foreground) / 0.95);
}
.active\:border-muted\/0:active{
  border-color: hsl(var(--muted) / 0);
}
.active\:border-muted\/10:active{
  border-color: hsl(var(--muted) / 0.1);
}
.active\:border-muted\/100:active{
  border-color: hsl(var(--muted) / 1);
}
.active\:border-muted\/15:active{
  border-color: hsl(var(--muted) / 0.15);
}
.active\:border-muted\/20:active{
  border-color: hsl(var(--muted) / 0.2);
}
.active\:border-muted\/25:active{
  border-color: hsl(var(--muted) / 0.25);
}
.active\:border-muted\/30:active{
  border-color: hsl(var(--muted) / 0.3);
}
.active\:border-muted\/35:active{
  border-color: hsl(var(--muted) / 0.35);
}
.active\:border-muted\/40:active{
  border-color: hsl(var(--muted) / 0.4);
}
.active\:border-muted\/45:active{
  border-color: hsl(var(--muted) / 0.45);
}
.active\:border-muted\/5:active{
  border-color: hsl(var(--muted) / 0.05);
}
.active\:border-muted\/50:active{
  border-color: hsl(var(--muted) / 0.5);
}
.active\:border-muted\/55:active{
  border-color: hsl(var(--muted) / 0.55);
}
.active\:border-muted\/60:active{
  border-color: hsl(var(--muted) / 0.6);
}
.active\:border-muted\/65:active{
  border-color: hsl(var(--muted) / 0.65);
}
.active\:border-muted\/70:active{
  border-color: hsl(var(--muted) / 0.7);
}
.active\:border-muted\/75:active{
  border-color: hsl(var(--muted) / 0.75);
}
.active\:border-muted\/80:active{
  border-color: hsl(var(--muted) / 0.8);
}
.active\:border-muted\/85:active{
  border-color: hsl(var(--muted) / 0.85);
}
.active\:border-muted\/90:active{
  border-color: hsl(var(--muted) / 0.9);
}
.active\:border-muted\/95:active{
  border-color: hsl(var(--muted) / 0.95);
}
.active\:border-primary:active{
  border-color: hsl(var(--primary));
}
.active\:border-primary-foreground:active{
  border-color: hsl(var(--primary-foreground));
}
.active\:border-primary-foreground\/0:active{
  border-color: hsl(var(--primary-foreground) / 0);
}
.active\:border-primary-foreground\/10:active{
  border-color: hsl(var(--primary-foreground) / 0.1);
}
.active\:border-primary-foreground\/100:active{
  border-color: hsl(var(--primary-foreground) / 1);
}
.active\:border-primary-foreground\/15:active{
  border-color: hsl(var(--primary-foreground) / 0.15);
}
.active\:border-primary-foreground\/20:active{
  border-color: hsl(var(--primary-foreground) / 0.2);
}
.active\:border-primary-foreground\/25:active{
  border-color: hsl(var(--primary-foreground) / 0.25);
}
.active\:border-primary-foreground\/30:active{
  border-color: hsl(var(--primary-foreground) / 0.3);
}
.active\:border-primary-foreground\/35:active{
  border-color: hsl(var(--primary-foreground) / 0.35);
}
.active\:border-primary-foreground\/40:active{
  border-color: hsl(var(--primary-foreground) / 0.4);
}
.active\:border-primary-foreground\/45:active{
  border-color: hsl(var(--primary-foreground) / 0.45);
}
.active\:border-primary-foreground\/5:active{
  border-color: hsl(var(--primary-foreground) / 0.05);
}
.active\:border-primary-foreground\/50:active{
  border-color: hsl(var(--primary-foreground) / 0.5);
}
.active\:border-primary-foreground\/55:active{
  border-color: hsl(var(--primary-foreground) / 0.55);
}
.active\:border-primary-foreground\/60:active{
  border-color: hsl(var(--primary-foreground) / 0.6);
}
.active\:border-primary-foreground\/65:active{
  border-color: hsl(var(--primary-foreground) / 0.65);
}
.active\:border-primary-foreground\/70:active{
  border-color: hsl(var(--primary-foreground) / 0.7);
}
.active\:border-primary-foreground\/75:active{
  border-color: hsl(var(--primary-foreground) / 0.75);
}
.active\:border-primary-foreground\/80:active{
  border-color: hsl(var(--primary-foreground) / 0.8);
}
.active\:border-primary-foreground\/85:active{
  border-color: hsl(var(--primary-foreground) / 0.85);
}
.active\:border-primary-foreground\/90:active{
  border-color: hsl(var(--primary-foreground) / 0.9);
}
.active\:border-primary-foreground\/95:active{
  border-color: hsl(var(--primary-foreground) / 0.95);
}
.active\:border-primary\/0:active{
  border-color: hsl(var(--primary) / 0);
}
.active\:border-primary\/10:active{
  border-color: hsl(var(--primary) / 0.1);
}
.active\:border-primary\/100:active{
  border-color: hsl(var(--primary) / 1);
}
.active\:border-primary\/15:active{
  border-color: hsl(var(--primary) / 0.15);
}
.active\:border-primary\/20:active{
  border-color: hsl(var(--primary) / 0.2);
}
.active\:border-primary\/25:active{
  border-color: hsl(var(--primary) / 0.25);
}
.active\:border-primary\/30:active{
  border-color: hsl(var(--primary) / 0.3);
}
.active\:border-primary\/35:active{
  border-color: hsl(var(--primary) / 0.35);
}
.active\:border-primary\/40:active{
  border-color: hsl(var(--primary) / 0.4);
}
.active\:border-primary\/45:active{
  border-color: hsl(var(--primary) / 0.45);
}
.active\:border-primary\/5:active{
  border-color: hsl(var(--primary) / 0.05);
}
.active\:border-primary\/50:active{
  border-color: hsl(var(--primary) / 0.5);
}
.active\:border-primary\/55:active{
  border-color: hsl(var(--primary) / 0.55);
}
.active\:border-primary\/60:active{
  border-color: hsl(var(--primary) / 0.6);
}
.active\:border-primary\/65:active{
  border-color: hsl(var(--primary) / 0.65);
}
.active\:border-primary\/70:active{
  border-color: hsl(var(--primary) / 0.7);
}
.active\:border-primary\/75:active{
  border-color: hsl(var(--primary) / 0.75);
}
.active\:border-primary\/80:active{
  border-color: hsl(var(--primary) / 0.8);
}
.active\:border-primary\/85:active{
  border-color: hsl(var(--primary) / 0.85);
}
.active\:border-primary\/90:active{
  border-color: hsl(var(--primary) / 0.9);
}
.active\:border-primary\/95:active{
  border-color: hsl(var(--primary) / 0.95);
}
.active\:border-secondary:active{
  border-color: hsl(var(--secondary));
}
.active\:border-secondary-foreground:active{
  border-color: hsl(var(--secondary-foreground));
}
.active\:border-secondary-foreground\/0:active{
  border-color: hsl(var(--secondary-foreground) / 0);
}
.active\:border-secondary-foreground\/10:active{
  border-color: hsl(var(--secondary-foreground) / 0.1);
}
.active\:border-secondary-foreground\/100:active{
  border-color: hsl(var(--secondary-foreground) / 1);
}
.active\:border-secondary-foreground\/15:active{
  border-color: hsl(var(--secondary-foreground) / 0.15);
}
.active\:border-secondary-foreground\/20:active{
  border-color: hsl(var(--secondary-foreground) / 0.2);
}
.active\:border-secondary-foreground\/25:active{
  border-color: hsl(var(--secondary-foreground) / 0.25);
}
.active\:border-secondary-foreground\/30:active{
  border-color: hsl(var(--secondary-foreground) / 0.3);
}
.active\:border-secondary-foreground\/35:active{
  border-color: hsl(var(--secondary-foreground) / 0.35);
}
.active\:border-secondary-foreground\/40:active{
  border-color: hsl(var(--secondary-foreground) / 0.4);
}
.active\:border-secondary-foreground\/45:active{
  border-color: hsl(var(--secondary-foreground) / 0.45);
}
.active\:border-secondary-foreground\/5:active{
  border-color: hsl(var(--secondary-foreground) / 0.05);
}
.active\:border-secondary-foreground\/50:active{
  border-color: hsl(var(--secondary-foreground) / 0.5);
}
.active\:border-secondary-foreground\/55:active{
  border-color: hsl(var(--secondary-foreground) / 0.55);
}
.active\:border-secondary-foreground\/60:active{
  border-color: hsl(var(--secondary-foreground) / 0.6);
}
.active\:border-secondary-foreground\/65:active{
  border-color: hsl(var(--secondary-foreground) / 0.65);
}
.active\:border-secondary-foreground\/70:active{
  border-color: hsl(var(--secondary-foreground) / 0.7);
}
.active\:border-secondary-foreground\/75:active{
  border-color: hsl(var(--secondary-foreground) / 0.75);
}
.active\:border-secondary-foreground\/80:active{
  border-color: hsl(var(--secondary-foreground) / 0.8);
}
.active\:border-secondary-foreground\/85:active{
  border-color: hsl(var(--secondary-foreground) / 0.85);
}
.active\:border-secondary-foreground\/90:active{
  border-color: hsl(var(--secondary-foreground) / 0.9);
}
.active\:border-secondary-foreground\/95:active{
  border-color: hsl(var(--secondary-foreground) / 0.95);
}
.active\:border-secondary\/0:active{
  border-color: hsl(var(--secondary) / 0);
}
.active\:border-secondary\/10:active{
  border-color: hsl(var(--secondary) / 0.1);
}
.active\:border-secondary\/100:active{
  border-color: hsl(var(--secondary) / 1);
}
.active\:border-secondary\/15:active{
  border-color: hsl(var(--secondary) / 0.15);
}
.active\:border-secondary\/20:active{
  border-color: hsl(var(--secondary) / 0.2);
}
.active\:border-secondary\/25:active{
  border-color: hsl(var(--secondary) / 0.25);
}
.active\:border-secondary\/30:active{
  border-color: hsl(var(--secondary) / 0.3);
}
.active\:border-secondary\/35:active{
  border-color: hsl(var(--secondary) / 0.35);
}
.active\:border-secondary\/40:active{
  border-color: hsl(var(--secondary) / 0.4);
}
.active\:border-secondary\/45:active{
  border-color: hsl(var(--secondary) / 0.45);
}
.active\:border-secondary\/5:active{
  border-color: hsl(var(--secondary) / 0.05);
}
.active\:border-secondary\/50:active{
  border-color: hsl(var(--secondary) / 0.5);
}
.active\:border-secondary\/55:active{
  border-color: hsl(var(--secondary) / 0.55);
}
.active\:border-secondary\/60:active{
  border-color: hsl(var(--secondary) / 0.6);
}
.active\:border-secondary\/65:active{
  border-color: hsl(var(--secondary) / 0.65);
}
.active\:border-secondary\/70:active{
  border-color: hsl(var(--secondary) / 0.7);
}
.active\:border-secondary\/75:active{
  border-color: hsl(var(--secondary) / 0.75);
}
.active\:border-secondary\/80:active{
  border-color: hsl(var(--secondary) / 0.8);
}
.active\:border-secondary\/85:active{
  border-color: hsl(var(--secondary) / 0.85);
}
.active\:border-secondary\/90:active{
  border-color: hsl(var(--secondary) / 0.9);
}
.active\:border-secondary\/95:active{
  border-color: hsl(var(--secondary) / 0.95);
}
.active\:bg-accent:active{
  background-color: hsl(var(--accent));
}
.active\:bg-accent-foreground:active{
  background-color: hsl(var(--accent-foreground));
}
.active\:bg-accent-foreground\/0:active{
  background-color: hsl(var(--accent-foreground) / 0);
}
.active\:bg-accent-foreground\/10:active{
  background-color: hsl(var(--accent-foreground) / 0.1);
}
.active\:bg-accent-foreground\/100:active{
  background-color: hsl(var(--accent-foreground) / 1);
}
.active\:bg-accent-foreground\/15:active{
  background-color: hsl(var(--accent-foreground) / 0.15);
}
.active\:bg-accent-foreground\/20:active{
  background-color: hsl(var(--accent-foreground) / 0.2);
}
.active\:bg-accent-foreground\/25:active{
  background-color: hsl(var(--accent-foreground) / 0.25);
}
.active\:bg-accent-foreground\/30:active{
  background-color: hsl(var(--accent-foreground) / 0.3);
}
.active\:bg-accent-foreground\/35:active{
  background-color: hsl(var(--accent-foreground) / 0.35);
}
.active\:bg-accent-foreground\/40:active{
  background-color: hsl(var(--accent-foreground) / 0.4);
}
.active\:bg-accent-foreground\/45:active{
  background-color: hsl(var(--accent-foreground) / 0.45);
}
.active\:bg-accent-foreground\/5:active{
  background-color: hsl(var(--accent-foreground) / 0.05);
}
.active\:bg-accent-foreground\/50:active{
  background-color: hsl(var(--accent-foreground) / 0.5);
}
.active\:bg-accent-foreground\/55:active{
  background-color: hsl(var(--accent-foreground) / 0.55);
}
.active\:bg-accent-foreground\/60:active{
  background-color: hsl(var(--accent-foreground) / 0.6);
}
.active\:bg-accent-foreground\/65:active{
  background-color: hsl(var(--accent-foreground) / 0.65);
}
.active\:bg-accent-foreground\/70:active{
  background-color: hsl(var(--accent-foreground) / 0.7);
}
.active\:bg-accent-foreground\/75:active{
  background-color: hsl(var(--accent-foreground) / 0.75);
}
.active\:bg-accent-foreground\/80:active{
  background-color: hsl(var(--accent-foreground) / 0.8);
}
.active\:bg-accent-foreground\/85:active{
  background-color: hsl(var(--accent-foreground) / 0.85);
}
.active\:bg-accent-foreground\/90:active{
  background-color: hsl(var(--accent-foreground) / 0.9);
}
.active\:bg-accent-foreground\/95:active{
  background-color: hsl(var(--accent-foreground) / 0.95);
}
.active\:bg-accent\/0:active{
  background-color: hsl(var(--accent) / 0);
}
.active\:bg-accent\/10:active{
  background-color: hsl(var(--accent) / 0.1);
}
.active\:bg-accent\/100:active{
  background-color: hsl(var(--accent) / 1);
}
.active\:bg-accent\/15:active{
  background-color: hsl(var(--accent) / 0.15);
}
.active\:bg-accent\/20:active{
  background-color: hsl(var(--accent) / 0.2);
}
.active\:bg-accent\/25:active{
  background-color: hsl(var(--accent) / 0.25);
}
.active\:bg-accent\/30:active{
  background-color: hsl(var(--accent) / 0.3);
}
.active\:bg-accent\/35:active{
  background-color: hsl(var(--accent) / 0.35);
}
.active\:bg-accent\/40:active{
  background-color: hsl(var(--accent) / 0.4);
}
.active\:bg-accent\/45:active{
  background-color: hsl(var(--accent) / 0.45);
}
.active\:bg-accent\/5:active{
  background-color: hsl(var(--accent) / 0.05);
}
.active\:bg-accent\/50:active{
  background-color: hsl(var(--accent) / 0.5);
}
.active\:bg-accent\/55:active{
  background-color: hsl(var(--accent) / 0.55);
}
.active\:bg-accent\/60:active{
  background-color: hsl(var(--accent) / 0.6);
}
.active\:bg-accent\/65:active{
  background-color: hsl(var(--accent) / 0.65);
}
.active\:bg-accent\/70:active{
  background-color: hsl(var(--accent) / 0.7);
}
.active\:bg-accent\/75:active{
  background-color: hsl(var(--accent) / 0.75);
}
.active\:bg-accent\/80:active{
  background-color: hsl(var(--accent) / 0.8);
}
.active\:bg-accent\/85:active{
  background-color: hsl(var(--accent) / 0.85);
}
.active\:bg-accent\/90:active{
  background-color: hsl(var(--accent) / 0.9);
}
.active\:bg-accent\/95:active{
  background-color: hsl(var(--accent) / 0.95);
}
.active\:bg-destructive:active{
  background-color: hsl(var(--destructive));
}
.active\:bg-destructive-foreground:active{
  background-color: hsl(var(--destructive-foreground));
}
.active\:bg-destructive-foreground\/0:active{
  background-color: hsl(var(--destructive-foreground) / 0);
}
.active\:bg-destructive-foreground\/10:active{
  background-color: hsl(var(--destructive-foreground) / 0.1);
}
.active\:bg-destructive-foreground\/100:active{
  background-color: hsl(var(--destructive-foreground) / 1);
}
.active\:bg-destructive-foreground\/15:active{
  background-color: hsl(var(--destructive-foreground) / 0.15);
}
.active\:bg-destructive-foreground\/20:active{
  background-color: hsl(var(--destructive-foreground) / 0.2);
}
.active\:bg-destructive-foreground\/25:active{
  background-color: hsl(var(--destructive-foreground) / 0.25);
}
.active\:bg-destructive-foreground\/30:active{
  background-color: hsl(var(--destructive-foreground) / 0.3);
}
.active\:bg-destructive-foreground\/35:active{
  background-color: hsl(var(--destructive-foreground) / 0.35);
}
.active\:bg-destructive-foreground\/40:active{
  background-color: hsl(var(--destructive-foreground) / 0.4);
}
.active\:bg-destructive-foreground\/45:active{
  background-color: hsl(var(--destructive-foreground) / 0.45);
}
.active\:bg-destructive-foreground\/5:active{
  background-color: hsl(var(--destructive-foreground) / 0.05);
}
.active\:bg-destructive-foreground\/50:active{
  background-color: hsl(var(--destructive-foreground) / 0.5);
}
.active\:bg-destructive-foreground\/55:active{
  background-color: hsl(var(--destructive-foreground) / 0.55);
}
.active\:bg-destructive-foreground\/60:active{
  background-color: hsl(var(--destructive-foreground) / 0.6);
}
.active\:bg-destructive-foreground\/65:active{
  background-color: hsl(var(--destructive-foreground) / 0.65);
}
.active\:bg-destructive-foreground\/70:active{
  background-color: hsl(var(--destructive-foreground) / 0.7);
}
.active\:bg-destructive-foreground\/75:active{
  background-color: hsl(var(--destructive-foreground) / 0.75);
}
.active\:bg-destructive-foreground\/80:active{
  background-color: hsl(var(--destructive-foreground) / 0.8);
}
.active\:bg-destructive-foreground\/85:active{
  background-color: hsl(var(--destructive-foreground) / 0.85);
}
.active\:bg-destructive-foreground\/90:active{
  background-color: hsl(var(--destructive-foreground) / 0.9);
}
.active\:bg-destructive-foreground\/95:active{
  background-color: hsl(var(--destructive-foreground) / 0.95);
}
.active\:bg-destructive\/0:active{
  background-color: hsl(var(--destructive) / 0);
}
.active\:bg-destructive\/10:active{
  background-color: hsl(var(--destructive) / 0.1);
}
.active\:bg-destructive\/100:active{
  background-color: hsl(var(--destructive) / 1);
}
.active\:bg-destructive\/15:active{
  background-color: hsl(var(--destructive) / 0.15);
}
.active\:bg-destructive\/20:active{
  background-color: hsl(var(--destructive) / 0.2);
}
.active\:bg-destructive\/25:active{
  background-color: hsl(var(--destructive) / 0.25);
}
.active\:bg-destructive\/30:active{
  background-color: hsl(var(--destructive) / 0.3);
}
.active\:bg-destructive\/35:active{
  background-color: hsl(var(--destructive) / 0.35);
}
.active\:bg-destructive\/40:active{
  background-color: hsl(var(--destructive) / 0.4);
}
.active\:bg-destructive\/45:active{
  background-color: hsl(var(--destructive) / 0.45);
}
.active\:bg-destructive\/5:active{
  background-color: hsl(var(--destructive) / 0.05);
}
.active\:bg-destructive\/50:active{
  background-color: hsl(var(--destructive) / 0.5);
}
.active\:bg-destructive\/55:active{
  background-color: hsl(var(--destructive) / 0.55);
}
.active\:bg-destructive\/60:active{
  background-color: hsl(var(--destructive) / 0.6);
}
.active\:bg-destructive\/65:active{
  background-color: hsl(var(--destructive) / 0.65);
}
.active\:bg-destructive\/70:active{
  background-color: hsl(var(--destructive) / 0.7);
}
.active\:bg-destructive\/75:active{
  background-color: hsl(var(--destructive) / 0.75);
}
.active\:bg-destructive\/80:active{
  background-color: hsl(var(--destructive) / 0.8);
}
.active\:bg-destructive\/85:active{
  background-color: hsl(var(--destructive) / 0.85);
}
.active\:bg-destructive\/90:active{
  background-color: hsl(var(--destructive) / 0.9);
}
.active\:bg-destructive\/95:active{
  background-color: hsl(var(--destructive) / 0.95);
}
.active\:bg-muted:active{
  background-color: hsl(var(--muted));
}
.active\:bg-muted-foreground:active{
  background-color: hsl(var(--muted-foreground));
}
.active\:bg-muted-foreground\/0:active{
  background-color: hsl(var(--muted-foreground) / 0);
}
.active\:bg-muted-foreground\/10:active{
  background-color: hsl(var(--muted-foreground) / 0.1);
}
.active\:bg-muted-foreground\/100:active{
  background-color: hsl(var(--muted-foreground) / 1);
}
.active\:bg-muted-foreground\/15:active{
  background-color: hsl(var(--muted-foreground) / 0.15);
}
.active\:bg-muted-foreground\/20:active{
  background-color: hsl(var(--muted-foreground) / 0.2);
}
.active\:bg-muted-foreground\/25:active{
  background-color: hsl(var(--muted-foreground) / 0.25);
}
.active\:bg-muted-foreground\/30:active{
  background-color: hsl(var(--muted-foreground) / 0.3);
}
.active\:bg-muted-foreground\/35:active{
  background-color: hsl(var(--muted-foreground) / 0.35);
}
.active\:bg-muted-foreground\/40:active{
  background-color: hsl(var(--muted-foreground) / 0.4);
}
.active\:bg-muted-foreground\/45:active{
  background-color: hsl(var(--muted-foreground) / 0.45);
}
.active\:bg-muted-foreground\/5:active{
  background-color: hsl(var(--muted-foreground) / 0.05);
}
.active\:bg-muted-foreground\/50:active{
  background-color: hsl(var(--muted-foreground) / 0.5);
}
.active\:bg-muted-foreground\/55:active{
  background-color: hsl(var(--muted-foreground) / 0.55);
}
.active\:bg-muted-foreground\/60:active{
  background-color: hsl(var(--muted-foreground) / 0.6);
}
.active\:bg-muted-foreground\/65:active{
  background-color: hsl(var(--muted-foreground) / 0.65);
}
.active\:bg-muted-foreground\/70:active{
  background-color: hsl(var(--muted-foreground) / 0.7);
}
.active\:bg-muted-foreground\/75:active{
  background-color: hsl(var(--muted-foreground) / 0.75);
}
.active\:bg-muted-foreground\/80:active{
  background-color: hsl(var(--muted-foreground) / 0.8);
}
.active\:bg-muted-foreground\/85:active{
  background-color: hsl(var(--muted-foreground) / 0.85);
}
.active\:bg-muted-foreground\/90:active{
  background-color: hsl(var(--muted-foreground) / 0.9);
}
.active\:bg-muted-foreground\/95:active{
  background-color: hsl(var(--muted-foreground) / 0.95);
}
.active\:bg-muted\/0:active{
  background-color: hsl(var(--muted) / 0);
}
.active\:bg-muted\/10:active{
  background-color: hsl(var(--muted) / 0.1);
}
.active\:bg-muted\/100:active{
  background-color: hsl(var(--muted) / 1);
}
.active\:bg-muted\/15:active{
  background-color: hsl(var(--muted) / 0.15);
}
.active\:bg-muted\/20:active{
  background-color: hsl(var(--muted) / 0.2);
}
.active\:bg-muted\/25:active{
  background-color: hsl(var(--muted) / 0.25);
}
.active\:bg-muted\/30:active{
  background-color: hsl(var(--muted) / 0.3);
}
.active\:bg-muted\/35:active{
  background-color: hsl(var(--muted) / 0.35);
}
.active\:bg-muted\/40:active{
  background-color: hsl(var(--muted) / 0.4);
}
.active\:bg-muted\/45:active{
  background-color: hsl(var(--muted) / 0.45);
}
.active\:bg-muted\/5:active{
  background-color: hsl(var(--muted) / 0.05);
}
.active\:bg-muted\/50:active{
  background-color: hsl(var(--muted) / 0.5);
}
.active\:bg-muted\/55:active{
  background-color: hsl(var(--muted) / 0.55);
}
.active\:bg-muted\/60:active{
  background-color: hsl(var(--muted) / 0.6);
}
.active\:bg-muted\/65:active{
  background-color: hsl(var(--muted) / 0.65);
}
.active\:bg-muted\/70:active{
  background-color: hsl(var(--muted) / 0.7);
}
.active\:bg-muted\/75:active{
  background-color: hsl(var(--muted) / 0.75);
}
.active\:bg-muted\/80:active{
  background-color: hsl(var(--muted) / 0.8);
}
.active\:bg-muted\/85:active{
  background-color: hsl(var(--muted) / 0.85);
}
.active\:bg-muted\/90:active{
  background-color: hsl(var(--muted) / 0.9);
}
.active\:bg-muted\/95:active{
  background-color: hsl(var(--muted) / 0.95);
}
.active\:bg-primary:active{
  background-color: hsl(var(--primary));
}
.active\:bg-primary-foreground:active{
  background-color: hsl(var(--primary-foreground));
}
.active\:bg-primary-foreground\/0:active{
  background-color: hsl(var(--primary-foreground) / 0);
}
.active\:bg-primary-foreground\/10:active{
  background-color: hsl(var(--primary-foreground) / 0.1);
}
.active\:bg-primary-foreground\/100:active{
  background-color: hsl(var(--primary-foreground) / 1);
}
.active\:bg-primary-foreground\/15:active{
  background-color: hsl(var(--primary-foreground) / 0.15);
}
.active\:bg-primary-foreground\/20:active{
  background-color: hsl(var(--primary-foreground) / 0.2);
}
.active\:bg-primary-foreground\/25:active{
  background-color: hsl(var(--primary-foreground) / 0.25);
}
.active\:bg-primary-foreground\/30:active{
  background-color: hsl(var(--primary-foreground) / 0.3);
}
.active\:bg-primary-foreground\/35:active{
  background-color: hsl(var(--primary-foreground) / 0.35);
}
.active\:bg-primary-foreground\/40:active{
  background-color: hsl(var(--primary-foreground) / 0.4);
}
.active\:bg-primary-foreground\/45:active{
  background-color: hsl(var(--primary-foreground) / 0.45);
}
.active\:bg-primary-foreground\/5:active{
  background-color: hsl(var(--primary-foreground) / 0.05);
}
.active\:bg-primary-foreground\/50:active{
  background-color: hsl(var(--primary-foreground) / 0.5);
}
.active\:bg-primary-foreground\/55:active{
  background-color: hsl(var(--primary-foreground) / 0.55);
}
.active\:bg-primary-foreground\/60:active{
  background-color: hsl(var(--primary-foreground) / 0.6);
}
.active\:bg-primary-foreground\/65:active{
  background-color: hsl(var(--primary-foreground) / 0.65);
}
.active\:bg-primary-foreground\/70:active{
  background-color: hsl(var(--primary-foreground) / 0.7);
}
.active\:bg-primary-foreground\/75:active{
  background-color: hsl(var(--primary-foreground) / 0.75);
}
.active\:bg-primary-foreground\/80:active{
  background-color: hsl(var(--primary-foreground) / 0.8);
}
.active\:bg-primary-foreground\/85:active{
  background-color: hsl(var(--primary-foreground) / 0.85);
}
.active\:bg-primary-foreground\/90:active{
  background-color: hsl(var(--primary-foreground) / 0.9);
}
.active\:bg-primary-foreground\/95:active{
  background-color: hsl(var(--primary-foreground) / 0.95);
}
.active\:bg-primary\/0:active{
  background-color: hsl(var(--primary) / 0);
}
.active\:bg-primary\/10:active{
  background-color: hsl(var(--primary) / 0.1);
}
.active\:bg-primary\/100:active{
  background-color: hsl(var(--primary) / 1);
}
.active\:bg-primary\/15:active{
  background-color: hsl(var(--primary) / 0.15);
}
.active\:bg-primary\/20:active{
  background-color: hsl(var(--primary) / 0.2);
}
.active\:bg-primary\/25:active{
  background-color: hsl(var(--primary) / 0.25);
}
.active\:bg-primary\/30:active{
  background-color: hsl(var(--primary) / 0.3);
}
.active\:bg-primary\/35:active{
  background-color: hsl(var(--primary) / 0.35);
}
.active\:bg-primary\/40:active{
  background-color: hsl(var(--primary) / 0.4);
}
.active\:bg-primary\/45:active{
  background-color: hsl(var(--primary) / 0.45);
}
.active\:bg-primary\/5:active{
  background-color: hsl(var(--primary) / 0.05);
}
.active\:bg-primary\/50:active{
  background-color: hsl(var(--primary) / 0.5);
}
.active\:bg-primary\/55:active{
  background-color: hsl(var(--primary) / 0.55);
}
.active\:bg-primary\/60:active{
  background-color: hsl(var(--primary) / 0.6);
}
.active\:bg-primary\/65:active{
  background-color: hsl(var(--primary) / 0.65);
}
.active\:bg-primary\/70:active{
  background-color: hsl(var(--primary) / 0.7);
}
.active\:bg-primary\/75:active{
  background-color: hsl(var(--primary) / 0.75);
}
.active\:bg-primary\/80:active{
  background-color: hsl(var(--primary) / 0.8);
}
.active\:bg-primary\/85:active{
  background-color: hsl(var(--primary) / 0.85);
}
.active\:bg-primary\/90:active{
  background-color: hsl(var(--primary) / 0.9);
}
.active\:bg-primary\/95:active{
  background-color: hsl(var(--primary) / 0.95);
}
.active\:bg-secondary:active{
  background-color: hsl(var(--secondary));
}
.active\:bg-secondary-foreground:active{
  background-color: hsl(var(--secondary-foreground));
}
.active\:bg-secondary-foreground\/0:active{
  background-color: hsl(var(--secondary-foreground) / 0);
}
.active\:bg-secondary-foreground\/10:active{
  background-color: hsl(var(--secondary-foreground) / 0.1);
}
.active\:bg-secondary-foreground\/100:active{
  background-color: hsl(var(--secondary-foreground) / 1);
}
.active\:bg-secondary-foreground\/15:active{
  background-color: hsl(var(--secondary-foreground) / 0.15);
}
.active\:bg-secondary-foreground\/20:active{
  background-color: hsl(var(--secondary-foreground) / 0.2);
}
.active\:bg-secondary-foreground\/25:active{
  background-color: hsl(var(--secondary-foreground) / 0.25);
}
.active\:bg-secondary-foreground\/30:active{
  background-color: hsl(var(--secondary-foreground) / 0.3);
}
.active\:bg-secondary-foreground\/35:active{
  background-color: hsl(var(--secondary-foreground) / 0.35);
}
.active\:bg-secondary-foreground\/40:active{
  background-color: hsl(var(--secondary-foreground) / 0.4);
}
.active\:bg-secondary-foreground\/45:active{
  background-color: hsl(var(--secondary-foreground) / 0.45);
}
.active\:bg-secondary-foreground\/5:active{
  background-color: hsl(var(--secondary-foreground) / 0.05);
}
.active\:bg-secondary-foreground\/50:active{
  background-color: hsl(var(--secondary-foreground) / 0.5);
}
.active\:bg-secondary-foreground\/55:active{
  background-color: hsl(var(--secondary-foreground) / 0.55);
}
.active\:bg-secondary-foreground\/60:active{
  background-color: hsl(var(--secondary-foreground) / 0.6);
}
.active\:bg-secondary-foreground\/65:active{
  background-color: hsl(var(--secondary-foreground) / 0.65);
}
.active\:bg-secondary-foreground\/70:active{
  background-color: hsl(var(--secondary-foreground) / 0.7);
}
.active\:bg-secondary-foreground\/75:active{
  background-color: hsl(var(--secondary-foreground) / 0.75);
}
.active\:bg-secondary-foreground\/80:active{
  background-color: hsl(var(--secondary-foreground) / 0.8);
}
.active\:bg-secondary-foreground\/85:active{
  background-color: hsl(var(--secondary-foreground) / 0.85);
}
.active\:bg-secondary-foreground\/90:active{
  background-color: hsl(var(--secondary-foreground) / 0.9);
}
.active\:bg-secondary-foreground\/95:active{
  background-color: hsl(var(--secondary-foreground) / 0.95);
}
.active\:bg-secondary\/0:active{
  background-color: hsl(var(--secondary) / 0);
}
.active\:bg-secondary\/10:active{
  background-color: hsl(var(--secondary) / 0.1);
}
.active\:bg-secondary\/100:active{
  background-color: hsl(var(--secondary) / 1);
}
.active\:bg-secondary\/15:active{
  background-color: hsl(var(--secondary) / 0.15);
}
.active\:bg-secondary\/20:active{
  background-color: hsl(var(--secondary) / 0.2);
}
.active\:bg-secondary\/25:active{
  background-color: hsl(var(--secondary) / 0.25);
}
.active\:bg-secondary\/30:active{
  background-color: hsl(var(--secondary) / 0.3);
}
.active\:bg-secondary\/35:active{
  background-color: hsl(var(--secondary) / 0.35);
}
.active\:bg-secondary\/40:active{
  background-color: hsl(var(--secondary) / 0.4);
}
.active\:bg-secondary\/45:active{
  background-color: hsl(var(--secondary) / 0.45);
}
.active\:bg-secondary\/5:active{
  background-color: hsl(var(--secondary) / 0.05);
}
.active\:bg-secondary\/50:active{
  background-color: hsl(var(--secondary) / 0.5);
}
.active\:bg-secondary\/55:active{
  background-color: hsl(var(--secondary) / 0.55);
}
.active\:bg-secondary\/60:active{
  background-color: hsl(var(--secondary) / 0.6);
}
.active\:bg-secondary\/65:active{
  background-color: hsl(var(--secondary) / 0.65);
}
.active\:bg-secondary\/70:active{
  background-color: hsl(var(--secondary) / 0.7);
}
.active\:bg-secondary\/75:active{
  background-color: hsl(var(--secondary) / 0.75);
}
.active\:bg-secondary\/80:active{
  background-color: hsl(var(--secondary) / 0.8);
}
.active\:bg-secondary\/85:active{
  background-color: hsl(var(--secondary) / 0.85);
}
.active\:bg-secondary\/90:active{
  background-color: hsl(var(--secondary) / 0.9);
}
.active\:bg-secondary\/95:active{
  background-color: hsl(var(--secondary) / 0.95);
}
.active\:text-accent:active{
  color: hsl(var(--accent));
}
.active\:text-accent-foreground:active{
  color: hsl(var(--accent-foreground));
}
.active\:text-accent-foreground\/0:active{
  color: hsl(var(--accent-foreground) / 0);
}
.active\:text-accent-foreground\/10:active{
  color: hsl(var(--accent-foreground) / 0.1);
}
.active\:text-accent-foreground\/100:active{
  color: hsl(var(--accent-foreground) / 1);
}
.active\:text-accent-foreground\/15:active{
  color: hsl(var(--accent-foreground) / 0.15);
}
.active\:text-accent-foreground\/20:active{
  color: hsl(var(--accent-foreground) / 0.2);
}
.active\:text-accent-foreground\/25:active{
  color: hsl(var(--accent-foreground) / 0.25);
}
.active\:text-accent-foreground\/30:active{
  color: hsl(var(--accent-foreground) / 0.3);
}
.active\:text-accent-foreground\/35:active{
  color: hsl(var(--accent-foreground) / 0.35);
}
.active\:text-accent-foreground\/40:active{
  color: hsl(var(--accent-foreground) / 0.4);
}
.active\:text-accent-foreground\/45:active{
  color: hsl(var(--accent-foreground) / 0.45);
}
.active\:text-accent-foreground\/5:active{
  color: hsl(var(--accent-foreground) / 0.05);
}
.active\:text-accent-foreground\/50:active{
  color: hsl(var(--accent-foreground) / 0.5);
}
.active\:text-accent-foreground\/55:active{
  color: hsl(var(--accent-foreground) / 0.55);
}
.active\:text-accent-foreground\/60:active{
  color: hsl(var(--accent-foreground) / 0.6);
}
.active\:text-accent-foreground\/65:active{
  color: hsl(var(--accent-foreground) / 0.65);
}
.active\:text-accent-foreground\/70:active{
  color: hsl(var(--accent-foreground) / 0.7);
}
.active\:text-accent-foreground\/75:active{
  color: hsl(var(--accent-foreground) / 0.75);
}
.active\:text-accent-foreground\/80:active{
  color: hsl(var(--accent-foreground) / 0.8);
}
.active\:text-accent-foreground\/85:active{
  color: hsl(var(--accent-foreground) / 0.85);
}
.active\:text-accent-foreground\/90:active{
  color: hsl(var(--accent-foreground) / 0.9);
}
.active\:text-accent-foreground\/95:active{
  color: hsl(var(--accent-foreground) / 0.95);
}
.active\:text-accent\/0:active{
  color: hsl(var(--accent) / 0);
}
.active\:text-accent\/10:active{
  color: hsl(var(--accent) / 0.1);
}
.active\:text-accent\/100:active{
  color: hsl(var(--accent) / 1);
}
.active\:text-accent\/15:active{
  color: hsl(var(--accent) / 0.15);
}
.active\:text-accent\/20:active{
  color: hsl(var(--accent) / 0.2);
}
.active\:text-accent\/25:active{
  color: hsl(var(--accent) / 0.25);
}
.active\:text-accent\/30:active{
  color: hsl(var(--accent) / 0.3);
}
.active\:text-accent\/35:active{
  color: hsl(var(--accent) / 0.35);
}
.active\:text-accent\/40:active{
  color: hsl(var(--accent) / 0.4);
}
.active\:text-accent\/45:active{
  color: hsl(var(--accent) / 0.45);
}
.active\:text-accent\/5:active{
  color: hsl(var(--accent) / 0.05);
}
.active\:text-accent\/50:active{
  color: hsl(var(--accent) / 0.5);
}
.active\:text-accent\/55:active{
  color: hsl(var(--accent) / 0.55);
}
.active\:text-accent\/60:active{
  color: hsl(var(--accent) / 0.6);
}
.active\:text-accent\/65:active{
  color: hsl(var(--accent) / 0.65);
}
.active\:text-accent\/70:active{
  color: hsl(var(--accent) / 0.7);
}
.active\:text-accent\/75:active{
  color: hsl(var(--accent) / 0.75);
}
.active\:text-accent\/80:active{
  color: hsl(var(--accent) / 0.8);
}
.active\:text-accent\/85:active{
  color: hsl(var(--accent) / 0.85);
}
.active\:text-accent\/90:active{
  color: hsl(var(--accent) / 0.9);
}
.active\:text-accent\/95:active{
  color: hsl(var(--accent) / 0.95);
}
.active\:text-destructive:active{
  color: hsl(var(--destructive));
}
.active\:text-destructive-foreground:active{
  color: hsl(var(--destructive-foreground));
}
.active\:text-destructive-foreground\/0:active{
  color: hsl(var(--destructive-foreground) / 0);
}
.active\:text-destructive-foreground\/10:active{
  color: hsl(var(--destructive-foreground) / 0.1);
}
.active\:text-destructive-foreground\/100:active{
  color: hsl(var(--destructive-foreground) / 1);
}
.active\:text-destructive-foreground\/15:active{
  color: hsl(var(--destructive-foreground) / 0.15);
}
.active\:text-destructive-foreground\/20:active{
  color: hsl(var(--destructive-foreground) / 0.2);
}
.active\:text-destructive-foreground\/25:active{
  color: hsl(var(--destructive-foreground) / 0.25);
}
.active\:text-destructive-foreground\/30:active{
  color: hsl(var(--destructive-foreground) / 0.3);
}
.active\:text-destructive-foreground\/35:active{
  color: hsl(var(--destructive-foreground) / 0.35);
}
.active\:text-destructive-foreground\/40:active{
  color: hsl(var(--destructive-foreground) / 0.4);
}
.active\:text-destructive-foreground\/45:active{
  color: hsl(var(--destructive-foreground) / 0.45);
}
.active\:text-destructive-foreground\/5:active{
  color: hsl(var(--destructive-foreground) / 0.05);
}
.active\:text-destructive-foreground\/50:active{
  color: hsl(var(--destructive-foreground) / 0.5);
}
.active\:text-destructive-foreground\/55:active{
  color: hsl(var(--destructive-foreground) / 0.55);
}
.active\:text-destructive-foreground\/60:active{
  color: hsl(var(--destructive-foreground) / 0.6);
}
.active\:text-destructive-foreground\/65:active{
  color: hsl(var(--destructive-foreground) / 0.65);
}
.active\:text-destructive-foreground\/70:active{
  color: hsl(var(--destructive-foreground) / 0.7);
}
.active\:text-destructive-foreground\/75:active{
  color: hsl(var(--destructive-foreground) / 0.75);
}
.active\:text-destructive-foreground\/80:active{
  color: hsl(var(--destructive-foreground) / 0.8);
}
.active\:text-destructive-foreground\/85:active{
  color: hsl(var(--destructive-foreground) / 0.85);
}
.active\:text-destructive-foreground\/90:active{
  color: hsl(var(--destructive-foreground) / 0.9);
}
.active\:text-destructive-foreground\/95:active{
  color: hsl(var(--destructive-foreground) / 0.95);
}
.active\:text-destructive\/0:active{
  color: hsl(var(--destructive) / 0);
}
.active\:text-destructive\/10:active{
  color: hsl(var(--destructive) / 0.1);
}
.active\:text-destructive\/100:active{
  color: hsl(var(--destructive) / 1);
}
.active\:text-destructive\/15:active{
  color: hsl(var(--destructive) / 0.15);
}
.active\:text-destructive\/20:active{
  color: hsl(var(--destructive) / 0.2);
}
.active\:text-destructive\/25:active{
  color: hsl(var(--destructive) / 0.25);
}
.active\:text-destructive\/30:active{
  color: hsl(var(--destructive) / 0.3);
}
.active\:text-destructive\/35:active{
  color: hsl(var(--destructive) / 0.35);
}
.active\:text-destructive\/40:active{
  color: hsl(var(--destructive) / 0.4);
}
.active\:text-destructive\/45:active{
  color: hsl(var(--destructive) / 0.45);
}
.active\:text-destructive\/5:active{
  color: hsl(var(--destructive) / 0.05);
}
.active\:text-destructive\/50:active{
  color: hsl(var(--destructive) / 0.5);
}
.active\:text-destructive\/55:active{
  color: hsl(var(--destructive) / 0.55);
}
.active\:text-destructive\/60:active{
  color: hsl(var(--destructive) / 0.6);
}
.active\:text-destructive\/65:active{
  color: hsl(var(--destructive) / 0.65);
}
.active\:text-destructive\/70:active{
  color: hsl(var(--destructive) / 0.7);
}
.active\:text-destructive\/75:active{
  color: hsl(var(--destructive) / 0.75);
}
.active\:text-destructive\/80:active{
  color: hsl(var(--destructive) / 0.8);
}
.active\:text-destructive\/85:active{
  color: hsl(var(--destructive) / 0.85);
}
.active\:text-destructive\/90:active{
  color: hsl(var(--destructive) / 0.9);
}
.active\:text-destructive\/95:active{
  color: hsl(var(--destructive) / 0.95);
}
.active\:text-muted:active{
  color: hsl(var(--muted));
}
.active\:text-muted-foreground:active{
  color: hsl(var(--muted-foreground));
}
.active\:text-muted-foreground\/0:active{
  color: hsl(var(--muted-foreground) / 0);
}
.active\:text-muted-foreground\/10:active{
  color: hsl(var(--muted-foreground) / 0.1);
}
.active\:text-muted-foreground\/100:active{
  color: hsl(var(--muted-foreground) / 1);
}
.active\:text-muted-foreground\/15:active{
  color: hsl(var(--muted-foreground) / 0.15);
}
.active\:text-muted-foreground\/20:active{
  color: hsl(var(--muted-foreground) / 0.2);
}
.active\:text-muted-foreground\/25:active{
  color: hsl(var(--muted-foreground) / 0.25);
}
.active\:text-muted-foreground\/30:active{
  color: hsl(var(--muted-foreground) / 0.3);
}
.active\:text-muted-foreground\/35:active{
  color: hsl(var(--muted-foreground) / 0.35);
}
.active\:text-muted-foreground\/40:active{
  color: hsl(var(--muted-foreground) / 0.4);
}
.active\:text-muted-foreground\/45:active{
  color: hsl(var(--muted-foreground) / 0.45);
}
.active\:text-muted-foreground\/5:active{
  color: hsl(var(--muted-foreground) / 0.05);
}
.active\:text-muted-foreground\/50:active{
  color: hsl(var(--muted-foreground) / 0.5);
}
.active\:text-muted-foreground\/55:active{
  color: hsl(var(--muted-foreground) / 0.55);
}
.active\:text-muted-foreground\/60:active{
  color: hsl(var(--muted-foreground) / 0.6);
}
.active\:text-muted-foreground\/65:active{
  color: hsl(var(--muted-foreground) / 0.65);
}
.active\:text-muted-foreground\/70:active{
  color: hsl(var(--muted-foreground) / 0.7);
}
.active\:text-muted-foreground\/75:active{
  color: hsl(var(--muted-foreground) / 0.75);
}
.active\:text-muted-foreground\/80:active{
  color: hsl(var(--muted-foreground) / 0.8);
}
.active\:text-muted-foreground\/85:active{
  color: hsl(var(--muted-foreground) / 0.85);
}
.active\:text-muted-foreground\/90:active{
  color: hsl(var(--muted-foreground) / 0.9);
}
.active\:text-muted-foreground\/95:active{
  color: hsl(var(--muted-foreground) / 0.95);
}
.active\:text-muted\/0:active{
  color: hsl(var(--muted) / 0);
}
.active\:text-muted\/10:active{
  color: hsl(var(--muted) / 0.1);
}
.active\:text-muted\/100:active{
  color: hsl(var(--muted) / 1);
}
.active\:text-muted\/15:active{
  color: hsl(var(--muted) / 0.15);
}
.active\:text-muted\/20:active{
  color: hsl(var(--muted) / 0.2);
}
.active\:text-muted\/25:active{
  color: hsl(var(--muted) / 0.25);
}
.active\:text-muted\/30:active{
  color: hsl(var(--muted) / 0.3);
}
.active\:text-muted\/35:active{
  color: hsl(var(--muted) / 0.35);
}
.active\:text-muted\/40:active{
  color: hsl(var(--muted) / 0.4);
}
.active\:text-muted\/45:active{
  color: hsl(var(--muted) / 0.45);
}
.active\:text-muted\/5:active{
  color: hsl(var(--muted) / 0.05);
}
.active\:text-muted\/50:active{
  color: hsl(var(--muted) / 0.5);
}
.active\:text-muted\/55:active{
  color: hsl(var(--muted) / 0.55);
}
.active\:text-muted\/60:active{
  color: hsl(var(--muted) / 0.6);
}
.active\:text-muted\/65:active{
  color: hsl(var(--muted) / 0.65);
}
.active\:text-muted\/70:active{
  color: hsl(var(--muted) / 0.7);
}
.active\:text-muted\/75:active{
  color: hsl(var(--muted) / 0.75);
}
.active\:text-muted\/80:active{
  color: hsl(var(--muted) / 0.8);
}
.active\:text-muted\/85:active{
  color: hsl(var(--muted) / 0.85);
}
.active\:text-muted\/90:active{
  color: hsl(var(--muted) / 0.9);
}
.active\:text-muted\/95:active{
  color: hsl(var(--muted) / 0.95);
}
.active\:text-primary:active{
  color: hsl(var(--primary));
}
.active\:text-primary-foreground:active{
  color: hsl(var(--primary-foreground));
}
.active\:text-primary-foreground\/0:active{
  color: hsl(var(--primary-foreground) / 0);
}
.active\:text-primary-foreground\/10:active{
  color: hsl(var(--primary-foreground) / 0.1);
}
.active\:text-primary-foreground\/100:active{
  color: hsl(var(--primary-foreground) / 1);
}
.active\:text-primary-foreground\/15:active{
  color: hsl(var(--primary-foreground) / 0.15);
}
.active\:text-primary-foreground\/20:active{
  color: hsl(var(--primary-foreground) / 0.2);
}
.active\:text-primary-foreground\/25:active{
  color: hsl(var(--primary-foreground) / 0.25);
}
.active\:text-primary-foreground\/30:active{
  color: hsl(var(--primary-foreground) / 0.3);
}
.active\:text-primary-foreground\/35:active{
  color: hsl(var(--primary-foreground) / 0.35);
}
.active\:text-primary-foreground\/40:active{
  color: hsl(var(--primary-foreground) / 0.4);
}
.active\:text-primary-foreground\/45:active{
  color: hsl(var(--primary-foreground) / 0.45);
}
.active\:text-primary-foreground\/5:active{
  color: hsl(var(--primary-foreground) / 0.05);
}
.active\:text-primary-foreground\/50:active{
  color: hsl(var(--primary-foreground) / 0.5);
}
.active\:text-primary-foreground\/55:active{
  color: hsl(var(--primary-foreground) / 0.55);
}
.active\:text-primary-foreground\/60:active{
  color: hsl(var(--primary-foreground) / 0.6);
}
.active\:text-primary-foreground\/65:active{
  color: hsl(var(--primary-foreground) / 0.65);
}
.active\:text-primary-foreground\/70:active{
  color: hsl(var(--primary-foreground) / 0.7);
}
.active\:text-primary-foreground\/75:active{
  color: hsl(var(--primary-foreground) / 0.75);
}
.active\:text-primary-foreground\/80:active{
  color: hsl(var(--primary-foreground) / 0.8);
}
.active\:text-primary-foreground\/85:active{
  color: hsl(var(--primary-foreground) / 0.85);
}
.active\:text-primary-foreground\/90:active{
  color: hsl(var(--primary-foreground) / 0.9);
}
.active\:text-primary-foreground\/95:active{
  color: hsl(var(--primary-foreground) / 0.95);
}
.active\:text-primary\/0:active{
  color: hsl(var(--primary) / 0);
}
.active\:text-primary\/10:active{
  color: hsl(var(--primary) / 0.1);
}
.active\:text-primary\/100:active{
  color: hsl(var(--primary) / 1);
}
.active\:text-primary\/15:active{
  color: hsl(var(--primary) / 0.15);
}
.active\:text-primary\/20:active{
  color: hsl(var(--primary) / 0.2);
}
.active\:text-primary\/25:active{
  color: hsl(var(--primary) / 0.25);
}
.active\:text-primary\/30:active{
  color: hsl(var(--primary) / 0.3);
}
.active\:text-primary\/35:active{
  color: hsl(var(--primary) / 0.35);
}
.active\:text-primary\/40:active{
  color: hsl(var(--primary) / 0.4);
}
.active\:text-primary\/45:active{
  color: hsl(var(--primary) / 0.45);
}
.active\:text-primary\/5:active{
  color: hsl(var(--primary) / 0.05);
}
.active\:text-primary\/50:active{
  color: hsl(var(--primary) / 0.5);
}
.active\:text-primary\/55:active{
  color: hsl(var(--primary) / 0.55);
}
.active\:text-primary\/60:active{
  color: hsl(var(--primary) / 0.6);
}
.active\:text-primary\/65:active{
  color: hsl(var(--primary) / 0.65);
}
.active\:text-primary\/70:active{
  color: hsl(var(--primary) / 0.7);
}
.active\:text-primary\/75:active{
  color: hsl(var(--primary) / 0.75);
}
.active\:text-primary\/80:active{
  color: hsl(var(--primary) / 0.8);
}
.active\:text-primary\/85:active{
  color: hsl(var(--primary) / 0.85);
}
.active\:text-primary\/90:active{
  color: hsl(var(--primary) / 0.9);
}
.active\:text-primary\/95:active{
  color: hsl(var(--primary) / 0.95);
}
.active\:text-secondary:active{
  color: hsl(var(--secondary));
}
.active\:text-secondary-foreground:active{
  color: hsl(var(--secondary-foreground));
}
.active\:text-secondary-foreground\/0:active{
  color: hsl(var(--secondary-foreground) / 0);
}
.active\:text-secondary-foreground\/10:active{
  color: hsl(var(--secondary-foreground) / 0.1);
}
.active\:text-secondary-foreground\/100:active{
  color: hsl(var(--secondary-foreground) / 1);
}
.active\:text-secondary-foreground\/15:active{
  color: hsl(var(--secondary-foreground) / 0.15);
}
.active\:text-secondary-foreground\/20:active{
  color: hsl(var(--secondary-foreground) / 0.2);
}
.active\:text-secondary-foreground\/25:active{
  color: hsl(var(--secondary-foreground) / 0.25);
}
.active\:text-secondary-foreground\/30:active{
  color: hsl(var(--secondary-foreground) / 0.3);
}
.active\:text-secondary-foreground\/35:active{
  color: hsl(var(--secondary-foreground) / 0.35);
}
.active\:text-secondary-foreground\/40:active{
  color: hsl(var(--secondary-foreground) / 0.4);
}
.active\:text-secondary-foreground\/45:active{
  color: hsl(var(--secondary-foreground) / 0.45);
}
.active\:text-secondary-foreground\/5:active{
  color: hsl(var(--secondary-foreground) / 0.05);
}
.active\:text-secondary-foreground\/50:active{
  color: hsl(var(--secondary-foreground) / 0.5);
}
.active\:text-secondary-foreground\/55:active{
  color: hsl(var(--secondary-foreground) / 0.55);
}
.active\:text-secondary-foreground\/60:active{
  color: hsl(var(--secondary-foreground) / 0.6);
}
.active\:text-secondary-foreground\/65:active{
  color: hsl(var(--secondary-foreground) / 0.65);
}
.active\:text-secondary-foreground\/70:active{
  color: hsl(var(--secondary-foreground) / 0.7);
}
.active\:text-secondary-foreground\/75:active{
  color: hsl(var(--secondary-foreground) / 0.75);
}
.active\:text-secondary-foreground\/80:active{
  color: hsl(var(--secondary-foreground) / 0.8);
}
.active\:text-secondary-foreground\/85:active{
  color: hsl(var(--secondary-foreground) / 0.85);
}
.active\:text-secondary-foreground\/90:active{
  color: hsl(var(--secondary-foreground) / 0.9);
}
.active\:text-secondary-foreground\/95:active{
  color: hsl(var(--secondary-foreground) / 0.95);
}
.active\:text-secondary\/0:active{
  color: hsl(var(--secondary) / 0);
}
.active\:text-secondary\/10:active{
  color: hsl(var(--secondary) / 0.1);
}
.active\:text-secondary\/100:active{
  color: hsl(var(--secondary) / 1);
}
.active\:text-secondary\/15:active{
  color: hsl(var(--secondary) / 0.15);
}
.active\:text-secondary\/20:active{
  color: hsl(var(--secondary) / 0.2);
}
.active\:text-secondary\/25:active{
  color: hsl(var(--secondary) / 0.25);
}
.active\:text-secondary\/30:active{
  color: hsl(var(--secondary) / 0.3);
}
.active\:text-secondary\/35:active{
  color: hsl(var(--secondary) / 0.35);
}
.active\:text-secondary\/40:active{
  color: hsl(var(--secondary) / 0.4);
}
.active\:text-secondary\/45:active{
  color: hsl(var(--secondary) / 0.45);
}
.active\:text-secondary\/5:active{
  color: hsl(var(--secondary) / 0.05);
}
.active\:text-secondary\/50:active{
  color: hsl(var(--secondary) / 0.5);
}
.active\:text-secondary\/55:active{
  color: hsl(var(--secondary) / 0.55);
}
.active\:text-secondary\/60:active{
  color: hsl(var(--secondary) / 0.6);
}
.active\:text-secondary\/65:active{
  color: hsl(var(--secondary) / 0.65);
}
.active\:text-secondary\/70:active{
  color: hsl(var(--secondary) / 0.7);
}
.active\:text-secondary\/75:active{
  color: hsl(var(--secondary) / 0.75);
}
.active\:text-secondary\/80:active{
  color: hsl(var(--secondary) / 0.8);
}
.active\:text-secondary\/85:active{
  color: hsl(var(--secondary) / 0.85);
}
.active\:text-secondary\/90:active{
  color: hsl(var(--secondary) / 0.9);
}
.active\:text-secondary\/95:active{
  color: hsl(var(--secondary) / 0.95);
}
.disabled\:pointer-events-none:disabled{
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:bg-gray-100:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.group:hover .group-hover\:visible{
  visibility: visible;
}
.group:hover .group-hover\:-translate-x-1{
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-x-0\.5{
  --tw-translate-x: 0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-x-1{
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-primary{
  background-color: hsl(var(--primary));
}
.group:hover .group-hover\:bg-primary\/40{
  background-color: hsl(var(--primary) / 0.4);
}
.group:hover .group-hover\:from-gray-900\/40{
  --tw-gradient-from: rgb(17 24 39 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.group:hover .group-hover\:text-current{
  color: currentColor;
}
.group:hover .group-hover\:text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-primary{
  color: hsl(var(--primary));
}
.group:hover .group-hover\:text-primary-foreground{
  color: hsl(var(--primary-foreground));
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.group:hover .group-hover\:shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group.toaster .group-\[\.toaster\]\:border-border{
  border-color: hsl(var(--border));
}
.group.toast .group-\[\.toast\]\:bg-muted{
  background-color: hsl(var(--muted));
}
.group.toast .group-\[\.toast\]\:bg-primary{
  background-color: hsl(var(--primary));
}
.group.toaster .group-\[\.toaster\]\:bg-background{
  background-color: hsl(var(--background));
}
.group.toast .group-\[\.toast\]\:text-muted-foreground{
  color: hsl(var(--muted-foreground));
}
.group.toast .group-\[\.toast\]\:text-primary-foreground{
  color: hsl(var(--primary-foreground));
}
.group.toaster .group-\[\.toaster\]\:text-foreground{
  color: hsl(var(--foreground));
}
.group.toaster .group-\[\.toaster\]\:shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.peer:disabled ~ .peer-disabled\:cursor-not-allowed{
  cursor: not-allowed;
}
.peer:disabled ~ .peer-disabled\:opacity-70{
  opacity: 0.7;
}
.has-\[\:disabled\]\:opacity-50:has(:disabled){
  opacity: 0.5;
}
.aria-disabled\:opacity-50[aria-disabled="true"]{
  opacity: 0.5;
}
.aria-selected\:text-muted-foreground[aria-selected="true"]{
  color: hsl(var(--muted-foreground));
}
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"]{
  pointer-events: none;
}
.data-\[disabled\]\:pointer-events-none[data-disabled]{
  pointer-events: none;
}
.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction="vertical"]{
  height: 1px;
}
.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction="vertical"]{
  width: 100%;
}
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"]{
  --tw-translate-y: 0.25rem;
  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));
}
.data-\[side\=left\]\:-translate-x-1[data-side="left"]{
  --tw-translate-x: -0.25rem;
  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));
}
.data-\[side\=right\]\:translate-x-1[data-side="right"]{
  --tw-translate-x: 0.25rem;
  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));
}
.data-\[side\=top\]\:-translate-y-1[data-side="top"]{
  --tw-translate-y: -0.25rem;
  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));
}
.data-\[state\=checked\]\:translate-x-5[data-state="checked"]{
  --tw-translate-x: 1.25rem;
  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));
}
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"]{
  --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));
}
@keyframes accordion-up{
  from{
    height: var(--radix-accordion-content-height);
  }
  to{
    height: 0;
  }
}
.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"]{
  animation: accordion-up 0.2s ease-out;
}
@keyframes accordion-down{
  from{
    height: 0;
  }
  to{
    height: var(--radix-accordion-content-height);
  }
}
.data-\[state\=open\]\:animate-accordion-down[data-state="open"]{
  animation: accordion-down 0.2s ease-out;
}
.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction="vertical"]{
  flex-direction: column;
}
.data-\[range-end\=true\]\:rounded-md[data-range-end="true"]{
  border-radius: calc(var(--radius) - 2px);
}
.data-\[range-middle\=true\]\:rounded-none[data-range-middle="true"]{
  border-radius: 0px;
}
.data-\[range-start\=true\]\:rounded-md[data-range-start="true"]{
  border-radius: calc(var(--radius) - 2px);
}
.data-\[selected\=true\]\:rounded-none[data-selected="true"]{
  border-radius: 0px;
}
.data-\[range-end\=true\]\:bg-primary[data-range-end="true"]{
  background-color: hsl(var(--primary));
}
.data-\[range-middle\=true\]\:bg-accent[data-range-middle="true"]{
  background-color: hsl(var(--accent));
}
.data-\[range-start\=true\]\:bg-primary[data-range-start="true"]{
  background-color: hsl(var(--primary));
}
.data-\[selected-single\=true\]\:bg-primary[data-selected-single="true"]{
  background-color: hsl(var(--primary));
}
.data-\[selected\=\'true\'\]\:bg-accent[data-selected='true']{
  background-color: hsl(var(--accent));
}
.data-\[state\=active\]\:bg-background[data-state="active"]{
  background-color: hsl(var(--background));
}
.data-\[state\=checked\]\:bg-primary[data-state="checked"]{
  background-color: hsl(var(--primary));
}
.data-\[state\=on\]\:bg-accent[data-state="on"]{
  background-color: hsl(var(--accent));
}
.data-\[state\=open\]\:bg-accent[data-state="open"]{
  background-color: hsl(var(--accent));
}
.data-\[state\=open\]\:bg-accent\/50[data-state="open"]{
  background-color: hsl(var(--accent) / 0.5);
}
.data-\[state\=open\]\:bg-secondary[data-state="open"]{
  background-color: hsl(var(--secondary));
}
.data-\[state\=selected\]\:bg-muted[data-state="selected"]{
  background-color: hsl(var(--muted));
}
.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"]{
  background-color: hsl(var(--input));
}
.data-\[placeholder\]\:text-muted-foreground[data-placeholder]{
  color: hsl(var(--muted-foreground));
}
.data-\[range-end\=true\]\:text-primary-foreground[data-range-end="true"]{
  color: hsl(var(--primary-foreground));
}
.data-\[range-middle\=true\]\:text-accent-foreground[data-range-middle="true"]{
  color: hsl(var(--accent-foreground));
}
.data-\[range-start\=true\]\:text-primary-foreground[data-range-start="true"]{
  color: hsl(var(--primary-foreground));
}
.data-\[selected-single\=true\]\:text-primary-foreground[data-selected-single="true"]{
  color: hsl(var(--primary-foreground));
}
.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"]{
  color: hsl(var(--accent-foreground));
}
.data-\[state\=active\]\:text-foreground[data-state="active"]{
  color: hsl(var(--foreground));
}
.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"]{
  color: hsl(var(--primary-foreground));
}
.data-\[state\=on\]\:text-accent-foreground[data-state="on"]{
  color: hsl(var(--accent-foreground));
}
.data-\[state\=open\]\:text-accent-foreground[data-state="open"]{
  color: hsl(var(--accent-foreground));
}
.data-\[state\=open\]\:text-muted-foreground[data-state="open"]{
  color: hsl(var(--muted-foreground));
}
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"]{
  opacity: 0.5;
}
.data-\[disabled\]\:opacity-50[data-disabled]{
  opacity: 0.5;
}
.data-\[state\=active\]\:shadow-sm[data-state="active"]{
  --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);
}
.data-\[state\=closed\]\:duration-300[data-state="closed"]{
  transition-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"]{
  transition-duration: 500ms;
}
.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=open\]\:animate-in[data-state="open"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=visible\]\:animate-in[data-state="visible"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[motion\^\=to-\]\:animate-out[data-motion^="to-"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=hidden\]\:animate-out[data-state="hidden"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"]{
  --tw-enter-opacity: 0;
}
.data-\[motion\^\=to-\]\:fade-out[data-motion^="to-"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=hidden\]\:fade-out[data-state="hidden"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"]{
  --tw-enter-opacity: 0;
}
.data-\[state\=visible\]\:fade-in[data-state="visible"]{
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"]{
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-90[data-state="open"]{
  --tw-enter-scale: .9;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"]{
  --tw-enter-scale: .95;
}
.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"]{
  --tw-enter-translate-x: 13rem;
}
.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"]{
  --tw-enter-translate-x: -13rem;
}
.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"]{
  --tw-exit-translate-x: 13rem;
}
.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"]{
  --tw-exit-translate-x: -13rem;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"]{
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"]{
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"]{
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"]{
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"]{
  --tw-exit-translate-y: 100%;
}
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"]{
  --tw-exit-translate-x: -100%;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"]{
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"]{
  --tw-exit-translate-x: 100%;
}
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"]{
  --tw-exit-translate-y: -100%;
}
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"]{
  --tw-exit-translate-y: -48%;
}
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"]{
  --tw-enter-translate-y: 100%;
}
.data-\[state\=open\]\:slide-in-from-left[data-state="open"]{
  --tw-enter-translate-x: -100%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"]{
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-right[data-state="open"]{
  --tw-enter-translate-x: 100%;
}
.data-\[state\=open\]\:slide-in-from-top[data-state="open"]{
  --tw-enter-translate-y: -100%;
}
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"]{
  --tw-enter-translate-y: -48%;
}
.data-\[state\=closed\]\:duration-300[data-state="closed"]{
  animation-duration: 300ms;
}
.data-\[state\=open\]\:duration-500[data-state="open"]{
  animation-duration: 500ms;
}
.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"] {
    animation-duration: 0.2s;
    animation-fill-mode: both;
  }
.data-\[state\=open\]\:animate-in[data-state="open"] {
    animation-duration: 0.2s;
    animation-fill-mode: both;
  }
.data-\[state\=visible\]\:animate-in[data-state="visible"] {
    animation-duration: 0.2s;
    animation-fill-mode: both;
  }
.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"] {
    animation-name: fadeIn;
  }
.data-\[state\=visible\]\:fade-in[data-state="visible"] {
    animation-name: fadeIn;
  }
.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  left: 0px;
}
.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  height: 0.25rem;
}
.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  width: 100%;
}
.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  --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));
}
.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  --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));
}
.data-\[state\=open\]\:hover\:bg-accent:hover[data-state="open"]{
  background-color: hsl(var(--accent));
}
.data-\[state\=open\]\:focus\:bg-accent:focus[data-state="open"]{
  background-color: hsl(var(--accent));
}
.group\/day[data-focused="true"] .group-data-\[focused\=true\]\/day\:relative{
  position: relative;
}
.group\/day[data-focused="true"] .group-data-\[focused\=true\]\/day\:z-10{
  z-index: 10;
}
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/day[data-focused="true"] .group-data-\[focused\=true\]\/day\:border-ring{
  border-color: hsl(var(--ring));
}
.group\/day[data-focused="true"] .group-data-\[focused\=true\]\/day\:ring-\[3px\]{
  --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);
}
.group\/day[data-focused="true"] .group-data-\[focused\=true\]\/day\:ring-ring\/50{
  --tw-ring-color: hsl(var(--ring) / 0.5);
}
@media (min-width: 640px){
  .sm\:right-4{
    right: 1rem;
  }
  .sm\:top-4{
    top: 1rem;
  }
  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .sm\:mb-10{
    margin-bottom: 2.5rem;
  }
  .sm\:mb-16{
    margin-bottom: 4rem;
  }
  .sm\:mb-4{
    margin-bottom: 1rem;
  }
  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }
  .sm\:mb-8{
    margin-bottom: 2rem;
  }
  .sm\:mt-0{
    margin-top: 0px;
  }
  .sm\:mt-12{
    margin-top: 3rem;
  }
  .sm\:block{
    display: block;
  }
  .sm\:inline{
    display: inline;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:h-10{
    height: 2.5rem;
  }
  .sm\:h-12{
    height: 3rem;
  }
  .sm\:h-14{
    height: 3.5rem;
  }
  .sm\:h-16{
    height: 4rem;
  }
  .sm\:h-3\.5{
    height: 0.875rem;
  }
  .sm\:h-4{
    height: 1rem;
  }
  .sm\:h-6{
    height: 1.5rem;
  }
  .sm\:h-64{
    height: 16rem;
  }
  .sm\:h-7{
    height: 1.75rem;
  }
  .sm\:h-8{
    height: 2rem;
  }
  .sm\:h-\[18px\]{
    height: 18px;
  }
  .sm\:w-10{
    width: 2.5rem;
  }
  .sm\:w-12{
    width: 3rem;
  }
  .sm\:w-14{
    width: 3.5rem;
  }
  .sm\:w-16{
    width: 4rem;
  }
  .sm\:w-3\.5{
    width: 0.875rem;
  }
  .sm\:w-4{
    width: 1rem;
  }
  .sm\:w-6{
    width: 1.5rem;
  }
  .sm\:w-64{
    width: 16rem;
  }
  .sm\:w-7{
    width: 1.75rem;
  }
  .sm\:w-72{
    width: 18rem;
  }
  .sm\:w-8{
    width: 2rem;
  }
  .sm\:w-\[18px\]{
    width: 18px;
  }
  .sm\:w-auto{
    width: auto;
  }
  .sm\:max-w-md{
    max-width: 28rem;
  }
  .sm\:max-w-sm{
    max-width: 24rem;
  }
  .sm\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .sm\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .sm\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-start{
    justify-content: flex-start;
  }
  .sm\:justify-end{
    justify-content: flex-end;
  }
  .sm\:gap-2{
    gap: 0.5rem;
  }
  .sm\:gap-2\.5{
    gap: 0.625rem;
  }
  .sm\:gap-3{
    gap: 0.75rem;
  }
  .sm\:gap-4{
    gap: 1rem;
  }
  .sm\:gap-6{
    gap: 1.5rem;
  }
  .sm\:gap-8{
    gap: 2rem;
  }
  .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
  }
  .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }
  .sm\:rounded-\[20px\]{
    border-radius: 20px;
  }
  .sm\:rounded-lg{
    border-radius: var(--radius);
  }
  .sm\:p-10{
    padding: 2.5rem;
  }
  .sm\:p-12{
    padding: 3rem;
  }
  .sm\:p-5{
    padding: 1.25rem;
  }
  .sm\:p-6{
    padding: 1.5rem;
  }
  .sm\:p-8{
    padding: 2rem;
  }
  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sm\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
  .sm\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .sm\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .sm\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .sm\:text-left{
    text-align: left;
  }
  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\:text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .sm\:leading-\[1\.08\]{
    line-height: 1.08;
  }
  .sm\:shadow-\[5px_5px_0px_0px_rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
    --tw-shadow: 5px 5px 0px 0px rgba(0,0,0,0.3);
    --tw-shadow-colored: 5px 5px 0px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .sm\:shadow-\[5px_5px_0px_0px_rgba\(255\2c 183\2c 197\2c 0\.8\)\]{
    --tw-shadow: 5px 5px 0px 0px rgba(255,183,197,0.8);
    --tw-shadow-colored: 5px 5px 0px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}
@media (min-width: 768px){
  .md\:absolute{
    position: absolute;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:row-span-2{
    grid-row: span 2 / span 2;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-80{
    height: 20rem;
  }
  .md\:h-\[600px\]{
    height: 600px;
  }
  .md\:h-\[800px\]{
    height: 800px;
  }
  .md\:min-h-\[88vh\]{
    min-height: 88vh;
  }
  .md\:w-\[600px\]{
    width: 600px;
  }
  .md\:w-\[800px\]{
    width: 800px;
  }
  .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]{
    width: var(--radix-navigation-menu-viewport-width);
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-end{
    align-items: flex-end;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-12{
    gap: 3rem;
  }
  .md\:p-14{
    padding: 3.5rem;
  }
  .md\:pt-24{
    padding-top: 6rem;
  }
  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-7xl{
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .md\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px){
  .lg\:static{
    position: static;
  }
  .lg\:sticky{
    position: sticky;
  }
  .lg\:inset-0{
    inset: 0px;
  }
  .lg\:top-24{
    top: 6rem;
  }
  .lg\:col-span-1{
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:translate-x-0{
    --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));
  }
  .lg\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:gap-12{
    gap: 3rem;
  }
  .lg\:gap-16{
    gap: 4rem;
  }
  .lg\:p-12{
    padding: 3rem;
  }
  .lg\:p-6{
    padding: 1.5rem;
  }
  .lg\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media (min-width: 1280px){
  .xl\:w-96{
    width: 24rem;
  }
  .xl\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .xl\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .xl\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:text-7xl{
    font-size: 4.5rem;
    line-height: 1;
  }
}
@media (prefers-color-scheme: dark){
  .dark\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }
  .dark\:border-destructive{
    border-color: hsl(var(--destructive));
  }
  .dark\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }
  .dark\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  }
  .dark\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgb(113 63 18 / var(--tw-border-opacity, 1));
  }
  .dark\:bg-blue-950\/20{
    background-color: rgb(23 37 84 / 0.2);
  }
  .dark\:bg-blue-950\/30{
    background-color: rgb(23 37 84 / 0.3);
  }
  .dark\:bg-green-900\/30{
    background-color: rgb(20 83 45 / 0.3);
  }
  .dark\:bg-green-950\/20{
    background-color: rgb(5 46 22 / 0.2);
  }
  .dark\:bg-red-950\/20{
    background-color: rgb(69 10 10 / 0.2);
  }
  .dark\:bg-yellow-950\/20{
    background-color: rgb(66 32 6 / 0.2);
  }
  .dark\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }
  .dark\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }
  .dark\:text-green-100{
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }
  .dark\:text-green-400{
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }
  .dark\:text-red-100{
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }
  .dark\:text-red-200{
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }
  .dark\:text-red-400{
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }
  .dark\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }
  .dark\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }
}
@media print{
  .print\:mb-6{
    margin-bottom: 1.5rem;
  }
  .print\:mb-8{
    margin-bottom: 2rem;
  }
  .print\:mt-8{
    margin-top: 2rem;
  }
  .print\:hidden{
    display: none;
  }
  .print\:h-16{
    height: 4rem;
  }
  .print\:h-8{
    height: 2rem;
  }
  .print\:w-16{
    width: 4rem;
  }
  .print\:w-8{
    width: 2rem;
  }
  .print\:break-before-page{
    -moz-column-break-before: page;
         break-before: page;
  }
  .print\:break-inside-avoid{
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .print\:rounded-none{
    border-radius: 0px;
  }
  .print\:border{
    border-width: 1px;
  }
  .print\:bg-\[\#E8F4F8\]{
    --tw-bg-opacity: 1;
    background-color: rgb(232 244 248 / var(--tw-bg-opacity, 1));
  }
  .print\:bg-\[\#F0E8F4\]{
    --tw-bg-opacity: 1;
    background-color: rgb(240 232 244 / var(--tw-bg-opacity, 1));
  }
  .print\:bg-\[\#F5F1E8\]{
    --tw-bg-opacity: 1;
    background-color: rgb(245 241 232 / var(--tw-bg-opacity, 1));
  }
  .print\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
  .print\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .print\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .print\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .print\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .print\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .print\:shadow-none{
    --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);
  }
}
.\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md:first-child[data-selected=true] button{
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){
  padding-right: 0px;
}
.\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md:last-child[data-selected=true] button{
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}
.\[\&\>span\]\:line-clamp-1>span{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.\[\&\>span\]\:text-xs>span{
  font-size: 0.75rem;
  line-height: 1rem;
}
.\[\&\>span\]\:opacity-70>span{
  opacity: 0.7;
}
.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{
  --tw-translate-y: -3px;
  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));
}
.\[\&\>svg\]\:absolute>svg{
  position: absolute;
}
.\[\&\>svg\]\:left-4>svg{
  left: 1rem;
}
.\[\&\>svg\]\:top-4>svg{
  top: 1rem;
}
.\[\&\>svg\]\:size-3\.5>svg{
  width: 0.875rem;
  height: 0.875rem;
}
.\[\&\>svg\]\:h-3\.5>svg{
  height: 0.875rem;
}
.\[\&\>svg\]\:w-3\.5>svg{
  width: 0.875rem;
}
.\[\&\>svg\]\:text-destructive>svg{
  color: hsl(var(--destructive));
}
.\[\&\>svg\]\:text-foreground>svg{
  color: hsl(var(--foreground));
}
.\[\&\>svg\]\:text-muted-foreground>svg{
  color: hsl(var(--muted-foreground));
}
.\[\&\>svg\~\*\]\:pl-7>svg~*{
  padding-left: 1.75rem;
}
.\[\&\>tr\]\:last\:border-b-0:last-child>tr{
  border-bottom-width: 0px;
}
.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div{
  --tw-rotate: 90deg;
  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));
}
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{
  --tw-rotate: 180deg;
  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));
}
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{
  font-size: 0.75rem;
  line-height: 1rem;
}
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{
  font-weight: 500;
}
.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{
  color: hsl(var(--muted-foreground));
}
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group]{
  padding-top: 0px;
}
.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg{
  height: 1.25rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg{
  width: 1.25rem;
}
.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{
  height: 3rem;
}
.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg{
  height: 1.25rem;
}
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg{
  width: 1.25rem;
}
.\[\&_blockquote_li\]\:text-\[\#002147\] blockquote li{
  --tw-text-opacity: 1;
  color: rgb(0 33 71 / var(--tw-text-opacity, 1));
}
.\[\&_blockquote_p\]\:font-medium blockquote p{
  font-weight: 500;
}
.\[\&_blockquote_p\]\:text-\[\#002147\] blockquote p{
  --tw-text-opacity: 1;
  color: rgb(0 33 71 / var(--tw-text-opacity, 1));
}
.\[\&_blockquote_ul\]\:text-\[\#002147\] blockquote ul{
  --tw-text-opacity: 1;
  color: rgb(0 33 71 / var(--tw-text-opacity, 1));
}
.\[\&_ol\>li\]\:mb-5 ol>li{
  margin-bottom: 1.25rem;
}
.\[\&_ol\>li\]\:pb-1 ol>li{
  padding-bottom: 0.25rem;
}
.\[\&_ol\>li\]\:leading-\[1\.85\] ol>li{
  line-height: 1.85;
}
.\[\&_p\]\:leading-relaxed p{
  line-height: 1.625;
}
.\[\&_svg\]\:pointer-events-none svg{
  pointer-events: none;
}
.\[\&_svg\]\:size-4 svg{
  width: 1rem;
  height: 1rem;
}
.\[\&_svg\]\:shrink-0 svg{
  flex-shrink: 0;
}
.\[\&_tr\:last-child\]\:border-0 tr:last-child{
  border-width: 0px;
}
.\[\&_tr\]\:border-b tr{
  border-bottom-width: 1px;
}
.\[\&_ul\>li\]\:mb-5 ul>li{
  margin-bottom: 1.25rem;
}
.\[\&_ul\>li\]\:leading-\[1\.85\] ul>li{
  line-height: 1.85;
}
[data-slot=card-content] .\[\[data-slot\=card-content\]_\&\]\:bg-transparent{
  background-color: transparent;
}
[data-slot=popover-content] .\[\[data-slot\=popover-content\]_\&\]\:bg-transparent{
  background-color: transparent;
}
