/*
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)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/

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

:after,:before {
  --un-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.
*/

:host,html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -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 {
  line-height: inherit; /* 2 */
  margin: 0; /* 1 */
}

/*
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 {
  border-top-width: 1px; /* 3 */
  color: inherit; /* 2 */
  height: 0; /* 1 */
}

/*
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,pre,samp {
  font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-size: 1em; /* 4 */
  font-variation-settings: normal; /* 3 */
}

/*
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: -.25em;
}

sup {
  top: -.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 {
  border-collapse: collapse; /* 3 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 1 */
}

/*
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 {
  color: inherit; /* 1 */
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: 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.
*/

[type=button],[type=reset],[type=submit],button {
  -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 for appropriate elements.
*/

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

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 {
  color: #9ca3af; /* 2 */
  opacity: 1; /* 1 */
}

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

/*
Set the default cursor for buttons.
*/

[role=button],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.
*/

audio,canvas,embed,iframe,img,object,svg,video {
  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 {
  height: auto;
  max-width: 100%;
}

/*
Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden=until-found])) {
  display: none;
}
 *,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}/* vietnamese */@font-face {  font-display: swap;  font-family: Chivo;  font-style: normal;  font-weight: 400;  src: url(https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_en2rTN33AiKMJd7E.woff2) format("woff2");  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1, u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329, u+1ea0-1ef9, u+20ab;}/* latin-ext */@font-face {  font-display: swap;  font-family: Chivo;  font-style: normal;  font-weight: 400;  src: url(https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_enmrTN33AiKMJd7E.woff2) format("woff2");  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;}/* latin */@font-face {  font-display: swap;  font-family: Chivo;  font-style: normal;  font-weight: 400;  src: url(https://fonts.gstatic.com/s/chivo/v21/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ekGrTN33AiKMJ.woff2) format("woff2");  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;}/* vietnamese */@font-face {  font-display: swap;  font-family: Chivo Mono;  font-style: normal;  font-weight: 400;  src: url(https://fonts.gstatic.com/s/chivomono/v11/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr5fdIJlp1ml5gmpkuA.woff2) format("woff2");  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1, u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329, u+1ea0-1ef9, u+20ab;}/* latin-ext */@font-face {  font-display: swap;  font-family: Chivo Mono;  font-style: normal;  font-weight: 400;  src: url(https://fonts.gstatic.com/s/chivomono/v11/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr5fcIJlp1ml5gmpkuA.woff2) format("woff2");  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;}/* latin */@font-face {  font-display: swap;  font-family: Chivo Mono;  font-style: normal;  font-weight: 400;  src: url(https://fonts.gstatic.com/s/chivomono/v11/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr5fSIJlp1ml5gmo.woff2) format("woff2");  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;}          @keyframes shadcn-down { 0%{ height: 0 } to { height: var(--radix-accordion-content-height)} }          @keyframes shadcn-up { 0%{ height: var(--radix-accordion-content-height)} to { height: 0 } }          @keyframes shadcn-collapsible-down { 0%{ height: 0 } to { height: var(--radix-collapsible-content-height)} }          @keyframes shadcn-collapsible-up { 0%{ height: var(--radix-collapsible-content-height)} to { height: 0 } }          .theme-zinc {  --background: 0 0% 100%;  --foreground: 240 10% 3.9%;  --card: 0 0% 100%;  --card-foreground: 240 10% 3.9%;  --popover: 0 0% 100%;  --popover-foreground: 240 10% 3.9%;  --primary: 240 5.9% 10%;  --primary-foreground: 0 0% 98%;  --secondary: 240 4.8% 95.9%;  --secondary-foreground: 240 5.9% 10%;  --muted: 240 4.8% 95.9%;  --muted-foreground: 240 3.8% 46.1%;  --accent: 240 4.8% 95.9%;  --accent-foreground: 240 5.9% 10%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 0 0% 98%;  --border: 240 5.9% 90%;  --input: 240 5.9% 90%;  --ring: 240 5.9% 10%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-zinc {  --background: 240 10% 3.9%;  --foreground: 0 0% 98%;  --card: 240 10% 3.9%;  --card-foreground: 0 0% 98%;  --popover: 240 10% 3.9%;  --popover-foreground: 0 0% 98%;  --primary: 0 0% 98%;  --primary-foreground: 240 5.9% 10%;  --secondary: 240 3.7% 15.9%;  --secondary-foreground: 0 0% 98%;  --muted: 240 3.7% 15.9%;  --muted-foreground: 240 5% 64.9%;  --accent: 240 3.7% 15.9%;  --accent-foreground: 0 0% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 0 0% 98%;  --border: 240 3.7% 15.9%;  --input: 240 3.7% 15.9%;  --ring: 240 4.9% 83.9%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-slate {  --background: 0 0% 100%;  --foreground: 222.2 84% 4.9%;  --card: 0 0% 100%;  --card-foreground: 222.2 84% 4.9%;  --popover: 0 0% 100%;  --popover-foreground: 222.2 84% 4.9%;  --primary: 222.2 47.4% 11.2%;  --primary-foreground: 210 40% 98%;  --secondary: 210 40% 96.1%;  --secondary-foreground: 222.2 47.4% 11.2%;  --muted: 210 40% 96.1%;  --muted-foreground: 215.4 16.3% 46.9%;  --accent: 210 40% 96.1%;  --accent-foreground: 222.2 47.4% 11.2%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 210 40% 98%;  --border: 214.3 31.8% 91.4%;  --input: 214.3 31.8% 91.4%;  --ring: 222.2 84% 4.9%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-slate {  --background: 222.2 84% 4.9%;  --foreground: 210 40% 98%;  --card: 222.2 84% 4.9%;  --card-foreground: 210 40% 98%;  --popover: 222.2 84% 4.9%;  --popover-foreground: 210 40% 98%;  --primary: 210 40% 98%;  --primary-foreground: 222.2 47.4% 11.2%;  --secondary: 217.2 32.6% 17.5%;  --secondary-foreground: 210 40% 98%;  --muted: 217.2 32.6% 17.5%;  --muted-foreground: 215 20.2% 65.1%;  --accent: 217.2 32.6% 17.5%;  --accent-foreground: 210 40% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 210 40% 98%;  --border: 217.2 32.6% 17.5%;  --input: 217.2 32.6% 17.5%;  --ring: 212.7 26.8% 83.9%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-stone {  --background: 0 0% 100%;  --foreground: 20 14.3% 4.1%;  --card: 0 0% 100%;  --card-foreground: 20 14.3% 4.1%;  --popover: 0 0% 100%;  --popover-foreground: 20 14.3% 4.1%;  --primary: 24 9.8% 10%;  --primary-foreground: 60 9.1% 97.8%;  --secondary: 60 4.8% 95.9%;  --secondary-foreground: 24 9.8% 10%;  --muted: 60 4.8% 95.9%;  --muted-foreground: 25 5.3% 44.7%;  --accent: 60 4.8% 95.9%;  --accent-foreground: 24 9.8% 10%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 60 9.1% 97.8%;  --border: 20 5.9% 90%;  --input: 20 5.9% 90%;  --ring: 20 14.3% 4.1%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-stone {  --background: 20 14.3% 4.1%;  --foreground: 60 9.1% 97.8%;  --card: 20 14.3% 4.1%;  --card-foreground: 60 9.1% 97.8%;  --popover: 20 14.3% 4.1%;  --popover-foreground: 60 9.1% 97.8%;  --primary: 60 9.1% 97.8%;  --primary-foreground: 24 9.8% 10%;  --secondary: 12 6.5% 15.1%;  --secondary-foreground: 60 9.1% 97.8%;  --muted: 12 6.5% 15.1%;  --muted-foreground: 24 5.4% 63.9%;  --accent: 12 6.5% 15.1%;  --accent-foreground: 60 9.1% 97.8%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 60 9.1% 97.8%;  --border: 12 6.5% 15.1%;  --input: 12 6.5% 15.1%;  --ring: 24 5.7% 82.9%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-gray {  --background: 0 0% 100%;  --foreground: 224 71.4% 4.1%;  --card: 0 0% 100%;  --card-foreground: 224 71.4% 4.1%;  --popover: 0 0% 100%;  --popover-foreground: 224 71.4% 4.1%;  --primary: 220.9 39.3% 11%;  --primary-foreground: 210 20% 98%;  --secondary: 220 14.3% 95.9%;  --secondary-foreground: 220.9 39.3% 11%;  --muted: 220 14.3% 95.9%;  --muted-foreground: 220 8.9% 46.1%;  --accent: 220 14.3% 95.9%;  --accent-foreground: 220.9 39.3% 11%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 210 20% 98%;  --border: 220 13% 91%;  --input: 220 13% 91%;  --ring: 224 71.4% 4.1%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-gray {  --background: 224 71.4% 4.1%;  --foreground: 210 20% 98%;  --card: 224 71.4% 4.1%;  --card-foreground: 210 20% 98%;  --popover: 224 71.4% 4.1%;  --popover-foreground: 210 20% 98%;  --primary: 210 20% 98%;  --primary-foreground: 220.9 39.3% 11%;  --secondary: 215 27.9% 16.9%;  --secondary-foreground: 210 20% 98%;  --muted: 215 27.9% 16.9%;  --muted-foreground: 217.9 10.6% 64.9%;  --accent: 215 27.9% 16.9%;  --accent-foreground: 210 20% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 210 20% 98%;  --border: 215 27.9% 16.9%;  --input: 215 27.9% 16.9%;  --ring: 216 12.2% 83.9%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-neutral {  --background: 0 0% 100%;  --foreground: 0 0% 3.9%;  --card: 0 0% 100%;  --card-foreground: 0 0% 3.9%;  --popover: 0 0% 100%;  --popover-foreground: 0 0% 3.9%;  --primary: 0 0% 9%;  --primary-foreground: 0 0% 98%;  --secondary: 0 0% 96.1%;  --secondary-foreground: 0 0% 9%;  --muted: 0 0% 96.1%;  --muted-foreground: 0 0% 45.1%;  --accent: 0 0% 96.1%;  --accent-foreground: 0 0% 9%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 0 0% 98%;  --border: 0 0% 89.8%;  --input: 0 0% 89.8%;  --ring: 0 0% 3.9%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-neutral {  --background: 0 0% 3.9%;  --foreground: 0 0% 98%;  --card: 0 0% 3.9%;  --card-foreground: 0 0% 98%;  --popover: 0 0% 3.9%;  --popover-foreground: 0 0% 98%;  --primary: 0 0% 98%;  --primary-foreground: 0 0% 9%;  --secondary: 0 0% 14.9%;  --secondary-foreground: 0 0% 98%;  --muted: 0 0% 14.9%;  --muted-foreground: 0 0% 63.9%;  --accent: 0 0% 14.9%;  --accent-foreground: 0 0% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 0 0% 98%;  --border: 0 0% 14.9%;  --input: 0 0% 14.9%;  --ring: 0 0% 83.1%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-red {  --background: 0 0% 100%;  --foreground: 0 0% 3.9%;  --card: 0 0% 100%;  --card-foreground: 0 0% 3.9%;  --popover: 0 0% 100%;  --popover-foreground: 0 0% 3.9%;  --primary: 0 72.2% 50.6%;  --primary-foreground: 0 85.7% 97.3%;  --secondary: 0 0% 96.1%;  --secondary-foreground: 0 0% 9%;  --muted: 0 0% 96.1%;  --muted-foreground: 0 0% 45.1%;  --accent: 0 0% 96.1%;  --accent-foreground: 0 0% 9%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 0 0% 98%;  --border: 0 0% 89.8%;  --input: 0 0% 89.8%;  --ring: 0 72.2% 50.6%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-red {  --background: 0 0% 3.9%;  --foreground: 0 0% 98%;  --card: 0 0% 3.9%;  --card-foreground: 0 0% 98%;  --popover: 0 0% 3.9%;  --popover-foreground: 0 0% 98%;  --primary: 0 72.2% 50.6%;  --primary-foreground: 0 85.7% 97.3%;  --secondary: 0 0% 14.9%;  --secondary-foreground: 0 0% 98%;  --muted: 0 0% 14.9%;  --muted-foreground: 0 0% 63.9%;  --accent: 0 0% 14.9%;  --accent-foreground: 0 0% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 0 0% 98%;  --border: 0 0% 14.9%;  --input: 0 0% 14.9%;  --ring: 0 72.2% 50.6%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-rose {  --background: 0 0% 100%;  --foreground: 240 10% 3.9%;  --card: 0 0% 100%;  --card-foreground: 240 10% 3.9%;  --popover: 0 0% 100%;  --popover-foreground: 240 10% 3.9%;  --primary: 346.8 77.2% 49.8%;  --primary-foreground: 355.7 100% 97.3%;  --secondary: 240 4.8% 95.9%;  --secondary-foreground: 240 5.9% 10%;  --muted: 240 4.8% 95.9%;  --muted-foreground: 240 3.8% 46.1%;  --accent: 240 4.8% 95.9%;  --accent-foreground: 240 5.9% 10%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 0 0% 98%;  --border: 240 5.9% 90%;  --input: 240 5.9% 90%;  --ring: 346.8 77.2% 49.8%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-rose {  --background: 20 14.3% 4.1%;  --foreground: 0 0% 95%;  --popover: 0 0% 9%;  --popover-foreground: 0 0% 95%;  --card: 24 9.8% 10%;  --card-foreground: 0 0% 95%;  --primary: 346.8 77.2% 49.8%;  --primary-foreground: 355.7 100% 97.3%;  --secondary: 240 3.7% 15.9%;  --secondary-foreground: 0 0% 98%;  --muted: 0 0% 15%;  --muted-foreground: 240 5% 64.9%;  --accent: 12 6.5% 15.1%;  --accent-foreground: 0 0% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 0 85.7% 97.3%;  --border: 240 3.7% 15.9%;  --input: 240 3.7% 15.9%;  --ring: 346.8 77.2% 49.8%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-orange {  --background: 0 0% 100%;  --foreground: 20 14.3% 4.1%;  --card: 0 0% 100%;  --card-foreground: 20 14.3% 4.1%;  --popover: 0 0% 100%;  --popover-foreground: 20 14.3% 4.1%;  --primary: 24.6 95% 53.1%;  --primary-foreground: 60 9.1% 97.8%;  --secondary: 60 4.8% 95.9%;  --secondary-foreground: 24 9.8% 10%;  --muted: 60 4.8% 95.9%;  --muted-foreground: 25 5.3% 44.7%;  --accent: 60 4.8% 95.9%;  --accent-foreground: 24 9.8% 10%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 60 9.1% 97.8%;  --border: 20 5.9% 90%;  --input: 20 5.9% 90%;  --ring: 24.6 95% 53.1%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-orange {  --background: 20 14.3% 4.1%;  --foreground: 60 9.1% 97.8%;  --card: 20 14.3% 4.1%;  --card-foreground: 60 9.1% 97.8%;  --popover: 20 14.3% 4.1%;  --popover-foreground: 60 9.1% 97.8%;  --primary: 20.5 90.2% 48.2%;  --primary-foreground: 60 9.1% 97.8%;  --secondary: 12 6.5% 15.1%;  --secondary-foreground: 60 9.1% 97.8%;  --muted: 12 6.5% 15.1%;  --muted-foreground: 24 5.4% 63.9%;  --accent: 12 6.5% 15.1%;  --accent-foreground: 60 9.1% 97.8%;  --destructive: 0 72.2% 50.6%;  --destructive-foreground: 60 9.1% 97.8%;  --border: 12 6.5% 15.1%;  --input: 12 6.5% 15.1%;  --ring: 20.5 90.2% 48.2%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-green {  --background: 0 0% 100%;  --foreground: 240 10% 3.9%;  --card: 0 0% 100%;  --card-foreground: 240 10% 3.9%;  --popover: 0 0% 100%;  --popover-foreground: 240 10% 3.9%;  --primary: 142.1 76.2% 36.3%;  --primary-foreground: 355.7 100% 97.3%;  --secondary: 240 4.8% 95.9%;  --secondary-foreground: 240 5.9% 10%;  --muted: 240 4.8% 95.9%;  --muted-foreground: 240 3.8% 46.1%;  --accent: 240 4.8% 95.9%;  --accent-foreground: 240 5.9% 10%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 0 0% 98%;  --border: 240 5.9% 90%;  --input: 240 5.9% 90%;  --ring: 142.1 76.2% 36.3%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-green {  --background: 20 14.3% 4.1%;  --foreground: 0 0% 95%;  --popover: 0 0% 9%;  --popover-foreground: 0 0% 95%;  --card: 24 9.8% 10%;  --card-foreground: 0 0% 95%;  --primary: 142.1 70.6% 45.3%;  --primary-foreground: 144.9 80.4% 10%;  --secondary: 240 3.7% 15.9%;  --secondary-foreground: 0 0% 98%;  --muted: 0 0% 15%;  --muted-foreground: 240 5% 64.9%;  --accent: 12 6.5% 15.1%;  --accent-foreground: 0 0% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 0 85.7% 97.3%;  --border: 240 3.7% 15.9%;  --input: 240 3.7% 15.9%;  --ring: 142.4 71.8% 29.2%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-blue {  --background: 0 0% 100%;  --foreground: 222.2 84% 4.9%;  --card: 0 0% 100%;  --card-foreground: 222.2 84% 4.9%;  --popover: 0 0% 100%;  --popover-foreground: 222.2 84% 4.9%;  --primary: 221.2 83.2% 53.3%;  --primary-foreground: 210 40% 98%;  --secondary: 210 40% 96.1%;  --secondary-foreground: 222.2 47.4% 11.2%;  --muted: 210 40% 96.1%;  --muted-foreground: 215.4 16.3% 46.9%;  --accent: 210 40% 96.1%;  --accent-foreground: 222.2 47.4% 11.2%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 210 40% 98%;  --border: 214.3 31.8% 91.4%;  --input: 214.3 31.8% 91.4%;  --ring: 221.2 83.2% 53.3%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-blue {  --background: 222.2 84% 4.9%;  --foreground: 210 40% 98%;  --card: 222.2 84% 4.9%;  --card-foreground: 210 40% 98%;  --popover: 222.2 84% 4.9%;  --popover-foreground: 210 40% 98%;  --primary: 217.2 91.2% 59.8%;  --primary-foreground: 222.2 47.4% 11.2%;  --secondary: 217.2 32.6% 17.5%;  --secondary-foreground: 210 40% 98%;  --muted: 217.2 32.6% 17.5%;  --muted-foreground: 215 20.2% 65.1%;  --accent: 217.2 32.6% 17.5%;  --accent-foreground: 210 40% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 210 40% 98%;  --border: 217.2 32.6% 17.5%;  --input: 217.2 32.6% 17.5%;  --ring: 224.3 76.3% 48%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-yellow {  --background: 0 0% 100%;  --foreground: 20 14.3% 4.1%;  --card: 0 0% 100%;  --card-foreground: 20 14.3% 4.1%;  --popover: 0 0% 100%;  --popover-foreground: 20 14.3% 4.1%;  --primary: 47.9 95.8% 53.1%;  --primary-foreground: 26 83.3% 14.1%;  --secondary: 60 4.8% 95.9%;  --secondary-foreground: 24 9.8% 10%;  --muted: 60 4.8% 95.9%;  --muted-foreground: 25 5.3% 44.7%;  --accent: 60 4.8% 95.9%;  --accent-foreground: 24 9.8% 10%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 60 9.1% 97.8%;  --border: 20 5.9% 90%;  --input: 20 5.9% 90%;  --ring: 20 14.3% 4.1%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-yellow {  --background: 20 14.3% 4.1%;  --foreground: 60 9.1% 97.8%;  --card: 20 14.3% 4.1%;  --card-foreground: 60 9.1% 97.8%;  --popover: 20 14.3% 4.1%;  --popover-foreground: 60 9.1% 97.8%;  --primary: 47.9 95.8% 53.1%;  --primary-foreground: 26 83.3% 14.1%;  --secondary: 12 6.5% 15.1%;  --secondary-foreground: 60 9.1% 97.8%;  --muted: 12 6.5% 15.1%;  --muted-foreground: 24 5.4% 63.9%;  --accent: 12 6.5% 15.1%;  --accent-foreground: 60 9.1% 97.8%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 60 9.1% 97.8%;  --border: 12 6.5% 15.1%;  --input: 12 6.5% 15.1%;  --ring: 35.5 91.7% 32.9%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}.theme-violet {  --background: 0 0% 100%;  --foreground: 224 71.4% 4.1%;  --card: 0 0% 100%;  --card-foreground: 224 71.4% 4.1%;  --popover: 0 0% 100%;  --popover-foreground: 224 71.4% 4.1%;  --primary: 262.1 83.3% 57.8%;  --primary-foreground: 210 20% 98%;  --secondary: 220 14.3% 95.9%;  --secondary-foreground: 220.9 39.3% 11%;  --muted: 220 14.3% 95.9%;  --muted-foreground: 220 8.9% 46.1%;  --accent: 220 14.3% 95.9%;  --accent-foreground: 220.9 39.3% 11%;  --destructive: 0 84.2% 60.2%;  --destructive-foreground: 210 20% 98%;  --border: 220 13% 91%;  --input: 220 13% 91%;  --ring: 262.1 83.3% 57.8%;  --chart-1: 12 76% 61%;  --chart-2: 173 58% 39%;  --chart-3: 197 37% 24%;  --chart-4: 43 74% 66%;  --chart-5: 27 87% 67%;  --sidebar: 0 0% 98%;  --sidebar-foreground: 240 5.3% 26.1%;  --sidebar-primary: 240 5.9% 10%;  --sidebar-primary-foreground: 0 0% 98%;  --sidebar-accent: 240 4.8% 95.9%;  --sidebar-accent-foreground: 240 5.9% 10%;  --sidebar-border: 220 13% 91%;  --sidebar-ring: 217.2 91.2% 59.8%;  --radius: 0.5rem;}.dark .theme-violet {  --background: 224 71.4% 4.1%;  --foreground: 210 20% 98%;  --card: 224 71.4% 4.1%;  --card-foreground: 210 20% 98%;  --popover: 224 71.4% 4.1%;  --popover-foreground: 210 20% 98%;  --primary: 263.4 70% 50.4%;  --primary-foreground: 210 20% 98%;  --secondary: 215 27.9% 16.9%;  --secondary-foreground: 210 20% 98%;  --muted: 215 27.9% 16.9%;  --muted-foreground: 217.9 10.6% 64.9%;  --accent: 215 27.9% 16.9%;  --accent-foreground: 210 20% 98%;  --destructive: 0 62.8% 30.6%;  --destructive-foreground: 210 20% 98%;  --border: 215 27.9% 16.9%;  --input: 215 27.9% 16.9%;  --ring: 263.4 70% 50.4%;  --chart-1: 220 70% 50%;  --chart-2: 160 60% 45%;  --chart-3: 30 80% 55%;  --chart-4: 280 65% 60%;  --chart-5: 340 75% 55%;  --sidebar: 240 5.9% 10%;  --sidebar-foreground: 240 4.8% 95.9%;  --sidebar-primary: 0 0% 98%;  --sidebar-primary-foreground: 240 5.9% 10%;  --sidebar-accent: 240 3.7% 15.9%;  --sidebar-accent-foreground: 240 4.8% 95.9%;  --sidebar-border: 240 3.7% 15.9%;  --sidebar-ring: 217.2 91.2% 59.8%;}          * {  border-color: hsl(var(--border));}body {  background: hsl(var(--background));  color: hsl(var(--foreground));}                :root {          --sidebar-background: 0 0% 98%;          --sidebar-foreground: 240 5.3% 26.1%;          --sidebar-primary: 240 5.9% 10%;          --sidebar-primary-foreground: 0 0% 98%;          --sidebar-accent: 240 4.8% 95.9%;          --sidebar-accent-foreground: 240 5.9% 10%;          --sidebar-border: 220 13% 91%;          --sidebar-ring: 217.2 91.2% 59.8%;        }        .dark {          --sidebar-background: 240 5.9% 10%;          --sidebar-foreground: 240 4.8% 95.9%;          --sidebar-primary: 224.3 76.3% 48%;          --sidebar-primary-foreground: 0 0% 100%;          --sidebar-accent: 240 3.7% 15.9%;          --sidebar-accent-foreground: 240 4.8% 95.9%;          --sidebar-border: 240 3.7% 15.9%;          --sidebar-ring: 217.2 91.2% 59.8%;        }      .i-lucide-alert-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4m0 4h.01'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-arrow-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v14m7-7l-7 7l-7-7'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-arrow-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 19l-7-7l7-7m7 7H5'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-arrow-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14m-7-7l7 7l-7 7'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-arrow-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m5 12l7-7l7 7m-7 7V5'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-arrow-up-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m21 16l-4 4l-4-4m4 4V4M3 8l4-4l4 4M7 4v16'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-book-user{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 13a3 3 0 1 0-6 0'/%3E%3Cpath d='M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20'/%3E%3Ccircle cx='12' cy='8' r='2'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-building{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='16' height='20' x='4' y='2' rx='2' ry='2'/%3E%3Cpath d='M9 22v-4h6v4M8 6h.01M16 6h.01M12 6h.01M12 10h.01M12 14h.01M16 10h.01M16 14h.01M8 10h.01M8 14h.01'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-calculator{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='16' height='20' x='4' y='2' rx='2'/%3E%3Cpath d='M8 6h8m0 8v4m0-8h.01M12 10h.01M8 10h.01M12 14h.01M8 14h.01M12 18h.01M8 18h.01'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-check-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11l3 3L22 4'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m9 18l6-6l-6-6'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-clipboard-list{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2m4 7h4m-4 5h4m-8-5h.01M8 16h.01'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-copy{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='14' height='14' x='8' y='8' rx='2' ry='2'/%3E%3Cpath d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-credit-card{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='20' height='14' x='2' y='5' rx='2'/%3E%3Cpath d='M2 10h20'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-crown{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294zM5 21h14'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-dot{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='12.1' cy='12.1' r='1' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-download{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4m4-5l5 5l5-5m-5 5V3'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-edit{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-external-link{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-eye{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2.062 12.348a1 1 0 0 1 0-.696a10.75 10.75 0 0 1 19.876 0a1 1 0 0 1 0 .696a10.75 10.75 0 0 1-19.876 0'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-eye-off{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575a1 1 0 0 1 0 .696a10.8 10.8 0 0 1-1.444 2.49m-6.41-.679a3 3 0 0 1-4.242-4.242'/%3E%3Cpath d='M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151a1 1 0 0 1 0-.696a10.75 10.75 0 0 1 4.446-5.143M2 2l20 20'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-file{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-file-text{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4M10 9H8m8 4H8m8 4H8'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-file-x{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4m-5.5 4.5l-5 5m0-5l5 5'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-files{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M20 7h-3a2 2 0 0 1-2-2V2'/%3E%3Cpath d='M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z'/%3E%3Cpath d='M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-folder-open{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 14l1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-gallery-vertical-end{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M7 2h10M5 6h14'/%3E%3Crect width='18' height='12' x='3' y='10' rx='2'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-image{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='18' height='18' x='3' y='3' rx='2' ry='2'/%3E%3Ccircle cx='9' cy='9' r='2'/%3E%3Cpath d='m21 15l-3.086-3.086a2 2 0 0 0-2.828 0L6 21'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-info{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4m0-4h.01'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-link{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-loader-2{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 12a9 9 0 1 1-6.219-8.56'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-log-out{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4m7 14l5-5l-5-5m5 5H9'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-message-square{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-moon{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3a6 6 0 0 0 9 9a9 9 0 1 1-9-9'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-package{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73zm1 .27V12'/%3E%3Cpath d='M3.29 7L12 12l8.71-5M7.5 4.27l9 5.15'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-pencil{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497zM15 5l4 4'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-plus{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14m-7-7v14'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-refresh-cw{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 0 1 9-9a9.75 9.75 0 0 1 6.74 2.74L21 8'/%3E%3Cpath d='M21 3v5h-5m5 4a9 9 0 0 1-9 9a9.75 9.75 0 0 1-6.74-2.74L3 16'/%3E%3Cpath d='M8 16H3v5'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-save{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z'/%3E%3Cpath d='M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7M7 3v4a1 1 0 0 0 1 1h7'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-send{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11zm7.318-19.539l-10.94 10.939'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-settings{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-shield{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-sun{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2m0 16v2M4.93 4.93l1.41 1.41m11.32 11.32l1.41 1.41M2 12h2m16 0h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-trash-2{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6h18m-2 0v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6m3 0V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2m-6 5v6m4-6v6'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-trending-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m22 17l-8.5-8.5l-5 5L2 7'/%3E%3Cpath d='M16 17h6v-6'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-trending-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m22 7l-8.5 8.5l-5-5L2 17'/%3E%3Cpath d='M16 7h6v6'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-truck{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2m10 0H9m10 0h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-upload{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4m14-7l-5-5l-5 5m5-5v12'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-upload-cloud{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 13v8m-8-6.101A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242'/%3E%3Cpath d='m8 17l4-4l4 4'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-user{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-user-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='m16 11l2 2l4-4'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-users{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87m-3-12a4 4 0 0 1 0 7.75'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-x-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m15 9l-6 6m0-6l6 6'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-lucide-zap{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-arrow-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M7.5 2a.5.5 0 0 1 .5.5v8.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 1 1 .708-.708L7 11.293V2.5a.5.5 0 0 1 .5-.5' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-arrow-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M7.146 2.146a.5.5 0 0 1 .708 0l4 4a.5.5 0 0 1-.708.708L8 3.707V12.5a.5.5 0 0 1-1 0V3.707L3.854 6.854a.5.5 0 1 1-.708-.708z' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-calendar{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M4.5 1a.5.5 0 0 1 .5.5V2h5v-.5a.5.5 0 0 1 1 0V2h1.5A1.5 1.5 0 0 1 14 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-10A1.5 1.5 0 0 1 1 12.5v-9A1.5 1.5 0 0 1 2.5 2H4v-.5a.5.5 0 0 1 .5-.5M10 3v.5a.5.5 0 0 0 1 0V3h1.5a.5.5 0 0 1 .5.5V5H2V3.5a.5.5 0 0 1 .5-.5H4v.5a.5.5 0 0 0 1 0V3zM2 6v6.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V6zm5 1.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M9.5 7a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1m1.5.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0m.5 1.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1M9 9.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M7.5 9a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1M5 9.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M3.5 9a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1M3 11.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1m1.5.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-caret-sort{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M4.932 5.432a.45.45 0 1 0 .636.636L7.5 4.136l1.932 1.932a.45.45 0 0 0 .636-.636l-2.25-2.25a.45.45 0 0 0-.636 0zm5.136 4.136a.45.45 0 0 0-.636-.636L7.5 10.864L5.568 8.932a.45.45 0 0 0-.636.636l2.25 2.25a.45.45 0 0 0 .636 0z' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M11.467 3.727c.289.189.37.576.181.865l-4.25 6.5a.625.625 0 0 1-.944.12l-2.75-2.5a.625.625 0 0 1 .841-.925l2.208 2.007l3.849-5.886a.625.625 0 0 1 .865-.181' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-chevron-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M3.135 6.158a.5.5 0 0 1 .707-.023L7.5 9.565l3.658-3.43a.5.5 0 0 1 .684.73l-4 3.75a.5.5 0 0 1-.684 0l-4-3.75a.5.5 0 0 1-.023-.707' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-chevron-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M8.842 3.135a.5.5 0 0 1 .023.707L5.435 7.5l3.43 3.658a.5.5 0 0 1-.73.684l-3.75-4a.5.5 0 0 1 0-.684l3.75-4a.5.5 0 0 1 .707-.023' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M6.158 3.135a.5.5 0 0 1 .707.023l3.75 4a.5.5 0 0 1 0 .684l-3.75 4a.5.5 0 1 1-.73-.684L9.566 7.5l-3.43-3.658a.5.5 0 0 1 .023-.707' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-chevron-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M3.135 8.842a.5.5 0 0 0 .707.023L7.5 5.435l3.658 3.43a.5.5 0 0 0 .684-.73l-4-3.75a.5.5 0 0 0-.684 0l-4 3.75a.5.5 0 0 0-.023.707' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M.877 7.5a6.623 6.623 0 1 1 13.246 0a6.623 6.623 0 0 1-13.246 0M7.5 1.827a5.673 5.673 0 1 0 0 11.346a5.673 5.673 0 0 0 0-11.346' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-code{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M9.964 2.686a.5.5 0 1 0-.928-.372l-4 10a.5.5 0 1 0 .928.372zm-6.11 2.46a.5.5 0 0 1 0 .708L2.207 7.5l1.647 1.646a.5.5 0 1 1-.708.708l-2-2a.5.5 0 0 1 0-.708l2-2a.5.5 0 0 1 .708 0m7.292 0a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L12.793 7.5l-1.647-1.646a.5.5 0 0 1 0-.708' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-cross-2{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M11.782 4.032a.575.575 0 1 0-.813-.814L7.5 6.687L4.032 3.218a.575.575 0 0 0-.814.814L6.687 7.5l-3.469 3.468a.575.575 0 0 0 .814.814L7.5 8.313l3.469 3.469a.575.575 0 0 0 .813-.814L8.313 7.5z' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-dash{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M5 7.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-dot-filled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M9.875 7.5a2.375 2.375 0 1 1-4.75 0a2.375 2.375 0 0 1 4.75 0'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-dots-horizontal{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M3.625 7.5a1.125 1.125 0 1 1-2.25 0a1.125 1.125 0 0 1 2.25 0m5 0a1.125 1.125 0 1 1-2.25 0a1.125 1.125 0 0 1 2.25 0M12.5 8.625a1.125 1.125 0 1 0 0-2.25a1.125 1.125 0 0 0 0 2.25' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-double-arrow-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M6.854 3.854a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L3.207 7.5zm6 0a.5.5 0 0 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L9.207 7.5z' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-double-arrow-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M2.146 11.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 1 0-.708.708L5.793 7.5zm6 0a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 1 0-.708.708L11.793 7.5z' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-exclamation-triangle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M8.445.609a1.1 1.1 0 0 0-1.89 0L.161 11.337A1.1 1.1 0 0 0 1.106 13h12.788a1.1 1.1 0 0 0 .945-1.663zm-1.03.512a.1.1 0 0 1 .17 0l6.395 10.728a.1.1 0 0 1-.086.151H1.106a.1.1 0 0 1-.086-.151zm-.588 3.365a.674.674 0 1 1 1.346 0L8.02 8.487a.52.52 0 0 1-1.038 0zm1.423 5.99a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-eye-none{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M13.354 2.354a.5.5 0 0 0-.708-.708L10.683 3.61A8.5 8.5 0 0 0 7.5 3C4.308 3 1.656 4.706.076 7.235a.5.5 0 0 0 0 .53c.827 1.323 1.947 2.421 3.285 3.167l-1.715 1.714a.5.5 0 0 0 .708.708l1.963-1.964c.976.393 2.045.61 3.183.61c3.192 0 5.844-1.706 7.424-4.235a.5.5 0 0 0 0-.53c-.827-1.323-1.947-2.421-3.285-3.167zm-3.45 2.035A7.5 7.5 0 0 0 7.5 4C4.803 4 2.53 5.378 1.096 7.5c.777 1.15 1.8 2.081 3.004 2.693zM5.096 10.61L10.9 4.807c1.204.612 2.227 1.543 3.004 2.693C12.47 9.622 10.197 11 7.5 11a7.5 7.5 0 0 1-2.404-.389' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-font-bold{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M5.105 12q-.595 0-.853-.264Q4 11.466 4 10.883V4.117q0-.595.258-.853Q4.522 3 5.105 3H9.03c1.108 0 2.025.982 2.025 2.185c0 .9-.45 1.634-1.35 2.051c1.162.213 1.814 1.392 1.814 2.245c0 1.031-.528 2.519-2.24 2.519zm3.274-3.997H5.8v2.628h2.579c.521 0 1.25-.51 1.25-1.332S8.9 8.003 8.38 8.003M5.8 4.37v2.327h2.38c.36 0 1.097-.337 1.097-1.196c0-.86-.797-1.131-1.097-1.131z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-font-italic{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M5.675 3.5a.45.45 0 0 1 .45-.45h4.5a.45.45 0 1 1 0 .9h-1.62l-1.774 7.1h1.644a.45.45 0 0 1 0 .9h-4.5a.45.45 0 1 1 0-.9h1.619l1.775-7.1H6.125a.45.45 0 0 1-.45-.45' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-mixer-horizontal{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M5.5 3a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3M3 5l.05-.002a2.5 2.5 0 0 0 4.9 0L8 5h5.5a.5.5 0 0 0 0-1H8l-.05.002a2.5 2.5 0 0 0-4.9 0L3 4H1.5a.5.5 0 0 0 0 1zm8.95 5.998a2.5 2.5 0 0 1-4.9 0L7 11H1.5a.5.5 0 0 1 0-1H7l.05.002a2.5 2.5 0 0 1 4.9 0L12 10h1.5a.5.5 0 0 1 0 1H12zM8 10.5a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-plus-circled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M7.5.877a6.623 6.623 0 1 0 0 13.246A6.623 6.623 0 0 0 7.5.877M1.827 7.5a5.673 5.673 0 1 1 11.346 0a5.673 5.673 0 0 1-11.346 0M7.5 4a.5.5 0 0 1 .5.5V7h2.5a.5.5 0 1 1 0 1H8v2.5a.5.5 0 0 1-1 0V8H4.5a.5.5 0 0 1 0-1H7V4.5a.5.5 0 0 1 .5-.5' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-rocket{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='m6.854 3.854l.8-.8c.644-.645 1.775-1.092 2.898-1.253a5.3 5.3 0 0 1 1.504-.02c.443.066.714.196.84.323c.127.126.257.397.323.84c.064.427.059.95-.02 1.504c-.16 1.123-.608 2.254-1.253 2.898L7.5 11.793l-1.146-1.146a.5.5 0 1 0-.708.707l1.5 1.5a.5.5 0 0 0 .708 0l.547-.548l1.17 1.951a.5.5 0 0 0 .783.097l2-2a.5.5 0 0 0 .141-.425l-.465-3.252l.624-.623c.855-.856 1.358-2.225 1.535-3.465c.09-.627.1-1.25.019-1.794c-.08-.528-.256-1.05-.604-1.399c-.349-.348-.871-.525-1.4-.604a6.3 6.3 0 0 0-1.793.02C9.17.987 7.8 1.49 6.946 2.345l-.623.624l-3.252-.465a.5.5 0 0 0-.425.141l-2 2a.5.5 0 0 0 .097.783l1.95 1.17l-.547.547a.5.5 0 0 0 0 .708l1.5 1.5a.5.5 0 1 0 .708-.708L3.207 7.5l.647-.646zm3.245 9.34l-.97-1.617l2.017-2.016l.324 2.262zM3.423 5.87l2.016-2.016l-2.262-.324l-1.37 1.37zm-1.07 4.484a.5.5 0 1 0-.707-.708l-1 1a.5.5 0 1 0 .708.707zm1.5 1.5a.5.5 0 1 0-.707-.707l-2 2a.5.5 0 0 0 .708.707zm1.5 1.5a.5.5 0 1 0-.707-.708l-1 1a.5.5 0 1 0 .708.707zM9.5 6.749a1.249 1.249 0 1 0 0-2.498a1.249 1.249 0 0 0 0 2.498' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.i-radix-icons-underline{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 15 15' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M5 2.75a.5.5 0 0 0-1 0v5.3a3.5 3.5 0 0 0 7 0v-5.3a.5.5 0 1 0-1 0v5.3a2.5 2.5 0 1 1-5 0zM3.5 13.1a.4.4 0 1 0 0 .8h8a.4.4 0 0 0 0-.8z' clip-rule='evenodd'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;width:1.2em;}.container{width:100%;}@media (min-width:640px){.container{max-width:640px;}}@media (min-width:768px){.container{max-width:768px;}}@media (min-width:1024px){.container{max-width:1024px;}}@media (min-width:1280px){.container{max-width:1280px;}}@media (min-width:1536px){.container{max-width:1536px;}}.sr-only{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border-width:0;white-space:nowrap;}.pointer-events-auto{pointer-events:auto;}.aria-disabled\:pointer-events-none[aria-disabled=true],.data-\[disabled\]\:pointer-events-none[data-disabled],.data-\[outside-month\]\:pointer-events-none[data-outside-month],.pointer-events-none{pointer-events:none;}.disabled\:pointer-events-none:disabled{pointer-events:none;}.\[\&_svg\]\:invisible svg{visibility:hidden;}.\[\&\>svg\]\:absolute>svg,.absolute,[absolute=""]{position:absolute;}.fixed{position:fixed;}.relative,[relative=""]{position:relative;}.sticky{position:sticky;}.focus-within\:relative:focus-within{position:relative;}.focus\:relative:focus{position:relative;}.after\:absolute:after{position:absolute;}.inset-0{inset:0;}.after\:-inset-2:after{inset:-.5rem;}.inset-x-0{left:0;right:0;}.inset-y-0{bottom:0;top:0;}.after\:inset-y-0:after{bottom:0;top:0;}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:after\:left-full:after{left:100%;}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]{left:calc(var(--sidebar-width)*-1);}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]{right:calc(var(--sidebar-width)*-1);}.group[data-side=left] .group-data-\[side\=left\]\:-right-4{right:-1rem;}.group[data-side=right] .group-data-\[side\=right\]\:left-0,.left-0{left:0;}.-bottom-12{bottom:-3rem;}.-left-12{left:-3rem;}.-left-2,[data-side=right][data-collapsible=offcanvas] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2{left:-.5rem;}.-right-12{right:-3rem;}.-right-2,[data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2{right:-.5rem;}.-top-12{top:-3rem;}.-top-2{top:-.5rem;}.\[\&\>svg\]\:left-4>svg{left:1rem;}.\[\&\>svg\]\:top-4>svg,.top-4{top:1rem;}.bottom-0{bottom:0;}.left-\[18px\]{left:18px;}.left-\[calc\(50\%\+20px\)\]{left:calc(50% + 20px);}.left-1\/2{left:50%;}.left-2{left:.5rem;}.left-3{left:.75rem;}.right-\[calc\(-50\%\+10px\)\]{right:calc(-50% + 10px);}.right-0{right:0;}.right-1{right:.25rem;}.right-2{right:.5rem;}.right-3{right:.75rem;}.right-4{right:1rem;}.top-\[38px\]{top:38px;}.top-0{top:0;}.top-1{top:.25rem;}.top-1\.5{top:.375rem;}.top-1\/2{top:50%;}.top-2\.5{top:.625rem;}.top-3{top:.75rem;}.top-3\.5{top:.875rem;}.top-5,[top-5=""]{top:1.25rem;}.top-full{top:100%;}.top-px{top:1px;}.\[\&\[data-orientation\=vertical\]\]\:after\:left-0[data-orientation=vertical]:after{left:0;}.after\:left-1\/2:after{left:50%;}.\[\&\>span\]\:line-clamp-1>span,.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;}.line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2;}.z-\[100\]{z-index:100;}.z-10,[z-10=""]{z-index:10;}.z-20{z-index:20;}.z-50{z-index:50;}.focus-within\:z-20:focus-within{z-index:20;}.focus\:z-10:focus{z-index:10;}.grid,[grid=""]{display:grid;}.col-span-2{grid-column:span 2 / span 2;}.col-span-3{grid-column:span 3 / span 3;}.col-span-6{grid-column:span 6 / span 6;}.row-span-3{grid-row:span 3 / span 3;}.grid-rows-\[auto_minmax\(0\,1fr\)_auto\]{grid-template-rows:auto minmax(0,1fr) auto;}.grid-cols-1{grid-template-columns:repeat(1,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));}[rows~="\33 "]{grid-template-rows:repeat(3,minmax(0,1fr));}[rows~="\34 "]{grid-template-rows:repeat(4,minmax(0,1fr));}[rows~="\36 "]{grid-template-rows:repeat(6,minmax(0,1fr));}.-m-4{margin:-1rem;}.m-0{margin:0;}.m-auto{margin:auto;}.-mx-1{margin-left:-.25rem;margin-right:-.25rem;}.mx-1,[mx-1=""]{margin-left:.25rem;margin-right:.25rem;}.mx-2{margin-left:.5rem;margin-right:.5rem;}.mx-3\.5{margin-left:.875rem;margin-right:.875rem;}.mx-4{margin-left:1rem;margin-right:1rem;}.mx-auto{margin-left:auto;margin-right:auto;}.my,.my-4{margin-bottom:1rem;margin-top:1rem;}.my-1{margin-bottom:.25rem;margin-top:.25rem;}.my-2{margin-bottom:.5rem;margin-top:.5rem;}.my-3{margin-bottom:.75rem;margin-top:.75rem;}.my-6{margin-bottom:1.5rem;margin-top:1.5rem;}.my-8{margin-bottom:2rem;margin-top:2rem;}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:-mt-8{margin-top:-2rem;}.-mb-px{margin-bottom:-1px;}.-ml-3{margin-left:-.75rem;}.-ml-4{margin-left:-1rem;}.-mt-1{margin-top:-.25rem;}.-mt-4{margin-top:-1rem;}.mb-1{margin-bottom:.25rem;}.mb-2{margin-bottom:.5rem;}.mb-3{margin-bottom:.75rem;}.mb-4{margin-bottom:1rem;}.mb-6{margin-bottom:1.5rem;}.mb-8{margin-bottom:2rem;}.me{margin-inline-end:1rem;}.ml-1{margin-left:.25rem;}.ml-2,[ml-2=""]{margin-left:.5rem;}.ml-3{margin-left:.75rem;}.ml-auto{margin-left:auto;}.mr-1{margin-right:.25rem;}.mr-2,[mr-2=""]{margin-right:.5rem;}.mr-3{margin-right:.75rem;}.mt-0\.5{margin-top:.125rem;}.mt-1{margin-top:.25rem;}.mt-1\.5{margin-top:.375rem;}.mt-2{margin-top:.5rem;}.mt-24{margin-top:6rem;}.mt-3{margin-top:.75rem;}.mt-4{margin-top:1rem;}.mt-5{margin-top:1.25rem;}.mt-6,[mt-6=""]{margin-top:1.5rem;}.mt-8{margin-top:2rem;}.mt-auto{margin-top:auto;}[mt-2~="default\:"]:default{margin-top:.5rem;}[mt-4~="default\:"]:default{margin-top:1rem;}.mis{margin-inline-start:1rem;}.inline{display:inline;}.block,[block=""]{display:block;}.inline-block,[inline-block=""]{display:inline-block;}.\[\&\>button\]\:hidden>button,.\[\&\>svg\]\:hidden>svg,.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:hidden,.hidden{display:none;}.aspect-square{aspect-ratio:1/1;}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:\!size-8{height:2rem !important;width:2rem !important;}.\[\&\>svg\]\:size-4>svg,.\[\&_svg\]\:size-4 svg,.size-4{height:1rem;width:1rem;}.\[\&\>svg\]\:size-3\.5>svg{height:.875rem;width:.875rem;}.size-5{height:1.25rem;width:1.25rem;}.size-6{height:1.5rem;width:1.5rem;}.size-8{height:2rem;width:2rem;}[size~="\31 2"]{height:3rem;width:3rem;}[size~="\31 6"]{height:4rem;width:4rem;}[size~="\32 0"]{height:5rem;width:5rem;}[size~=lg]{height:32rem;width:32rem;}[size~=sm]{height:24rem;width:24rem;}[size~=xs]{height:20rem;width:20rem;}[default-size~="\32 5"]:default{height:6.25rem;width:6.25rem;}[default-size~="\35 0"]:default{height:12.5rem;width:12.5rem;}[default-size~="\37 5"]:default{height:18.75rem;width:18.75rem;}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:w-\[--sidebar-width-icon\]{width:var(--sidebar-width-icon);}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_1rem_\+_2px\)\]{width:calc(var(--sidebar-width-icon) + 1rem + 2px);}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_1rem\)\]{width:calc(var(--sidebar-width-icon) + 1rem);}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:w-0{width:0;}.peer[data-variant=inset]~.peer-data-\[variant\=inset\]\:min-h-\[calc\(100svh-1rem\)\]{min-height:calc(100svh - 1rem);}.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg,.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg,.h-5,.h5,[h-5=""]{height:1.25rem;}.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg,.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg,.w-5{width:1.25rem;}.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input],.h-12{height:3rem;}.\[\&_svg\]\:h-4 svg,.h-4,.h4,[h-4=""]{height:1rem;}.\[\&_svg\]\:w-4 svg,.w-4,[w-4=""]{width:1rem;}.\[\&\[data-orientation\=vertical\]\]\:h-px[data-orientation=vertical],.h-\[1px\],.h-px{height:1px;}.\[\&\>span\]\:w-full>span,.\[\&\[data-orientation\=vertical\]\]\:w-full[data-orientation=vertical],.w-full,[w-full=""]{width:100%;}.\[\&\>span\]\:w-auto>span,.w-auto{width:auto;}.h-\[--radix-navigation-menu-viewport-height\]{height:var(--radix-navigation-menu-viewport-height);}.h-\[--radix-select-trigger-height\]{height:var(--radix-select-trigger-height);}.h-\[105\%\]{height:105%;}.h-\[120px\]{height:120px;}.h-150px,.h-\[150px\]{height:150px;}.h-200px,.h-\[200px\]{height:200px;}.h-\[300dvh\]{height:300dvh;}.h-\[56px\]{height:56px;}.h-\[calc\(100dvh-72px-56px-3rem-53px\)\]{height:calc(100dvh - 181px - 3rem);}.h-0\.5,[h-0\.5=""]{height:.125rem;}.h-1\.5{height:.375rem;}.h-10{height:2.5rem;}.h-100px{height:100px;}.h-11{height:2.75rem;}.h-16{height:4rem;}.h-2,.h2{height:.5rem;}.h-2\.5{height:.625rem;}.h-20{height:5rem;}.h-24{height:6rem;}.h-3,.h3{height:.75rem;}.h-3\.5{height:.875rem;}.h-30{height:7.5rem;}.h-32{height:8rem;}.h-53px{height:53px;}.h-6{height:1.5rem;}.h-7{height:1.75rem;}.h-72{height:18rem;}.h-8,[h-8=""]{height:2rem;}.h-9{height:2.25rem;}.h-auto,.ha{height:auto;}.h-full{height:100%;}.h1{height:.25rem;}.max-h-\[300px\]{max-height:300px;}.max-h-\[70vh\]{max-height:70vh;}.max-h-\[80vh\]{max-height:80vh;}.max-h-\[90dvh\]{max-height:90dvh;}.max-h-\[90vh\]{max-height:90vh;}.max-h-\[calc\(100dvh-53px-3rem\)\]{max-height:calc(100dvh - 53px - 3rem);}.max-h-30{max-height:7.5rem;}.max-h-96{max-height:24rem;}.max-h-screen{max-height:100vh;}.max-w-\[--skeleton-width\]{max-width:var(--skeleton-width);}.max-w-\[200px\]{max-width:200px;}.max-w-\[450px\]{max-width:450px;}.max-w-2xl{max-width:42rem;}.max-w-4xl{max-width:56rem;}.max-w-7xl{max-width:80rem;}.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-sm{max-width:24rem;}.max-w-xl{max-width:36rem;}.max-w-xs{max-width:20rem;}.min-h-200px,.min-h-\[200px\]{min-height:200px;}.min-h-\[40px\]{min-height:40px;}.min-h-0{min-height:0;}.min-h-100px{min-height:100px;}.min-h-20{min-height:5rem;}.min-h-350px{min-height:350px;}.min-h-4{min-height:1rem;}.min-h-5{min-height:1.25rem;}.min-h-6{min-height:1.5rem;}.min-h-screen{min-height:100vh;}.min-w-\[--radix-select-trigger-width\]{min-width:var(--radix-select-trigger-width);}.min-w-\[120px\]{min-width:120px;}.min-w-\[250px\]{min-width:250px;}.min-w-\[3rem\]{min-width:3rem;}.min-w-\[50px\]{min-width:50px;}.min-w-0{min-width:0;}.min-w-32{min-width:8rem;}.min-w-48{min-width:12rem;}.min-w-5{min-width:1.25rem;}.min-w-full{min-width:100%;}.w-\[--sidebar-width\]{width:var(--sidebar-width);}.w-\[100px\]{width:100px;}.w-\[150px\]{width:150px;}.w-\[160px\]{width:160px;}.w-\[180px\]{width:180px;}.w-\[1px\],.w-px{width:1px;}.w-\[200px\]{width:200px;}.w-\[240px\]{width:240px;}.w-\[250px\]{width:250px;}.w-\[280px\]{width:280px;}.w-\[300px\]{width:300px;}.w-\[340px\]{width:340px;}.w-\[400px\]{width:400px;}.w-\[70px\]{width:70px;}.w-0\.5{width:.125rem;}.w-10,[w-10=""]{width:2.5rem;}.w-11{width:2.75rem;}.w-12{width:3rem;}.w-16{width:4rem;}.w-2{width:.5rem;}.w-2\.5{width:.625rem;}.w-20{width:5rem;}.w-24{width:6rem;}.w-3{width:.75rem;}.w-3\.5{width:.875rem;}.w-3\/4{width:75%;}.w-3\/5{width:60%;}.w-32{width:8rem;}.w-44{width:11rem;}.w-48{width:12rem;}.w-56{width:14rem;}.w-6{width:1.5rem;}.w-60{width:15rem;}.w-64{width:16rem;}.w-7{width:1.75rem;}.w-72{width:18rem;}.w-8,[w-8=""]{width:2rem;}.w-80{width:20rem;}.w-9{width:2.25rem;}.w-max{width:-moz-max-content;width:max-content;}.\[\&\[data-orientation\=vertical\]\]\:after\:h-1[data-orientation=vertical]:after{height:.25rem;}.\[\&\[data-orientation\=vertical\]\]\:after\:w-full[data-orientation=vertical]:after{width:100%;}.after\:w-\[2px\]:after{width:2px;}.after\:w-1:after{width:.25rem;}.\[\&\>span\]\:flex>span,.flex,[flex=""]{display:flex;}.inline-flex{display:inline-flex;}.flex-1{flex:1 1 0%;}.\[\&\>svg\]\:shrink-0>svg,.\[\&_svg\]\:shrink-0 svg,.flex-shrink-0,.shrink-0,[shrink-0=""]{flex-shrink:0;}.grow{flex-grow:1;}.grow-0{flex-grow:0;}.basis-1\/4{flex-basis:25%;}.basis-full{flex-basis:100%;}.flex-row{flex-direction:row;}.flex-row-reverse{flex-direction:row-reverse;}.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction=vertical],.flex-col,[flex-col=""]{flex-direction:column;}.flex-col-reverse{flex-direction:column-reverse;}.flex-wrap{flex-wrap:wrap;}.table{display:table;}.border-collapse{border-collapse:collapse;}.caption-bottom{caption-side:bottom;}.table-fixed{table-layout:fixed;}.origin-top-center{transform-origin:top center;}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked],.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel],.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:translate-x-0{--un-translate-x:0;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.-translate-x-1\/2{--un-translate-x:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.-translate-x-px{--un-translate-x:-1px;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.-translate-y-1\/2{--un-translate-y:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{--un-translate-y:-3px;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--un-translate-y:0.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--un-translate-x:-0.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[side\=right\]\:translate-x-1[data-side=right]{--un-translate-x:0.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--un-translate-y:-0.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[state\=checked\]\:translate-x-5[data-state=checked]{--un-translate-x:1.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end]{--un-translate-x:var(--radix-toast-swipe-end-x);transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{--un-translate-x:var(--radix-toast-swipe-move-x);transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.translate-x-px{--un-translate-x:1px;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.\[\&\[data-orientation\=vertical\]\]\:after\:-translate-y-1\/2[data-orientation=vertical]:after{--un-translate-y:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.\[\&\[data-orientation\=vertical\]\]\:after\:translate-x-0[data-orientation=vertical]:after{--un-translate-x:0;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.after\:-translate-x-1\/2:after{--un-translate-x:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg,.group[data-side=right] .group-data-\[side\=right\]\:rotate-180,.group[data-state=open] .group-data-\[state\=open\]\:rotate-180{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:180deg;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.\[\&\[data-orientation\=vertical\]\>div\]\:rotate-90[data-orientation=vertical]>div,.group\/collapsible[data-state=open] .group-data-\[state\=open\]\/collapsible\:rotate-90,.rotate-90{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:90deg;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}@keyframes una-in{0%{opacity:var(--una-enter-opacity,1);transform:translate3d(var(--una-enter-translate-x,0),var(--una-enter-translate-y,0),0) scale3d(var(--una-enter-scale,1),var(--una-enter-scale,1),var(--una-enter-scale,1)) rotate(var(--una-enter-rotate,0))}}.animate-in,.data-\[motion\^\=from-\]\:animate-in[data-motion^=from-],.data-\[state\=open\]\:animate-in[data-state=open]{animation:una-in;animation-duration:.15s;animation-name:una-in;--una-enter-opacity:initial;--una-enter-scale:initial;--una-enter-rotate:initial;--una-enter-translate-x:initial;--una-enter-translate-y:initial;}@keyframes una-out{to{opacity:var(--una-exit-opacity,1);transform:translate3d(var(--una-exit-translate-x,0),var(--una-exit-translate-y,0),0) scale3d(var(--una-exit-scale,1),var(--una-exit-scale,1),var(--una-exit-scale,1)) rotate(var(--una-exit-rotate,0))}}.data-\[motion\^\=to-\]\:animate-out[data-motion^=to-],.data-\[state\=closed\]\:animate-out[data-state=closed],.data-\[swipe\=end\]\:animate-out[data-swipe=end]{animation:una-out;animation-duration:.15s;animation-name:una-out;--una-exit-opacity:initial;--una-exit-scale:initial;--una-exit-rotate:initial;--una-exit-translate-x:initial;--una-exit-translate-y:initial;}@keyframes pulse{0%,to {opacity:1} 50% {opacity:.5}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;}.animate-spin{animation:spin 1s linear infinite;}.cursor-default{cursor:default;}.cursor-pointer{cursor:pointer;}.cursor-not-allowed,.peer:disabled~.peer-disabled\:cursor-not-allowed{cursor:not-allowed;}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed;}[data-side=left][data-state=collapsed] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize,[data-side=right] .\[\[data-side\=right\]_\&\]\:cursor-e-resize{cursor:e-resize;}[data-side=left] .\[\[data-side\=left\]_\&\]\:cursor-w-resize,[data-side=right][data-state=collapsed] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize{cursor:w-resize;}.touch-manipulation{touch-action:manipulation;}.touch-none{touch-action:none;}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none;}.resize-none{resize:none;}.list-none{list-style-type:none;}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none;}.place-items-center{place-items:center;}.items-start,[items-start=""]{align-items:flex-start;}.items-end{align-items:flex-end;}.\[\&\>span\]\:items-center>span,.items-center,[items-center=""]{align-items:center;}.items-stretch{align-items:stretch;}.self-center{align-self:center;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.group[data-collapsed=true] .group-\[\[data-collapsed\=true\]\]\:justify-center,.justify-center,[justify-center=""]{justify-content:center;}[justify-center~="default\:"]:default{justify-content:center;}.justify-between{justify-content:space-between;}.\[\&\>span\]\:gap-1>span,.gap-1{gap:.25rem;}.gap-1\.5{gap:.375rem;}.gap-10{gap:2.5rem;}.gap-2{gap:.5rem;}.gap-3{gap:.75rem;}.gap-4{gap:1rem;}.gap-6{gap:1.5rem;}.gap-8{gap:2rem;}[gap-2~="default\:"]:default{gap:.5rem;}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem;}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem;}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem;}.gap-y-1\.5{row-gap:.375rem;}.gap-y-2{row-gap:.5rem;}.gap-y-4{row-gap:1rem;}.space-x-1>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--un-space-x-reverse)));margin-right:calc(.25rem*var(--un-space-x-reverse));}.space-x-2>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--un-space-x-reverse)));margin-right:calc(.5rem*var(--un-space-x-reverse));}.space-x-3>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--un-space-x-reverse)));margin-right:calc(.75rem*var(--un-space-x-reverse));}.space-x-4>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--un-space-x-reverse)));margin-right:calc(1rem*var(--un-space-x-reverse));}.space-x-6>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--un-space-x-reverse)));margin-right:calc(1.5rem*var(--un-space-x-reverse));}.space-x-8>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--un-space-x-reverse)));margin-right:calc(2rem*var(--un-space-x-reverse));}.space-y-0\.5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(.125rem*var(--un-space-y-reverse));margin-top:calc(.125rem*(1 - var(--un-space-y-reverse)));}.space-y-0>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(0px*var(--un-space-y-reverse));margin-top:calc(0px*(1 - var(--un-space-y-reverse)));}.space-y-1\.5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(.375rem*var(--un-space-y-reverse));margin-top:calc(.375rem*(1 - var(--un-space-y-reverse)));}.space-y-1>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(.25rem*var(--un-space-y-reverse));margin-top:calc(.25rem*(1 - var(--un-space-y-reverse)));}.space-y-2>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(.5rem*var(--un-space-y-reverse));margin-top:calc(.5rem*(1 - var(--un-space-y-reverse)));}.space-y-3>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(.75rem*var(--un-space-y-reverse));margin-top:calc(.75rem*(1 - var(--un-space-y-reverse)));}.space-y-4>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(1rem*var(--un-space-y-reverse));margin-top:calc(1rem*(1 - var(--un-space-y-reverse)));}.space-y-6>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--un-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--un-space-y-reverse)));}.space-y-8>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(2rem*var(--un-space-y-reverse));margin-top:calc(2rem*(1 - var(--un-space-y-reverse)));}.divide-y>:not([hidden])~:not([hidden]){--un-divide-y-reverse:0;border-bottom-width:calc(1px*var(--un-divide-y-reverse));border-top-width:calc(1px*(1 - var(--un-divide-y-reverse)));}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:overflow-hidden,.overflow-hidden{overflow:hidden;}.overflow-auto{overflow:auto;}.overflow-x-auto{overflow-x:auto;}.overflow-x-hidden{overflow-x:hidden;}.overflow-y-auto{overflow-y:auto;}.\[\&\>span\:last-child\]\:truncate>span:last-child,.\[\&\>span\]\:truncate>span,.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.whitespace-nowrap{white-space:nowrap;}.whitespace-pre-wrap{white-space:pre-wrap;}.break-words{overflow-wrap:break-word;}.b,.border,.border-1,.group[data-variant=floating] .group-data-\[variant\=floating\]\:border,[border=""]{border-width:1px;}.\[\&_tr\:last-child\]\:border-0 tr:last-child,.border-0{border-width:0;}.border-2{border-width:2px;}.last\:border-0:last-child{border-width:0;}.file\:border-0::file-selector-button{border-width:0;}.border-y{border-bottom-width:1px;border-top-width:1px;}.border-r,.dark .dark\:border-r,.group[data-side=left] .group-data-\[side\=left\]\:border-r{border-right-width:1px;}.border-l,.group[data-side=right] .group-data-\[side\=right\]\:border-l{border-left-width:1px;}.\[\&_tr\]\:border-b tr,.border-b{border-bottom-width:1px;}.border-b-2{border-bottom-width:2px;}.border-r-0{border-right-width:0;}.border-t{border-top-width:1px;}.first\:border-l:first-child{border-left-width:1px;}.last\:border-b-0:last-child{border-bottom-width:0;}.group.destructive .group-\[\.destructive\]\:border-muted\/40{border-color:hsl(var(--muted) / .4);}.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover{border-color:hsl(var(--destructive) / .3);}.border-border,.group.toaster .group-\[\.toaster\]\:border-border{--un-border-opacity:1;border-color:hsl(var(--border) / var(--un-border-opacity));}.border-sidebar-border,.group[data-variant=floating] .group-data-\[variant\=floating\]\:border-sidebar-border{--un-border-opacity:1;border-color:hsl(var(--sidebar-border) / var(--un-border-opacity));}.\[\&\:has\(\[data-state\=checked\]\)\>div\]\:border-primary:has([data-state=checked])>div,.border-primary,[border-primary=""]{--un-border-opacity:1;border-color:hsl(var(--primary) / var(--un-border-opacity));}.border-blue-200{--un-border-opacity:1;border-color:rgb(191 219 254 / var(--un-border-opacity));}.border-blue-500{--un-border-opacity:1;border-color:rgb(59 130 246 / var(--un-border-opacity));}.border-blue-600{--un-border-opacity:1;border-color:rgb(37 99 235 / var(--un-border-opacity));}.border-destructive,.dark .dark\:border-destructive{--un-border-opacity:1;border-color:hsl(var(--destructive) / var(--un-border-opacity));}.border-destructive\/50{border-color:hsl(var(--destructive) / .5);}.border-gray-200{--un-border-opacity:1;border-color:rgb(229 231 235 / var(--un-border-opacity));}.border-gray-300{--un-border-opacity:1;border-color:rgb(209 213 219 / var(--un-border-opacity));}.border-gray-400{--un-border-opacity:1;border-color:rgb(156 163 175 / var(--un-border-opacity));}.border-green-200{--un-border-opacity:1;border-color:rgb(187 247 208 / var(--un-border-opacity));}.border-green-400{--un-border-opacity:1;border-color:rgb(74 222 128 / var(--un-border-opacity));}.border-input{--un-border-opacity:1;border-color:hsl(var(--input) / var(--un-border-opacity));}.border-muted{--un-border-opacity:1;border-color:hsl(var(--muted) / var(--un-border-opacity));}.border-primary\/20{border-color:hsl(var(--primary) / .2);}.border-red-200{--un-border-opacity:1;border-color:rgb(254 202 202 / var(--un-border-opacity));}.border-slate-600{--un-border-opacity:1;border-color:rgb(71 85 105 / var(--un-border-opacity));}.border-transparent{border-color:transparent;}.dark .dark\:border-gray-600{--un-border-opacity:1;border-color:rgb(75 85 99 / var(--un-border-opacity));}.dark .dark\:border-gray-700{--un-border-opacity:1;border-color:rgb(55 65 81 / var(--un-border-opacity));}.hover\:border-accent:hover{--un-border-opacity:1;border-color:hsl(var(--accent) / var(--un-border-opacity));}.hover\:border-gray-300:hover{--un-border-opacity:1;border-color:rgb(209 213 219 / var(--un-border-opacity));}.border-l-transparent{border-left-color:transparent;}.border-t-transparent{border-top-color:transparent;}.group[data-variant=floating] .group-data-\[variant\=floating\]\:rounded-lg,.rounded-lg{border-radius:var(--radius);}.\[\&\:has\(\[data-selected\]\)\]\:rounded-md:has([data-selected]),.rounded-md{border-radius:calc(var(--radius) - 2px);}.rounded{border-radius:.25rem;}.rounded-\[inherit\]{border-radius:inherit;}.rounded-full,[rounded-full=""]{border-radius:9999px;}.rounded-sm{border-radius:calc(var(--radius) - 4px);}.rounded-xl{border-radius:calc(var(--radius) + 4px);}[rounded-full~="default\:"]:default{border-radius:9999px;}[rounded-full~="disabled\:"]:disabled{border-radius:9999px;}.\[\&\:has\(\[data-selected\]\[data-selection-end\]\)\]\:rounded-r-md:has([data-selected][data-selection-end]){border-bottom-right-radius:calc(var(--radius) - 2px);border-top-right-radius:calc(var(--radius) - 2px);}.\[\&\:has\(\[data-selected\]\[data-selection-start\]\)\]\:rounded-l-md:has([data-selected][data-selection-start]),.rounded-l-md{border-bottom-left-radius:calc(var(--radius) - 2px);border-top-left-radius:calc(var(--radius) - 2px);}.rounded-l-none{border-bottom-left-radius:0;border-top-left-radius:0;}.rounded-t-\[10px\]{border-top-left-radius:10px;border-top-right-radius:10px;}.first\:\[\&\:has\(\[data-selected\]\)\]\:rounded-l-md:has([data-selected]):first-child{border-bottom-left-radius:calc(var(--radius) - 2px);border-top-left-radius:calc(var(--radius) - 2px);}.first\:rounded-l-md:first-child{border-bottom-left-radius:calc(var(--radius) - 2px);border-top-left-radius:calc(var(--radius) - 2px);}.last\:\[\&\:has\(\[data-selected\]\)\]\:rounded-r-md:has([data-selected]):last-child{border-bottom-right-radius:calc(var(--radius) - 2px);border-top-right-radius:calc(var(--radius) - 2px);}.last\:rounded-r-md:last-child{border-bottom-right-radius:calc(var(--radius) - 2px);border-top-right-radius:calc(var(--radius) - 2px);}.border-dashed{border-style:dashed;}.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover{--un-bg-opacity:1;background-color:hsl(var(--destructive) / var(--un-bg-opacity)) /* hsl(var(--destructive)) */;}.bg-muted,.dark .dark\:bg-muted,.data-\[state\=open\]\:bg-muted[data-state=open],.data-\[state\=selected\]\:bg-muted[data-state=selected],.group.toast .group-\[\.toast\]\:bg-muted,.group[data-disabled] .group-data-\[disabled\]\:bg-muted,[bg-muted=""]{--un-bg-opacity:1;background-color:hsl(var(--muted) / var(--un-bg-opacity)) /* hsl(var(--muted)) */;}.bg-primary,.data-\[selected\]\:bg-primary[data-selected],.data-\[selection-end\]\:bg-primary[data-selection-end],.data-\[selection-start\]\:bg-primary[data-selection-start],.data-\[state\=checked\]\:bg-primary[data-state=checked],.group.toast .group-\[\.toast\]\:bg-primary,.group[data-state=active] .group-data-\[state\=active\]\:bg-primary,.group[data-state=completed] .group-data-\[state\=completed\]\:bg-primary,[bg-primary=""]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.bg-background,.data-\[state\=active\]\:bg-background[data-state=active],.group.toaster .group-\[\.toaster\]\:bg-background{--un-bg-opacity:1;background-color:hsl(var(--background) / var(--un-bg-opacity)) /* hsl(var(--background)) */;}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:hover\:bg-sidebar:hover{--un-bg-opacity:1;background-color:hsl(var(--sidebar-background) / var(--un-bg-opacity)) /* hsl(var(--sidebar-background)) */;}.\[\&\:has\(\[data-selected\]\)\]\:bg-accent:has([data-selected]),.\[\&\[data-today\]\:not\(\[data-selected\]\)\]\:bg-accent[data-today]:not([data-selected]),.data-\[highlighted\]\:bg-accent[data-highlighted],.data-\[state\=on\]\:bg-accent[data-state=on],.data-\[state\=open\]\:bg-accent[data-state=open],.group[data-state=completed] .group-data-\[state\=completed\]\:bg-accent{--un-bg-opacity:1;background-color:hsl(var(--accent) / var(--un-bg-opacity)) /* hsl(var(--accent)) */;}.group[data-state=completed] .group-data-\[state\=completed\]\:bg-accent-foreground{--un-bg-opacity:1;background-color:hsl(var(--accent-foreground) / var(--un-bg-opacity)) /* hsl(var(--accent-foreground)) */;}.\[\&\:has\(\[data-selected\]\[data-outside-month\]\)\]\:bg-accent\/50:has([data-selected][data-outside-month]),.\[\&\[data-outside-month\]\[data-selected\]\]\:bg-accent\/50[data-outside-month][data-selected],.data-\[active\]\:bg-accent\/50[data-active],.data-\[state\=open\]\:bg-accent\/50[data-state=open]{background-color:hsl(var(--accent) / .5) ;}.\[\&\>div\]\:bg-green-500>div,.bg-green-500{--un-bg-opacity:1;background-color:rgb(34 197 94 / var(--un-bg-opacity)) /* #22c55e */;}.aria-\[current\=page\]\:bg-sidebar-accent[aria-current=page],.data-\[active\=true\]\:bg-sidebar-accent[data-active=true]{--un-bg-opacity:1;background-color:hsl(var(--sidebar-accent) / var(--un-bg-opacity)) /* hsl(var(--sidebar-accent)) */;}.bg-\[\#ecedef\]{--un-bg-opacity:1;background-color:rgb(236 237 239 / var(--un-bg-opacity)) /* #ecedef */;}.bg-\#adfa1d{--un-bg-opacity:1;background-color:rgb(173 250 29 / var(--un-bg-opacity)) /* #adfa1d */;}.bg-amber-50{--un-bg-opacity:1;background-color:rgb(255 251 235 / var(--un-bg-opacity)) /* #fffbeb */;}.bg-background\/95{background-color:hsl(var(--background) / .95) ;}.bg-black{--un-bg-opacity:1;background-color:rgb(0 0 0 / var(--un-bg-opacity)) /* #000 */;}.bg-black\/80{background-color:rgba(0,0,0,.8) ;}.bg-blue-100{--un-bg-opacity:1;background-color:rgb(219 234 254 / var(--un-bg-opacity)) /* #dbeafe */;}.bg-blue-50{--un-bg-opacity:1;background-color:rgb(239 246 255 / var(--un-bg-opacity)) /* #eff6ff */;}.bg-blue-500{--un-bg-opacity:1;background-color:rgb(59 130 246 / var(--un-bg-opacity)) /* #3b82f6 */;}.bg-blue-600{--un-bg-opacity:1;background-color:rgb(37 99 235 / var(--un-bg-opacity)) /* #2563eb */;}.bg-border{--un-bg-opacity:1;background-color:hsl(var(--border) / var(--un-bg-opacity)) /* hsl(var(--border)) */;}.bg-card{--un-bg-opacity:1;background-color:hsl(var(--card) / var(--un-bg-opacity)) /* hsl(var(--card)) */;}.bg-cyan-50{--un-bg-opacity:1;background-color:rgb(236 254 255 / var(--un-bg-opacity)) /* #ecfeff */;}.bg-destructive{--un-bg-opacity:1;background-color:hsl(var(--destructive) / var(--un-bg-opacity)) /* hsl(var(--destructive)) */;}.bg-emerald-50{--un-bg-opacity:1;background-color:rgb(236 253 245 / var(--un-bg-opacity)) /* #ecfdf5 */;}.bg-emerald-600{--un-bg-opacity:1;background-color:rgb(5 150 105 / var(--un-bg-opacity)) /* #059669 */;}.bg-gray-100{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity)) /* #f3f4f6 */;}.bg-gray-200{--un-bg-opacity:1;background-color:rgb(229 231 235 / var(--un-bg-opacity)) /* #e5e7eb */;}.bg-gray-300{--un-bg-opacity:1;background-color:rgb(209 213 219 / var(--un-bg-opacity)) /* #d1d5db */;}.bg-gray-50{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity)) /* #f9fafb */;}.bg-gray-700\/80{background-color:rgba(55,65,81,.8) ;}.bg-green-100{--un-bg-opacity:1;background-color:rgb(220 252 231 / var(--un-bg-opacity)) /* #dcfce7 */;}.bg-green-200{--un-bg-opacity:1;background-color:rgb(187 247 208 / var(--un-bg-opacity)) /* #bbf7d0 */;}.bg-green-50{--un-bg-opacity:1;background-color:rgb(240 253 244 / var(--un-bg-opacity)) /* #f0fdf4 */;}.bg-green-600,[bg-green-600=""]{--un-bg-opacity:1;background-color:rgb(22 163 74 / var(--un-bg-opacity)) /* #16a34a */;}.bg-green-600\/90{background-color:rgba(22,163,74,.9) ;}.bg-green-900\/80{background-color:rgba(20,83,45,.8) ;}.bg-indigo-50{--un-bg-opacity:1;background-color:rgb(238 242 255 / var(--un-bg-opacity)) /* #eef2ff */;}.bg-muted-foreground,[bg-muted-foreground=""]{--un-bg-opacity:1;background-color:hsl(var(--muted-foreground) / var(--un-bg-opacity)) /* hsl(var(--muted-foreground)) */;}.bg-muted\/40{background-color:hsl(var(--muted) / .4) ;}.bg-muted\/50{background-color:hsl(var(--muted) / .5) ;}.bg-orange-50{--un-bg-opacity:1;background-color:rgb(255 247 237 / var(--un-bg-opacity)) /* #fff7ed */;}.bg-popover{--un-bg-opacity:1;background-color:hsl(var(--popover) / var(--un-bg-opacity)) /* hsl(var(--popover)) */;}.bg-primary\/10{background-color:hsl(var(--primary) / .1) ;}.bg-primary\/20{background-color:hsl(var(--primary) / .2) ;}.bg-purple-100{--un-bg-opacity:1;background-color:rgb(243 232 255 / var(--un-bg-opacity)) /* #f3e8ff */;}.bg-purple-50{--un-bg-opacity:1;background-color:rgb(250 245 255 / var(--un-bg-opacity)) /* #faf5ff */;}.bg-red-100{--un-bg-opacity:1;background-color:rgb(254 226 226 / var(--un-bg-opacity)) /* #fee2e2 */;}.bg-red-50{--un-bg-opacity:1;background-color:rgb(254 242 242 / var(--un-bg-opacity)) /* #fef2f2 */;}.bg-red-500{--un-bg-opacity:1;background-color:rgb(239 68 68 / var(--un-bg-opacity)) /* #ef4444 */;}.bg-secondary,.data-\[state\=open\]\:bg-secondary[data-state=open]{--un-bg-opacity:1;background-color:hsl(var(--secondary) / var(--un-bg-opacity)) /* hsl(var(--secondary)) */;}.bg-sidebar,.has-\[\[data-variant\=inset\]\]\:bg-sidebar:has([data-variant=inset]){--un-bg-opacity:1;background-color:hsl(var(--sidebar-background) / var(--un-bg-opacity)) /* hsl(var(--sidebar-background)) */;}.bg-sidebar-border{--un-bg-opacity:1;background-color:hsl(var(--sidebar-border) / var(--un-bg-opacity)) /* hsl(var(--sidebar-border)) */;}.bg-sidebar-primary{--un-bg-opacity:1;background-color:hsl(var(--sidebar-primary) / var(--un-bg-opacity)) /* hsl(var(--sidebar-primary)) */;}.bg-slate-100{--un-bg-opacity:1;background-color:rgb(241 245 249 / var(--un-bg-opacity)) /* #f1f5f9 */;}.bg-slate-400{--un-bg-opacity:1;background-color:rgb(148 163 184 / var(--un-bg-opacity)) /* #94a3b8 */;}.bg-slate-50{--un-bg-opacity:1;background-color:rgb(248 250 252 / var(--un-bg-opacity)) /* #f8fafc */;}.bg-slate-50\/50{background-color:rgba(248,250,252,.5) ;}.bg-slate-500{--un-bg-opacity:1;background-color:rgb(100 116 139 / var(--un-bg-opacity)) /* #64748b */;}.bg-slate-600,.dark .group:hover .dark\:group-hover\:bg-slate-600{--un-bg-opacity:1;background-color:rgb(71 85 105 / var(--un-bg-opacity)) /* #475569 */;}.bg-slate-700,.dark .dark\:bg-slate-700{--un-bg-opacity:1;background-color:rgb(51 65 85 / var(--un-bg-opacity)) /* #334155 */;}.bg-slate-800{--un-bg-opacity:1;background-color:rgb(30 41 59 / var(--un-bg-opacity)) /* #1e293b */;}.bg-slate-950{--un-bg-opacity:1;background-color:rgb(2 6 23 / var(--un-bg-opacity)) /* #020617 */;}.bg-transparent{background-color:transparent /* transparent */;}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;}.bg-white\/20{background-color:hsla(0,0%,100%,.2) ;}.bg-yellow-400{--un-bg-opacity:1;background-color:rgb(250 204 21 / var(--un-bg-opacity)) /* #facc15 */;}.bg-yellow-50{--un-bg-opacity:1;background-color:rgb(254 252 232 / var(--un-bg-opacity)) /* #fefce8 */;}.bg-zinc-900{--un-bg-opacity:1;background-color:rgb(24 24 27 / var(--un-bg-opacity)) /* #18181b */;}.dark .dark\:bg-amber-900\/20{background-color:rgba(120,53,15,.2) ;}.dark .dark\:bg-blue-900{--un-bg-opacity:1;background-color:rgb(30 58 138 / var(--un-bg-opacity)) /* #1e3a8a */;}.dark .dark\:bg-blue-900\/20{background-color:rgba(30,58,138,.2) ;}.dark .dark\:bg-blue-900\/30{background-color:rgba(30,58,138,.3) ;}.dark .dark\:bg-cyan-900\/20{background-color:rgba(22,78,99,.2) ;}.dark .dark\:bg-emerald-900\/20{background-color:rgba(6,78,59,.2) ;}.dark .dark\:bg-gray-600{--un-bg-opacity:1;background-color:rgb(75 85 99 / var(--un-bg-opacity)) /* #4b5563 */;}.dark .dark\:bg-gray-700{--un-bg-opacity:1;background-color:rgb(55 65 81 / var(--un-bg-opacity)) /* #374151 */;}.dark .dark\:bg-gray-800{--un-bg-opacity:1;background-color:rgb(31 41 55 / var(--un-bg-opacity)) /* #1f2937 */;}.dark .dark\:bg-green-900{--un-bg-opacity:1;background-color:rgb(20 83 45 / var(--un-bg-opacity)) /* #14532d */;}.dark .dark\:bg-green-900\/20{background-color:rgba(20,83,45,.2) ;}.dark .dark\:bg-green-900\/30{background-color:rgba(20,83,45,.3) ;}.dark .dark\:bg-indigo-900\/20{background-color:rgba(49,46,129,.2) ;}.dark .dark\:bg-orange-900\/20{background-color:rgba(124,45,18,.2) ;}.dark .dark\:bg-purple-900{--un-bg-opacity:1;background-color:rgb(88 28 135 / var(--un-bg-opacity)) /* #581c87 */;}.dark .dark\:bg-purple-900\/20{background-color:rgba(88,28,135,.2) ;}.dark .dark\:bg-red-900{--un-bg-opacity:1;background-color:rgb(127 29 29 / var(--un-bg-opacity)) /* #7f1d1d */;}.dark .dark\:bg-red-900\/20{background-color:rgba(127,29,29,.2) ;}.dark .dark\:bg-red-900\/30{background-color:rgba(127,29,29,.3) ;}.dark .dark\:bg-slate-700\/50{background-color:rgba(51,65,85,.5) ;}.dark .dark\:bg-slate-800\/30{background-color:rgba(30,41,59,.3) ;}.dark .dark\:bg-slate-800\/40{background-color:rgba(30,41,59,.4) ;}.dark .dark\:bg-slate-800\/50{background-color:rgba(30,41,59,.5) ;}.dark .dark\:bg-slate-900{--un-bg-opacity:1;background-color:rgb(15 23 42 / var(--un-bg-opacity)) /* #0f172a */;}.dark .dark\:bg-yellow-900\/20{background-color:rgba(113,63,18,.2) ;}.data-\[state\=unchecked\]\:bg-input[data-state=unchecked]{--un-bg-opacity:1;background-color:hsl(var(--input) / var(--un-bg-opacity)) /* hsl(var(--input)) */;}.dark .dark\:hover\:bg-blue-900\/30:hover{background-color:rgba(30,58,138,.3) ;}.dark .dark\:hover\:bg-gray-800:hover{--un-bg-opacity:1;background-color:rgb(31 41 55 / var(--un-bg-opacity)) /* #1f2937 */;}.dark .dark\:hover\:bg-green-900\/40:hover{background-color:rgba(20,83,45,.4) ;}.dark .dark\:hover\:bg-muted:hover{--un-bg-opacity:1;background-color:hsl(var(--muted) / var(--un-bg-opacity)) /* hsl(var(--muted)) */;}.dark .dark\:hover\:bg-red-900\/30:hover{background-color:rgba(127,29,29,.3) ;}.dark .dark\:hover\:bg-red-900\/40:hover{background-color:rgba(127,29,29,.4) ;}.dark .dark\:hover\:bg-slate-700:hover{--un-bg-opacity:1;background-color:rgb(51 65 85 / var(--un-bg-opacity)) /* #334155 */;}.dark .dark\:hover\:bg-slate-700\/50:hover{background-color:rgba(51,65,85,.5) ;}.dark .dark\:hover\:bg-slate-800\/40:hover{background-color:rgba(30,41,59,.4) ;}.dark .dark\:hover\:bg-slate-800\/50:hover{background-color:rgba(30,41,59,.5) ;}.data-\[selected\]\:hover\:bg-primary:hover[data-selected]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.data-\[selection-end\]\:hover\:bg-primary:hover[data-selection-end]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.data-\[selection-start\]\:hover\:bg-primary:hover[data-selection-start]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.data-\[state\=open\]\:hover\:bg-sidebar-accent:hover[data-state=open]{--un-bg-opacity:1;background-color:hsl(var(--sidebar-accent) / var(--un-bg-opacity)) /* hsl(var(--sidebar-accent)) */;}.group:hover .group-hover\:bg-slate-200{--un-bg-opacity:1;background-color:rgb(226 232 240 / var(--un-bg-opacity)) /* #e2e8f0 */;}.group:hover .group-hover\:bg-white\/30{background-color:hsla(0,0%,100%,.3) ;}.hover\:after\:bg-sidebar-border:hover:after{--un-bg-opacity:1;background-color:hsl(var(--sidebar-border) / var(--un-bg-opacity)) /* hsl(var(--sidebar-border)) */;}.hover\:bg-accent:hover{--un-bg-opacity:1;background-color:hsl(var(--accent) / var(--un-bg-opacity)) /* hsl(var(--accent)) */;}.hover\:bg-blue-50:hover{--un-bg-opacity:1;background-color:rgb(239 246 255 / var(--un-bg-opacity)) /* #eff6ff */;}.hover\:bg-blue-600:hover{--un-bg-opacity:1;background-color:rgb(37 99 235 / var(--un-bg-opacity)) /* #2563eb */;}.hover\:bg-blue-700:hover{--un-bg-opacity:1;background-color:rgb(29 78 216 / var(--un-bg-opacity)) /* #1d4ed8 */;}.hover\:bg-destructive\/80:hover{background-color:hsl(var(--destructive) / .8) ;}.hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive) / .9) ;}.hover\:bg-emerald-700:hover{--un-bg-opacity:1;background-color:rgb(4 120 87 / var(--un-bg-opacity)) /* #047857 */;}.hover\:bg-gray-50:hover{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity)) /* #f9fafb */;}.hover\:bg-green-200:hover{--un-bg-opacity:1;background-color:rgb(187 247 208 / var(--un-bg-opacity)) /* #bbf7d0 */;}.hover\:bg-green-700:hover{--un-bg-opacity:1;background-color:rgb(21 128 61 / var(--un-bg-opacity)) /* #15803d */;}.hover\:bg-muted:hover{--un-bg-opacity:1;background-color:hsl(var(--muted) / var(--un-bg-opacity)) /* hsl(var(--muted)) */;}.hover\:bg-muted\/50:hover{background-color:hsl(var(--muted) / .5) ;}.hover\:bg-muted\/60:hover{background-color:hsl(var(--muted) / .6) ;}.hover\:bg-primary\/80:hover{background-color:hsl(var(--primary) / .8) ;}.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / .9) ;}.hover\:bg-red-200:hover{--un-bg-opacity:1;background-color:rgb(254 202 202 / var(--un-bg-opacity)) /* #fecaca */;}.hover\:bg-red-50:hover{--un-bg-opacity:1;background-color:rgb(254 242 242 / var(--un-bg-opacity)) /* #fef2f2 */;}.hover\:bg-secondary:hover{--un-bg-opacity:1;background-color:hsl(var(--secondary) / var(--un-bg-opacity)) /* hsl(var(--secondary)) */;}.hover\:bg-secondary\/80:hover{background-color:hsl(var(--secondary) / .8) ;}.hover\:bg-sidebar-accent:hover{--un-bg-opacity:1;background-color:hsl(var(--sidebar-accent) / var(--un-bg-opacity)) /* hsl(var(--sidebar-accent)) */;}.hover\:bg-slate-100:hover{--un-bg-opacity:1;background-color:rgb(241 245 249 / var(--un-bg-opacity)) /* #f1f5f9 */;}.hover\:bg-slate-400:hover{--un-bg-opacity:1;background-color:rgb(148 163 184 / var(--un-bg-opacity)) /* #94a3b8 */;}.hover\:bg-slate-50:hover{--un-bg-opacity:1;background-color:rgb(248 250 252 / var(--un-bg-opacity)) /* #f8fafc */;}.hover\:bg-slate-500:hover{--un-bg-opacity:1;background-color:rgb(100 116 139 / var(--un-bg-opacity)) /* #64748b */;}.hover\:bg-slate-600:hover{--un-bg-opacity:1;background-color:rgb(71 85 105 / var(--un-bg-opacity)) /* #475569 */;}.hover\:bg-slate-700:hover{--un-bg-opacity:1;background-color:rgb(51 65 85 / var(--un-bg-opacity)) /* #334155 */;}.hover\:bg-transparent:hover{background-color:transparent /* transparent */;}.data-\[selected\]\:focus\:bg-primary:focus[data-selected]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.data-\[selection-end\]\:focus\:bg-primary:focus[data-selection-end]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.data-\[selection-start\]\:focus\:bg-primary:focus[data-selection-start]{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.focus\:bg-accent:focus{--un-bg-opacity:1;background-color:hsl(var(--accent) / var(--un-bg-opacity)) /* hsl(var(--accent)) */;}.active\:bg-sidebar-accent:active{--un-bg-opacity:1;background-color:hsl(var(--sidebar-accent) / var(--un-bg-opacity)) /* hsl(var(--sidebar-accent)) */;}.file\:bg-transparent::file-selector-button{background-color:transparent /* transparent */;}.bg-opacity-50{--un-bg-opacity:0.5;}.from-muted\/50{--un-gradient-from-position:0%;--un-gradient-from:hsl(var(--muted) / 0.5) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:hsl(var(--muted) / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.to-muted{--un-gradient-to-position:100%;--un-gradient-to:hsl(var(--muted) / var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.bg-gradient-to-b{--un-gradient-shape:to bottom in oklch;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}.fill-current{fill:currentColor /* currentColor */;}.fill-primary{--un-fill-opacity:1;fill:hsl(var(--primary) / var(--un-fill-opacity)) /* hsl(var(--primary)) */;}[stroke-width~="\32 "]{stroke-width:2px;}.object-cover{-o-object-fit:cover;object-fit:cover;}.object-contain{-o-object-fit:contain;object-fit:contain;}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:\!p-0{padding:0 !important;}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:\!p-2{padding:.5rem !important;}.p-0{padding:0;}.p-0\.5{padding:.125rem;}.p-1,[p~="\31 "]{padding:.25rem;}.p-10{padding:2.5rem;}.p-2{padding:.5rem;}.p-3,[p-3=""]{padding:.75rem;}.p-4{padding:1rem;}.p-6{padding:1.5rem;}.p-8{padding:2rem;}.p-px{padding:1px;}.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading],.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group],.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item],.group[data-collapsed=true] .group-\[\[data-collapsed\=true\]\]\:px-2,.px-2{padding-left:.5rem;padding-right:.5rem;}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading],.py-1\.5{padding-bottom:.375rem;padding-top:.375rem;}.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item],.py-3{padding-bottom:.75rem;padding-top:.75rem;}.data-\[collapsed\=true\]\:py-2[data-collapsed=true],.py-2{padding-bottom:.5rem;padding-top:.5rem;}.px-1{padding-left:.25rem;padding-right:.25rem;}.px-1\.5{padding-left:.375rem;padding-right:.375rem;}.px-10{padding-left:2.5rem;padding-right:2.5rem;}.px-2\.5{padding-left:.625rem;padding-right:.625rem;}.px-3,[px-3=""]{padding-left:.75rem;padding-right:.75rem;}.px-4,[px=""]{padding-left:1rem;padding-right:1rem;}.px-6{padding-left:1.5rem;padding-right:1.5rem;}.px-8{padding-left:2rem;padding-right:2rem;}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem;}.py-1,[py-1=""]{padding-bottom:.25rem;padding-top:.25rem;}.py-10{padding-bottom:2.5rem;padding-top:2.5rem;}.py-12{padding-bottom:3rem;padding-top:3rem;}.py-16{padding-bottom:4rem;padding-top:4rem;}.py-20{padding-bottom:5rem;padding-top:5rem;}.py-4{padding-bottom:1rem;padding-top:1rem;}.py-6{padding-bottom:1.5rem;padding-top:1.5rem;}.py-8{padding-bottom:2rem;padding-top:2rem;}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group],.pt-0{padding-top:0;}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:0;}.\[\&\>svg\~\*\]\:pl-7>svg~*{padding-left:1.75rem;}.pb-0{padding-bottom:0;}.pb-16{padding-bottom:4rem;}.pb-2{padding-bottom:.5rem;}.pb-4{padding-bottom:1rem;}.pb-6{padding-bottom:1.5rem;}.pl-2{padding-left:.5rem;}.pl-4{padding-left:1rem;}.pl-8{padding-left:2rem;}.pr-10{padding-right:2.5rem;}.pr-2{padding-right:.5rem;}.pr-6{padding-right:1.5rem;}.pr-8{padding-right:2rem;}.pt,.pt-4{padding-top:1rem;}.pt-1{padding-top:.25rem;}.pt-2{padding-top:.5rem;}.pt-3{padding-top:.75rem;}.pt-6{padding-top:1.5rem;}.pt-8{padding-top:2rem;}.text-center{text-align:center;}.text-left{text-align:left;}.text-right{text-align:right;}.text-balance{text-wrap:balance;}.align-middle{vertical-align:middle;}[align~=end]{vertical-align:bottom;}[align~=start]{vertical-align:top;}.\[\&\+div\]\:text-xs+div,.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading],.text-xs,[text-xs=""]{font-size:.75rem;line-height:1rem;}.text-\[0\.70rem\]{font-size:.7rem;}.text-\[0\.8rem\]{font-size:.8rem;}.text-\[10px\]{font-size:10px;}.text-\[11px\]{font-size:11px;}.text-\[12px\]{font-size:12px;}.text-\[7rem\]{font-size:7rem;}.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-7xl{font-size:4.5rem;line-height:1;}.text-base{font-size:1rem;line-height:1.5rem;}.text-lg,[text-lg=""]{font-size:1.125rem;line-height:1.75rem;}.text-sm,[text-sm=""]{font-size:.875rem;line-height:1.25rem;}.text-xl{font-size:1.25rem;line-height:1.75rem;}[text-xs~="default\:"]:default{font-size:.75rem;line-height:1rem;}.file\:text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem;}.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover{--un-text-opacity:1;color:hsl(var(--destructive-foreground) / var(--un-text-opacity)) /* hsl(var(--destructive-foreground)) */;}.group.destructive .group-\[\.destructive\]\:hover\:text-red-50:hover{--un-text-opacity:1;color:rgb(254 242 242 / var(--un-text-opacity)) /* #fef2f2 */;}.group.destructive .group-\[\.destructive\]\:text-red-300{--un-text-opacity:1;color:rgb(252 165 165 / var(--un-text-opacity)) /* #fca5a5 */;}.\[\&\[data-outside-month\]\[data-selected\]\]\:text-muted-foreground[data-outside-month][data-selected],.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading],.dark .dark\:text-muted-foreground,.data-\[disabled\]\:text-muted-foreground[data-disabled],.data-\[outside-month\]\:text-muted-foreground[data-outside-month],.data-\[state\=open\]\:text-muted-foreground[data-state=open],.group.toast .group-\[\.toast\]\:text-muted-foreground,.group[data-disabled] .group-data-\[disabled\]\:text-muted-foreground,.text-muted-foreground,[text-muted-foreground=""]{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}.data-\[selected\]\:text-primary-foreground[data-selected],.data-\[selection-end\]\:text-primary-foreground[data-selection-end],.data-\[selection-start\]\:text-primary-foreground[data-selection-start],.data-\[state\=checked\]\:text-primary-foreground[data-state=checked],.group.toast .group-\[\.toast\]\:text-primary-foreground,.group[data-state=active] .group-data-\[state\=active\]\:text-primary-foreground,.text-primary-foreground{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.\[\&\>svg\]\:text-foreground>svg,.\[\&_svg\]\:text-foreground svg,.data-\[state\=active\]\:text-foreground[data-state=active],.group.toaster .group-\[\.toaster\]\:text-foreground,.text-foreground{--un-text-opacity:1;color:hsl(var(--foreground) / var(--un-text-opacity)) /* hsl(var(--foreground)) */;}.\[\&\[data-today\]\:not\(\[data-selected\]\)\]\:text-accent-foreground[data-today]:not([data-selected]),.data-\[state\=on\]\:text-accent-foreground[data-state=on],.data-\[state\=open\]\:text-accent-foreground[data-state=open],.group[data-state=completed] .group-data-\[state\=completed\]\:text-accent-foreground{--un-text-opacity:1;color:hsl(var(--accent-foreground) / var(--un-text-opacity)) /* hsl(var(--accent-foreground)) */;}.\[\&\>svg\]\:text-destructive>svg,.text-destructive{--un-text-opacity:1;color:hsl(var(--destructive) / var(--un-text-opacity)) /* hsl(var(--destructive)) */;}.\[\&\>svg\]\:text-sidebar-accent-foreground>svg,.aria-\[current\=page\]\:text-sidebar-accent-foreground[aria-current=page],.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active=true]{--un-text-opacity:1;color:hsl(var(--sidebar-accent-foreground) / var(--un-text-opacity)) /* hsl(var(--sidebar-accent-foreground)) */;}.dark .dark\:text-amber-400{--un-text-opacity:1;color:rgb(251 191 36 / var(--un-text-opacity)) /* #fbbf24 */;}.dark .dark\:text-blue-100{--un-text-opacity:1;color:rgb(219 234 254 / var(--un-text-opacity)) /* #dbeafe */;}.dark .dark\:text-blue-200{--un-text-opacity:1;color:rgb(191 219 254 / var(--un-text-opacity)) /* #bfdbfe */;}.dark .dark\:text-blue-400{--un-text-opacity:1;color:rgb(96 165 250 / var(--un-text-opacity)) /* #60a5fa */;}.dark .dark\:text-cyan-400{--un-text-opacity:1;color:rgb(34 211 238 / var(--un-text-opacity)) /* #22d3ee */;}.dark .dark\:text-emerald-400{--un-text-opacity:1;color:rgb(52 211 153 / var(--un-text-opacity)) /* #34d399 */;}.dark .dark\:text-gray-100{--un-text-opacity:1;color:rgb(243 244 246 / var(--un-text-opacity)) /* #f3f4f6 */;}.dark .dark\:text-gray-300{--un-text-opacity:1;color:rgb(209 213 219 / var(--un-text-opacity)) /* #d1d5db */;}.dark .dark\:text-gray-400,.text-gray-400{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity)) /* #9ca3af */;}.dark .dark\:text-gray-500,.text-gray-500,[text-gray-500=""]{--un-text-opacity:1;color:rgb(107 114 128 / var(--un-text-opacity)) /* #6b7280 */;}.dark .dark\:text-green-100{--un-text-opacity:1;color:rgb(220 252 231 / var(--un-text-opacity)) /* #dcfce7 */;}.dark .dark\:text-green-200,.text-green-200{--un-text-opacity:1;color:rgb(187 247 208 / var(--un-text-opacity)) /* #bbf7d0 */;}.dark .dark\:text-green-400{--un-text-opacity:1;color:rgb(74 222 128 / var(--un-text-opacity)) /* #4ade80 */;}.dark .dark\:text-indigo-400{--un-text-opacity:1;color:rgb(129 140 248 / var(--un-text-opacity)) /* #818cf8 */;}.dark .dark\:text-orange-400{--un-text-opacity:1;color:rgb(251 146 60 / var(--un-text-opacity)) /* #fb923c */;}.dark .dark\:text-purple-200{--un-text-opacity:1;color:rgb(233 213 255 / var(--un-text-opacity)) /* #e9d5ff */;}.dark .dark\:text-purple-400{--un-text-opacity:1;color:rgb(192 132 252 / var(--un-text-opacity)) /* #c084fc */;}.dark .dark\:text-red-200{--un-text-opacity:1;color:rgb(254 202 202 / var(--un-text-opacity)) /* #fecaca */;}.dark .dark\:text-red-400{--un-text-opacity:1;color:rgb(248 113 113 / var(--un-text-opacity)) /* #f87171 */;}.dark .dark\:text-slate-100{--un-text-opacity:1;color:rgb(241 245 249 / var(--un-text-opacity)) /* #f1f5f9 */;}.dark .dark\:text-slate-300,.dark .group:hover .dark\:group-hover\:text-slate-300{--un-text-opacity:1;color:rgb(203 213 225 / var(--un-text-opacity)) /* #cbd5e1 */;}.dark .dark\:text-slate-400,.text-slate-400{--un-text-opacity:1;color:rgb(148 163 184 / var(--un-text-opacity)) /* #94a3b8 */;}.dark .dark\:text-slate-500,.text-slate-500{--un-text-opacity:1;color:rgb(100 116 139 / var(--un-text-opacity)) /* #64748b */;}.dark .dark\:text-white,.text-white,[text-white=""]{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.dark .dark\:text-yellow-400{--un-text-opacity:1;color:rgb(250 204 21 / var(--un-text-opacity)) /* #facc15 */;}.dark .dark\:text-zinc-200{--un-text-opacity:1;color:rgb(228 228 231 / var(--un-text-opacity)) /* #e4e4e7 */;}.data-\[unavailable\]\:text-destructive-foreground[data-unavailable],.text-destructive-foreground{--un-text-opacity:1;color:hsl(var(--destructive-foreground) / var(--un-text-opacity)) /* hsl(var(--destructive-foreground)) */;}.text-amber-600{--un-text-opacity:1;color:rgb(217 119 6 / var(--un-text-opacity)) /* #d97706 */;}.text-background{--un-text-opacity:1;color:hsl(var(--background) / var(--un-text-opacity)) /* hsl(var(--background)) */;}.text-black{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity)) /* #000 */;}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}.text-blue-600{--un-text-opacity:1;color:rgb(37 99 235 / var(--un-text-opacity)) /* #2563eb */;}.text-blue-700{--un-text-opacity:1;color:rgb(29 78 216 / var(--un-text-opacity)) /* #1d4ed8 */;}.text-blue-800{--un-text-opacity:1;color:rgb(30 64 175 / var(--un-text-opacity)) /* #1e40af */;}.text-blue-900{--un-text-opacity:1;color:rgb(30 58 138 / var(--un-text-opacity)) /* #1e3a8a */;}.text-card-foreground{--un-text-opacity:1;color:hsl(var(--card-foreground) / var(--un-text-opacity)) /* hsl(var(--card-foreground)) */;}.text-current{color:currentColor /* currentColor */;}.text-cyan-600{--un-text-opacity:1;color:rgb(8 145 178 / var(--un-text-opacity)) /* #0891b2 */;}.text-emerald-600{--un-text-opacity:1;color:rgb(5 150 105 / var(--un-text-opacity)) /* #059669 */;}.text-foreground\/50{color:hsl(var(--foreground) / .5) ;}.text-gray-200{--un-text-opacity:1;color:rgb(229 231 235 / var(--un-text-opacity)) /* #e5e7eb */;}.text-gray-600{--un-text-opacity:1;color:rgb(75 85 99 / var(--un-text-opacity)) /* #4b5563 */;}.text-gray-700{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity)) /* #374151 */;}.text-gray-900,[text-gray-900=""]{--un-text-opacity:1;color:rgb(17 24 39 / var(--un-text-opacity)) /* #111827 */;}.text-green-500{--un-text-opacity:1;color:rgb(34 197 94 / var(--un-text-opacity)) /* #22c55e */;}.text-green-600{--un-text-opacity:1;color:rgb(22 163 74 / var(--un-text-opacity)) /* #16a34a */;}.text-green-700{--un-text-opacity:1;color:rgb(21 128 61 / var(--un-text-opacity)) /* #15803d */;}.text-green-800{--un-text-opacity:1;color:rgb(22 101 52 / var(--un-text-opacity)) /* #166534 */;}.text-green-900{--un-text-opacity:1;color:rgb(20 83 45 / var(--un-text-opacity)) /* #14532d */;}.text-indigo-600{--un-text-opacity:1;color:rgb(79 70 229 / var(--un-text-opacity)) /* #4f46e5 */;}.text-muted-foreground\/50{color:hsl(var(--muted-foreground) / .5) ;}.text-muted-foreground\/70{color:hsl(var(--muted-foreground) / .7) ;}.text-orange-500{--un-text-opacity:1;color:rgb(249 115 22 / var(--un-text-opacity)) /* #f97316 */;}.text-orange-600{--un-text-opacity:1;color:rgb(234 88 12 / var(--un-text-opacity)) /* #ea580c */;}.text-popover-foreground{--un-text-opacity:1;color:hsl(var(--popover-foreground) / var(--un-text-opacity)) /* hsl(var(--popover-foreground)) */;}.text-primary{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.text-purple-600{--un-text-opacity:1;color:rgb(147 51 234 / var(--un-text-opacity)) /* #9333ea */;}.text-purple-800{--un-text-opacity:1;color:rgb(107 33 168 / var(--un-text-opacity)) /* #6b21a8 */;}.text-red-500{--un-text-opacity:1;color:rgb(239 68 68 / var(--un-text-opacity)) /* #ef4444 */;}.text-red-600{--un-text-opacity:1;color:rgb(220 38 38 / var(--un-text-opacity)) /* #dc2626 */;}.text-red-700{--un-text-opacity:1;color:rgb(185 28 28 / var(--un-text-opacity)) /* #b91c1c */;}.text-red-800{--un-text-opacity:1;color:rgb(153 27 27 / var(--un-text-opacity)) /* #991b1b */;}.text-secondary-foreground{--un-text-opacity:1;color:hsl(var(--secondary-foreground) / var(--un-text-opacity)) /* hsl(var(--secondary-foreground)) */;}.text-sidebar-foreground{--un-text-opacity:1;color:hsl(var(--sidebar-foreground) / var(--un-text-opacity)) /* hsl(var(--sidebar-foreground)) */;}.text-sidebar-foreground\/70{color:hsl(var(--sidebar-foreground) / .7) ;}.text-sidebar-primary-foreground{--un-text-opacity:1;color:hsl(var(--sidebar-primary-foreground) / var(--un-text-opacity)) /* hsl(var(--sidebar-primary-foreground)) */;}.group:hover .group-hover\:text-slate-600,.text-slate-600{--un-text-opacity:1;color:rgb(71 85 105 / var(--un-text-opacity)) /* #475569 */;}.text-slate-700{--un-text-opacity:1;color:rgb(51 65 85 / var(--un-text-opacity)) /* #334155 */;}.text-slate-900{--un-text-opacity:1;color:rgb(15 23 42 / var(--un-text-opacity)) /* #0f172a */;}.text-yellow-500{--un-text-opacity:1;color:rgb(234 179 8 / var(--un-text-opacity)) /* #eab308 */;}.text-yellow-600{--un-text-opacity:1;color:rgb(202 138 4 / var(--un-text-opacity)) /* #ca8a04 */;}.text-zinc-600{--un-text-opacity:1;color:rgb(82 82 91 / var(--un-text-opacity)) /* #52525b */;}[text-muted-foreground~="default\:"]:default{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}[text-primary~="default\:"]:default{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}[text-primary~="required\:"]:required{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.\[\&_a\]\:hover\:text-primary:hover a{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.dark .dark\:hover\:text-blue-300:hover{--un-text-opacity:1;color:rgb(147 197 253 / var(--un-text-opacity)) /* #93c5fd */;}.dark .dark\:hover\:text-gray-300:hover{--un-text-opacity:1;color:rgb(209 213 219 / var(--un-text-opacity)) /* #d1d5db */;}.dark .dark\:hover\:text-white:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.data-\[selected\]\:hover\:text-primary-foreground:hover[data-selected]{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.data-\[selection-end\]\:hover\:text-primary-foreground:hover[data-selection-end]{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.data-\[selection-start\]\:hover\:text-primary-foreground:hover[data-selection-start]{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.data-\[state\=open\]\:hover\:text-sidebar-accent-foreground:hover[data-state=open]{--un-text-opacity:1;color:hsl(var(--sidebar-accent-foreground) / var(--un-text-opacity)) /* hsl(var(--sidebar-accent-foreground)) */;}.hover\:text-accent-foreground:hover{--un-text-opacity:1;color:hsl(var(--accent-foreground) / var(--un-text-opacity)) /* hsl(var(--accent-foreground)) */;}.hover\:text-blue-700:hover{--un-text-opacity:1;color:rgb(29 78 216 / var(--un-text-opacity)) /* #1d4ed8 */;}.hover\:text-blue-800:hover{--un-text-opacity:1;color:rgb(30 64 175 / var(--un-text-opacity)) /* #1e40af */;}.hover\:text-foreground:hover{--un-text-opacity:1;color:hsl(var(--foreground) / var(--un-text-opacity)) /* hsl(var(--foreground)) */;}.hover\:text-gray-700:hover{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity)) /* #374151 */;}.hover\:text-muted-foreground:hover{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}.hover\:text-primary:hover{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.hover\:text-red-700:hover{--un-text-opacity:1;color:rgb(185 28 28 / var(--un-text-opacity)) /* #b91c1c */;}.hover\:text-sidebar-accent-foreground:hover{--un-text-opacity:1;color:hsl(var(--sidebar-accent-foreground) / var(--un-text-opacity)) /* hsl(var(--sidebar-accent-foreground)) */;}.hover\:text-slate-700:hover{--un-text-opacity:1;color:rgb(51 65 85 / var(--un-text-opacity)) /* #334155 */;}.hover\:text-white:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.data-\[selected\]\:focus\:text-primary-foreground:focus[data-selected]{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.data-\[selection-end\]\:focus\:text-primary-foreground:focus[data-selection-end]{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.data-\[selection-start\]\:focus\:text-primary-foreground:focus[data-selection-start]{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.focus\:text-accent-foreground:focus{--un-text-opacity:1;color:hsl(var(--accent-foreground) / var(--un-text-opacity)) /* hsl(var(--accent-foreground)) */;}.active\:text-sidebar-accent-foreground:active{--un-text-opacity:1;color:hsl(var(--sidebar-accent-foreground) / var(--un-text-opacity)) /* hsl(var(--sidebar-accent-foreground)) */;}[text-primary~="disabled\:"]:disabled{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.placeholder\:text-muted-foreground::-moz-placeholder{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}.placeholder\:text-muted-foreground::placeholder{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}[text-primary~="placeholder\:"]::-moz-placeholder{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}[text-primary~="placeholder\:"]::placeholder{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading],.aria-\[current\=page\]\:font-medium[aria-current=page],.data-\[active\=true\]\:font-medium[data-active=true],.font-medium,[font-medium=""]{font-weight:500;}.font-bold{font-weight:700;}.font-normal{font-weight:400;}.font-semibold,[font-semibold=""]{font-weight:600;}[font-medium~="default\:"]:default{font-weight:500;}.file\:font-medium::file-selector-button{font-weight:500;}.\[\&_p\]\:leading-relaxed p{line-height:1.625;}.leading-none{line-height:1;}.leading-snug{line-height:1.375;}.leading-tight{line-height:1.25;}.tracking-tight{letter-spacing:-.025em;}.tracking-tighter{letter-spacing:-.05em;}.tracking-widest{letter-spacing:.1em;}.font-mono{font-family:Chivo Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;}.font-sans{font-family:Chivo,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;}.uppercase{text-transform:uppercase;}.capitalize{text-transform:capitalize;}.italic{font-style:italic;}.tabular-nums{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction);}.\[\&_a\]\:underline a,.underline{text-decoration-line:underline;}.data-\[unavailable\]\:line-through[data-unavailable]{text-decoration-line:line-through;}.hover\:underline:hover{text-decoration-line:underline;}.\[\&_a\]\:underline-offset-4 a,.underline-offset-4{text-underline-offset:4px;}.group:hover .group-hover\:no-underline,.no-underline{text-decoration:none;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:opacity-0,.opacity-0{opacity:0;}.aria-disabled\:opacity-50[aria-disabled=true],.data-\[disabled\]\:opacity-50[data-disabled],.data-\[outside-month\]\:opacity-50[data-outside-month],.group[data-disabled] .group-data-\[disabled\]\:opacity-50,.opacity-50{opacity:.5;}.\[\&\[data-outside-month\]\[data-selected\]\]\:opacity-30[data-outside-month][data-selected]{opacity:.3;}.data-\[selected\]\:opacity-100[data-selected],.data-\[state\=open\]\:opacity-100[data-state=open],.group:hover .group-hover\:opacity-100,.opacity-100{opacity:1;}.opacity-60{opacity:.6;}.opacity-70,.peer:disabled~.peer-disabled\:opacity-70{opacity:.7;}.opacity-90{opacity:.9;}.hover\:opacity-100:hover{opacity:1;}.focus\:opacity-100:focus{opacity:1;}.disabled\:opacity-20:disabled{opacity:.2;}.disabled\:opacity-50:disabled{opacity:.5;}.group.toaster .group-\[\.toaster\]\:shadow-lg,.shadow-lg{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.group[data-variant=floating] .group-data-\[variant\=floating\]\:shadow,.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.data-\[state\=active\]\:shadow-sm[data-state=active],.shadow-sm,[shadow-sm=""]{--un-shadow:var(--un-shadow-inset) 0 1px 2px 0 var(--un-shadow-color, rgba(0,0,0,.05));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\]{--un-shadow:0 0 0 1px var(--un-shadow-color, hsl(var(--sidebar-border)));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-md{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-none{--un-shadow:0 0 var(--un-shadow-color, transparent);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-xl{--un-shadow:var(--un-shadow-inset) 0 20px 25px -5px var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 8px 10px -6px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover{--un-shadow:0 0 0 1px var(--un-shadow-color, hsl(var(--sidebar-accent)));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-md:hover{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-xl:hover{--un-shadow:var(--un-shadow-inset) 0 20px 25px -5px var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 8px 10px -6px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:shadow-md:focus{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline{outline-style:solid;}[outline~="default\:"]:default{outline-style:solid;}[outline~="disabled\:"]:disabled{outline-style:solid;}.outline-none{outline:2px solid transparent;outline-offset:2px;}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px;}.data-\[state\=active\]\:ring-2[data-state=active],.ring-2,[ring-2=""]{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.ring-0{--un-ring-width:0px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:ring-2:hover{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:ring-1:focus{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:ring-2:focus{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus-visible\:ring-1:focus-visible{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus-visible\:ring-2:focus-visible{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.data-\[state\=active\]\:ring-offset-2[data-state=active],.ring-offset-2{--un-ring-offset-width:2px;}.focus\:ring-offset-2:focus{--un-ring-offset-width:2px;}.focus-visible\:ring-offset-1:focus-visible{--un-ring-offset-width:1px;}.focus-visible\:ring-offset-2:focus-visible{--un-ring-offset-width:2px;}.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus{--un-ring-opacity:1;--un-ring-color:hsl(var(--destructive) / var(--un-ring-opacity)) /* hsl(var(--destructive)) */;}.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus{--un-ring-opacity:1;--un-ring-color:rgb(248 113 113 / var(--un-ring-opacity)) /* #f87171 */;}.data-\[state\=active\]\:ring-ring[data-state=active],.ring-ring{--un-ring-opacity:1;--un-ring-color:hsl(var(--ring) / var(--un-ring-opacity)) /* hsl(var(--ring)) */;}.ring-primary,[ring-primary=""]{--un-ring-opacity:1;--un-ring-color:hsl(var(--primary) / var(--un-ring-opacity)) /* hsl(var(--primary)) */;}.ring-sidebar-ring{--un-ring-opacity:1;--un-ring-color:hsl(var(--sidebar-ring) / var(--un-ring-opacity)) /* hsl(var(--sidebar-ring)) */;}.hover\:ring-primary:hover{--un-ring-opacity:1;--un-ring-color:hsl(var(--primary) / var(--un-ring-opacity)) /* hsl(var(--primary)) */;}.focus\:ring-ring:focus{--un-ring-opacity:1;--un-ring-color:hsl(var(--ring) / var(--un-ring-opacity)) /* hsl(var(--ring)) */;}.focus-visible\:ring-destructive:focus-visible{--un-ring-opacity:1;--un-ring-color:hsl(var(--destructive) / var(--un-ring-opacity)) /* hsl(var(--destructive)) */;}.focus-visible\:ring-ring:focus-visible{--un-ring-opacity:1;--un-ring-color:hsl(var(--ring) / var(--un-ring-opacity)) /* hsl(var(--ring)) */;}.focus-visible\:ring-sidebar-ring:focus-visible{--un-ring-opacity:1;--un-ring-color:hsl(var(--sidebar-ring) / var(--un-ring-opacity)) /* hsl(var(--sidebar-ring)) */;}.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus{--un-ring-offset-opacity:1;--un-ring-offset-color:rgb(220 38 38 / var(--un-ring-offset-opacity)) /* #dc2626 */;}.ring-offset-background{--un-ring-offset-opacity:1;--un-ring-offset-color:hsl(var(--background) / var(--un-ring-offset-opacity)) /* hsl(var(--background)) */;}.focus-visible\:ring-offset-background:focus-visible{--un-ring-offset-opacity:1;--un-ring-offset-color:hsl(var(--background) / var(--un-ring-offset-opacity)) /* hsl(var(--background)) */;}.backdrop-blur{--un-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.invert{--un-invert:invert(1);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-\[left\,right\,width\]{transition-duration:.15s;transition-property:left,right,width;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-\[width\,height\,padding\]{transition-duration:.15s;transition-property:width,height,padding;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-\[width\]{transition-duration:.15s;transition-property:width;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-colors,[transition-colors=""]{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-shadow{transition-duration:.15s;transition-property:box-shadow;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.data-\[state\=closed\]\:duration-300[data-state=closed],.duration-300,[duration-300=""]{transition-duration:.3s;}.data-\[state\=open\]\:duration-500[data-state=open],.duration-500{transition-duration:.5s;}.duration-200{transition-duration:.2s;}.ease,.ease-in-out{transition-timing-function:cubic-bezier(.4, 0, .2, 1);}.ease-linear{transition-timing-function:linear;}.ease-out{transition-timing-function:cubic-bezier(0, 0, .2, 1);}.data-\[swipe\=move\]\:transition-none[data-swipe=move]{transition:none;}.min-h-svh{min-height:100svh;}.h-dvh{height:100dvh;}.h-svh{height:100svh;}.data-\[motion\^\=from-\]\:fade-in[data-motion^=from-],.data-\[state\=open\]\:fade-in-0[data-state=open],.fade-in-0{--una-enter-opacity:0;}.fade-in-80{--una-enter-opacity:0.8;}.data-\[motion\^\=to-\]\:fade-out[data-motion^=to-],.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--una-exit-opacity:0;}.data-\[state\=closed\]\:fade-out-80[data-state=closed]{--una-exit-opacity:0.8;}.data-\[state\=open\]\:zoom-in-90[data-state=open]{--una-enter-scale:0.9;}.data-\[state\=open\]\:zoom-in-95[data-state=open],.zoom-in-95{--una-enter-scale:0.95;}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--una-exit-scale:0.95;}.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end]{--una-enter-translate-x:13rem;}.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start]{--una-enter-translate-x:-13rem;}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--una-enter-translate-y:-0.5rem;}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--una-enter-translate-x:0.5rem;}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--una-enter-translate-x:-0.5rem;}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--una-enter-translate-y:0.5rem;}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]{--una-enter-translate-y:100%;}.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]{--una-enter-translate-x:-50%;}.data-\[state\=open\]\:slide-in-from-left[data-state=open]{--una-enter-translate-x:-100%;}.data-\[state\=open\]\:slide-in-from-right[data-state=open]{--una-enter-translate-x:100%;}.data-\[state\=open\]\:slide-in-from-top-full[data-state=open],.data-\[state\=open\]\:slide-in-from-top[data-state=open]{--una-enter-translate-y:-100%;}.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end]{--una-exit-translate-x:13rem;}.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start]{--una-exit-translate-x:-13rem;}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]{--una-exit-translate-y:100%;}.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]{--una-exit-translate-x:-50%;}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]{--una-exit-translate-x:-100%;}.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed],.data-\[state\=closed\]\:slide-out-to-right[data-state=closed]{--una-exit-translate-x:100%;}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]{--una-exit-translate-y:-100%;}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:shadcn-down .2s ease-out;}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:shadcn-up .2s ease-out;}.data-\[state\=open\]\:animate-collapsible-down[data-state=open]{animation:shadcn-collapsible-down .2s ease-out;}.data-\[state\=closed\]\:animate-collapsible-up[data-state=closed]{animation:shadcn-collapsible-up .2s ease-out;}@supports backdrop-filter{.supports-\[backdrop-filter\]\:bg-background\/60{background-color:hsl(var(--background) / .6) ;}}@media (min-width:640px){.sm\:bottom-0{bottom:0;}.sm\:right-0{right:0;}.sm\:top-auto{top:auto;}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.sm\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr));}.sm\:mt-0{margin-top:0;}.sm\:h-200px{height:200px;}.sm\:max-w-\[425px\]{max-width:425px;}.sm\:max-w-\[700px\]{max-width:700px;}.sm\:max-w-2xl{max-width:42rem;}.sm\:max-w-md{max-width:28rem;}.sm\:max-w-sm{max-width:24rem;}.sm\:max-w-xl{max-width:36rem;}.sm\:w-\[540px\]{width:540px;}.sm\:flex{display:flex;}.sm\:flex-row{flex-direction:row;}.sm\:flex-col{flex-direction:column;}.sm\:justify-start{justify-content:flex-start;}.sm\:justify-end{justify-content:flex-end;}.sm\:gap-2\.5{gap:.625rem;}.sm\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem;}.sm\:gap-x-4{-moz-column-gap:1rem;column-gap:1rem;}.sm\:gap-y-0{row-gap:0;}.sm\:rounded-lg{border-radius:var(--radius);}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem;}.sm\:text-left{text-align:left;}.data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state=open]{--una-enter-translate-y:100%;}}@media (min-width:768px){.md\:not-sr-only{height:auto;margin:0;overflow:visible;padding:0;position:static;width:auto;clip:auto;white-space:normal;}.md\:absolute{position:absolute;}.md\:col-span-3{grid-column:span 3 / span 3;}.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));}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:m-2{margin:.5rem;}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:ml-0{margin-left:0;}.md\:block{display:block;}.after\:md\:hidden:after{display:none;}.md\:h-200px{height:200px;}.md\:max-w-\[420px\]{max-width:420px;}.md\:min-h-200px{min-height:200px;}.md\:w-\[--radix-navigation-menu-viewport-width\]{width:var(--radix-navigation-menu-viewport-width);}.md\:w-\[350px\]{width:350px;}.md\:w-\[400px\]{width:400px;}.md\:w-\[500px\]{width:500px;}.md\:w-1\/2{width:50%;}.md\:w-2\/3{width:66.6666666667%;}.md\:w-300px{width:300px;}.md\:w-52{width:13rem;}.md\:w-96{width:24rem;}.md\:w-auto{width:auto;}.md\:w-full{width:100%;}.md\:flex{display:flex;}.md\:basis-1\/2{flex-basis:50%;}.md\:flex-row{flex-direction:row;}.md\:items-start{align-items:flex-start;}.md\:items-end{align-items:flex-end;}.md\:justify-end{justify-content:flex-end;}.md\:justify-between{justify-content:space-between;}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:rounded-xl{border-radius:calc(var(--radius) + 4px);}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\[\&\>header\]\:rounded-t-xl>header{border-top-left-radius:calc(var(--radius) + 4px);border-top-right-radius:calc(var(--radius) + 4px);}.md\:p-10{padding:2.5rem;}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem;}.md\:opacity-0{opacity:0;}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgba(0,0,0,.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgba(0,0,0,.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}}@media (min-width:1024px){.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\:grid-cols-\[minmax\(0\,\.75fr\)_minmax\(0\,1fr\)\]{grid-template-columns:minmax(0,.75fr) minmax(0,1fr);}.lg\:grid-cols-16{grid-template-columns:repeat(16,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\:-m-6{margin:-1.5rem;}.lg\:hidden{display:none;}.lg\:max-w-2xl{max-width:42rem;}.lg\:max-w-none{max-width:none;}.lg\:w-\[250px\]{width:250px;}.lg\:w-\[500px\]{width:500px;}.lg\:w-\[600px\]{width:600px;}.lg\:w-1\/6{width:16.6666666667%;}.lg\:flex{display:flex;}.lg\:basis-1\/3{flex-basis:33.3333333333%;}.lg\:flex-row{flex-direction:row;}.lg\:flex-col{flex-direction:column;}.lg\:space-x-0>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0px*(1 - var(--un-space-x-reverse)));margin-right:calc(0px*var(--un-space-x-reverse));}.lg\:space-x-12>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(3rem*(1 - var(--un-space-x-reverse)));margin-right:calc(3rem*var(--un-space-x-reverse));}.lg\:space-x-8>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--un-space-x-reverse)));margin-right:calc(2rem*var(--un-space-x-reverse));}.lg\:space-y-0>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(0px*var(--un-space-y-reverse));margin-top:calc(0px*(1 - var(--un-space-y-reverse)));}.lg\:space-y-1>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-bottom:calc(.25rem*var(--un-space-y-reverse));margin-top:calc(.25rem*(1 - var(--un-space-y-reverse)));}.lg\:p-6{padding:1.5rem;}.lg\:p-8{padding:2rem;}.lg\:px-0{padding-left:0;padding-right:0;}.lg\:px-3{padding-left:.75rem;padding-right:.75rem;}.lg\:px-8{padding-left:2rem;padding-right:2rem;}.lg\:pb-0{padding-bottom:0;}.lg\:text-base{font-size:1rem;line-height:1.5rem;}.lg\:text-sm{font-size:.875rem;line-height:1.25rem;}}@media (min-width:1280px){.xl\:grid-cols-18{grid-template-columns:repeat(18,minmax(0,1fr));}} 